
    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_8ba1b0aa27587aa036e632f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_03a6d8deab7f05241efdf6af.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_071200d8444e71db5a2b8c7e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.873535;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_d6cdfae743f24be403553758.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_97b3f5d9b2958e191d45a298.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_03f6c4ef979336f5753fd847.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_4221af80b78409eee268ba4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_e873b4f27260e629d8c6db9d.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_a18382a333d6476d2df71c46.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861816;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_d9911eb732bd647944054466.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_26051b74f75c2a672875aa53.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.007324;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;}
.m4{transform:matrix(0.247824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247824,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248936,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.vb{vertical-align:-60.705684px;}
.v6{vertical-align:-20.497554px;}
.v2{vertical-align:-5.653014px;}
.v5{vertical-align:-4.393158px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:8.550570px;}
.v9{vertical-align:19.010010px;}
.v1{vertical-align:34.560012px;}
.v8{vertical-align:59.851866px;}
.va{vertical-align:71.288088px;}
.v3{vertical-align:101.671374px;}
.v4{vertical-align:106.618332px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.108054px;}
.ls9{letter-spacing:0.108150px;}
.ls3{letter-spacing:0.336960px;}
.ls11{letter-spacing:20.715786px;}
.ls12{letter-spacing:21.435942px;}
.lsd{letter-spacing:23.666418px;}
.lsb{letter-spacing:28.385952px;}
.lsc{letter-spacing:28.530024px;}
.ls5{letter-spacing:28.565676px;}
.lsf{letter-spacing:28.566042px;}
.ls6{letter-spacing:28.566048px;}
.ls8{letter-spacing:45.090084px;}
.ls1{letter-spacing:46.706490px;}
.ls2{letter-spacing:55.828710px;}
.ls4{letter-spacing:55.828884px;}
.ls7{letter-spacing:58.085940px;}
.lse{letter-spacing:97.493666px;}
.ls13{letter-spacing:154.497774px;}
.ls10{letter-spacing:347.330718px;}
.ls15{letter-spacing:380.996124px;}
.ls14{letter-spacing:606.083100px;}
.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;}
}
.ws3{word-spacing:-33.357600px;}
.wsb{word-spacing:-30.916800px;}
.ws2e{word-spacing:-28.476000px;}
.ws0{word-spacing:-26.429760px;}
.ws41{word-spacing:-26.280000px;}
.ws19{word-spacing:-15.246000px;}
.ws34{word-spacing:-11.515140px;}
.ws33{word-spacing:-11.511810px;}
.wsa{word-spacing:-1.483224px;}
.ws15{word-spacing:-1.483134px;}
.ws9{word-spacing:-1.364436px;}
.ws23{word-spacing:-1.353624px;}
.ws21{word-spacing:-1.353534px;}
.ws39{word-spacing:-0.730746px;}
.ws32{word-spacing:-0.730740px;}
.ws20{word-spacing:-0.666096px;}
.ws3e{word-spacing:-0.666090px;}
.wsc{word-spacing:-0.666006px;}
.ws10{word-spacing:-0.666000px;}
.ws22{word-spacing:-0.665916px;}
.wsd{word-spacing:-0.665910px;}
.ws1e{word-spacing:-0.608460px;}
.ws1b{word-spacing:-0.608370px;}
.ws8{word-spacing:-0.594744px;}
.ws7{word-spacing:-0.594558px;}
.ws3d{word-spacing:-0.590298px;}
.ws14{word-spacing:-0.535650px;}
.ws2f{word-spacing:-0.414042px;}
.ws42{word-spacing:-0.392436px;}
.ws3b{word-spacing:-0.392388px;}
.ws3a{word-spacing:-0.392340px;}
.ws5{word-spacing:-0.375834px;}
.ws2{word-spacing:0.000000px;}
.ws3c{word-spacing:0.079182px;}
.ws1f{word-spacing:0.179994px;}
.ws4{word-spacing:0.270060px;}
.wsf{word-spacing:0.341994px;}
.ws17{word-spacing:0.357048px;}
.ws1a{word-spacing:0.467892px;}
.ws1c{word-spacing:0.468078px;}
.ws12{word-spacing:0.521970px;}
.ws11{word-spacing:0.561840px;}
.ws26{word-spacing:0.629952px;}
.wse{word-spacing:0.648084px;}
.ws30{word-spacing:0.740136px;}
.ws13{word-spacing:0.769140px;}
.ws6{word-spacing:1.039656px;}
.ws2d{word-spacing:1.097970px;}
.ws1d{word-spacing:1.368084px;}
.ws18{word-spacing:1.797096px;}
.ws16{word-spacing:1.797102px;}
.ws1{word-spacing:9.890502px;}
.ws27{word-spacing:13.481946px;}
.ws29{word-spacing:13.931910px;}
.ws28{word-spacing:14.147976px;}
.ws2c{word-spacing:16.145916px;}
.ws2b{word-spacing:16.290120px;}
.ws2a{word-spacing:16.577946px;}
.ws38{word-spacing:19.558582px;}
.ws24{word-spacing:29.483958px;}
.ws25{word-spacing:30.095994px;}
.ws40{word-spacing:34.349664px;}
.ws35{word-spacing:46.375198px;}
.ws36{word-spacing:63.614525px;}
.ws37{word-spacing:204.252911px;}
.ws31{word-spacing:692.276562px;}
.ws3f{word-spacing:729.279348px;}
._11{margin-left:-13.726800px;}
._3{margin-left:-11.126820px;}
._15{margin-left:-9.252624px;}
._c{margin-left:-8.116986px;}
._8{margin-left:-6.081156px;}
._6{margin-left:-4.831800px;}
._0{margin-left:-3.123360px;}
._5{margin-left:-1.214640px;}
._4{width:1.735200px;}
._2{width:3.817440px;}
._1f{width:18.088482px;}
._13{width:19.841832px;}
._7{width:24.978954px;}
._10{width:26.606154px;}
._9{width:29.888400px;}
._d{width:31.221966px;}
._1e{width:32.279778px;}
._b{width:34.036650px;}
._16{width:43.745688px;}
._a{width:46.706394px;}
._1{width:49.083750px;}
._f{width:55.890228px;}
._e{width:75.330168px;}
._1d{width:77.479140px;}
._1b{width:94.184617px;}
._12{width:116.188884px;}
._1a{width:146.001122px;}
._18{width:184.784010px;}
._17{width:190.533162px;}
._14{width:391.746090px;}
._19{width:401.561702px;}
._1c{width:1399.187250px;}
.fc7{color:rgb(0,51,102);}
.fc8{color:rgb(0,126,57);}
.fc5{color:rgb(192,80,77);}
.fc6{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,102);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(137,137,137);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,32,96);}
.fs14{font-size:45.964656px;}
.fsc{font-size:46.047240px;}
.fse{font-size:46.060560px;}
.fs11{font-size:46.144476px;}
.fs4{font-size:55.440000px;}
.fs15{font-size:73.440000px;}
.fs2{font-size:77.040000px;}
.fs12{font-size:78.497280px;}
.fs13{font-size:79.506432px;}
.fsd{font-size:79.649280px;}
.fsf{font-size:79.672320px;}
.fs10{font-size:79.817472px;}
.fsa{font-size:84.240000px;}
.fs9{font-size:95.040000px;}
.fs6{font-size:105.120000px;}
.fs1{font-size:115.920000px;}
.fs5{font-size:126.000000px;}
.fs7{font-size:136.800000px;}
.fsb{font-size:141.840000px;}
.fs3{font-size:147.600000px;}
.fs8{font-size:168.480000px;}
.fs0{font-size:173.520000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:3.446591px;}
.y77{bottom:5.007085px;}
.y74{bottom:5.013710px;}
.y86{bottom:5.801156px;}
.y7d{bottom:5.801198px;}
.y7b{bottom:8.295460px;}
.y84{bottom:8.295463px;}
.y78{bottom:10.142140px;}
.y75{bottom:10.147437px;}
.y81{bottom:11.803625px;}
.ybf{bottom:12.906566px;}
.yf{bottom:12.984432px;}
.yb3{bottom:13.293021px;}
.y7a{bottom:13.439946px;}
.y83{bottom:13.439949px;}
.y7c{bottom:13.855641px;}
.y85{bottom:13.855644px;}
.y8a{bottom:13.989555px;}
.y1e{bottom:14.413364px;}
.y70{bottom:14.685561px;}
.y13{bottom:15.164474px;}
.y5b{bottom:15.753604px;}
.y28{bottom:15.871205px;}
.y68{bottom:16.189543px;}
.y87{bottom:16.542686px;}
.y62{bottom:16.578105px;}
.y67{bottom:17.254954px;}
.y15{bottom:17.285007px;}
.y48{bottom:17.991566px;}
.y97{bottom:18.168228px;}
.y95{bottom:18.555027px;}
.y8d{bottom:18.864669px;}
.y41{bottom:20.112097px;}
.y66{bottom:20.277156px;}
.y39{bottom:21.525821px;}
.y30{bottom:28.594161px;}
.yaf{bottom:35.201338px;}
.ybe{bottom:38.717136px;}
.y65{bottom:48.717154px;}
.y5{bottom:51.704646px;}
.y94{bottom:56.535026px;}
.y8c{bottom:59.298796px;}
.yd{bottom:59.544582px;}
.ybd{bottom:63.917186px;}
.y1c{bottom:65.042930px;}
.y89{bottom:75.587653px;}
.y7{bottom:77.362998px;}
.y26{bottom:78.384063px;}
.yb1{bottom:79.287711px;}
.y4f{bottom:84.164634px;}
.y1{bottom:91.260018px;}
.y4{bottom:93.464641px;}
.y93{bottom:94.335033px;}
.yc{bottom:99.144573px;}
.y18{bottom:108.011901px;}
.ya0{bottom:108.154677px;}
.y1b{bottom:110.762923px;}
.y22{bottom:112.743050px;}
.y25{bottom:123.744072px;}
.y59{bottom:127.505950px;}
.y46{bottom:129.290176px;}
.y92{bottom:132.135017px;}
.yb{bottom:139.824576px;}
.y11{bottom:145.140997px;}
.y17{bottom:153.731895px;}
.y6d{bottom:156.145523px;}
.y1a{bottom:156.482917px;}
.y21{bottom:158.463066px;}
.y53{bottom:158.759467px;}
.y10{bottom:161.700988px;}
.y9e{bottom:162.763984px;}
.y45{bottom:166.910178px;}
.y24{bottom:169.284072px;}
.y91{bottom:170.115028px;}
.y5a{bottom:184.727142px;}
.y3{bottom:184.904640px;}
.y6f{bottom:185.710212px;}
.ya6{bottom:185.899612px;}
.ya{bottom:192.204574px;}
.y4d{bottom:193.589721px;}
.y6c{bottom:193.945518px;}
.y52{bottom:196.559463px;}
.y16{bottom:200.171906px;}
.y19{bottom:202.922928px;}
.y9d{bottom:204.523978px;}
.y44{bottom:205.070183px;}
.y7e{bottom:209.520015px;}
.y20{bottom:212.103057px;}
.y23{bottom:220.224060px;}
.y6e{bottom:223.690200px;}
.yae{bottom:226.997656px;}
.y4c{bottom:231.209724px;}
.y9{bottom:231.624572px;}
.y6b{bottom:231.925506px;}
.ybc{bottom:232.685599px;}
.y51{bottom:234.539473px;}
.yad{bottom:238.709266px;}
.y43{bottom:243.050170px;}
.yab{bottom:243.461769px;}
.ya9{bottom:244.819679px;}
.y2{bottom:247.544653px;}
.y9c{bottom:252.043991px;}
.ybb{bottom:258.065597px;}
.y36{bottom:259.646346px;}
.yac{bottom:261.283653px;}
.y4b{bottom:269.369727px;}
.y8{bottom:272.484581px;}
.y58{bottom:274.170936px;}
.yaa{bottom:276.389991px;}
.y38{bottom:278.602866px;}
.y6a{bottom:279.085509px;}
.y50{bottom:281.699478px;}
.y40{bottom:282.254356px;}
.yba{bottom:283.265579px;}
.y42{bottom:290.210173px;}
.y90{bottom:292.338593px;}
.y4a{bottom:307.349739px;}
.y57{bottom:311.970909px;}
.y8f{bottom:330.318580px;}
.ya7{bottom:330.983893px;}
.y2f{bottom:331.034385px;}
.ya1{bottom:332.928795px;}
.yb9{bottom:335.133292px;}
.y56{bottom:349.950920px;}
.y49{bottom:354.509742px;}
.y37{bottom:367.789603px;}
.y61{bottom:371.574622px;}
.y9b{bottom:371.872717px;}
.y3f{bottom:375.879798px;}
.y8e{bottom:377.478583px;}
.yb8{bottom:379.233284px;}
.y79{bottom:387.720012px;}
.y76{bottom:396.360010px;}
.yb0{bottom:396.470054px;}
.y55{bottom:397.110922px;}
.y60{bottom:409.374595px;}
.y9a{bottom:412.912696px;}
.y2e{bottom:415.310646px;}
.y2d{bottom:425.841498px;}
.yb7{bottom:431.433266px;}
.y35{bottom:437.520378px;}
.y5f{bottom:447.354606px;}
.y99{bottom:453.952674px;}
.y3e{bottom:454.698829px;}
.y2c{bottom:457.341498px;}
.y27{bottom:465.778998px;}
.y34{bottom:465.960411px;}
.y80{bottom:476.640009px;}
.y82{bottom:477.720009px;}
.ya5{bottom:479.703392px;}
.y3d{bottom:483.138862px;}
.yb6{bottom:483.453254px;}
.y2b{bottom:488.841498px;}
.y5e{bottom:493.074622px;}
.y33{bottom:494.400397px;}
.y98{bottom:503.841910px;}
.y3c{bottom:511.578849px;}
.y72{bottom:516.073035px;}
.y2a{bottom:521.241509px;}
.y64{bottom:527.015693px;}
.yb5{bottom:527.733283px;}
.y73{bottom:530.640007px;}
.y5d{bottom:530.694603px;}
.y32{bottom:531.300407px;}
.y3b{bottom:548.478858px;}
.ya4{bottom:554.239539px;}
.y6{bottom:576.479805px;}
.y1f{bottom:580.963737px;}
.ya3{bottom:582.499534px;}
.y4e{bottom:593.922477px;}
.y71{bottom:594.930702px;}
.y12{bottom:595.261848px;}
.yb2{bottom:595.356194px;}
.y14{bottom:598.961310px;}
.y31{bottom:599.116675px;}
.y9f{bottom:600.077247px;}
.ye{bottom:601.608100px;}
.y29{bottom:603.121788px;}
.y54{bottom:605.299187px;}
.y1d{bottom:607.995872px;}
.y5c{bottom:611.218620px;}
.ya2{bottom:613.819542px;}
.yb4{bottom:614.858023px;}
.y3a{bottom:617.611427px;}
.y8b{bottom:618.670875px;}
.y69{bottom:619.768912px;}
.y63{bottom:621.084342px;}
.y47{bottom:621.644278px;}
.y96{bottom:621.936561px;}
.y88{bottom:622.942725px;}
.ya8{bottom:629.093146px;}
.h23{height:19.800000px;}
.h19{height:30.060000px;}
.h25{height:31.680000px;}
.h1e{height:36.719999px;}
.h6{height:41.580000px;}
.h1a{height:45.170364px;}
.h1c{height:45.183430px;}
.h20{height:45.265748px;}
.h9{height:57.822188px;}
.h2c{height:66.082500px;}
.h11{height:68.217188px;}
.h2d{height:68.681250px;}
.h30{height:72.077344px;}
.h10{height:73.091250px;}
.h22{height:73.932492px;}
.h8{height:75.452344px;}
.h24{height:77.002459px;}
.h27{height:77.992394px;}
.h26{height:78.031215px;}
.h1b{height:78.132521px;}
.h1d{height:78.155123px;}
.h21{height:78.297510px;}
.h1f{height:78.336484px;}
.hd{height:80.600625px;}
.h12{height:82.635820px;}
.h7{height:87.609375px;}
.h34{height:87.859688px;}
.hb{height:90.439453px;}
.h13{height:91.054688px;}
.h31{height:91.087354px;}
.hf{height:93.230156px;}
.ha{height:95.118750px;}
.h29{height:98.191406px;}
.h16{height:99.123750px;}
.h15{height:101.808984px;}
.h5{height:102.628125px;}
.h2e{height:103.169531px;}
.h33{height:105.943359px;}
.h2a{height:111.668773px;}
.h4{height:120.900938px;}
.h2f{height:123.600586px;}
.h3{height:130.140000px;}
.h28{height:134.194922px;}
.h14{height:142.678125px;}
.h32{height:143.365432px;}
.he{height:144.789258px;}
.h2b{height:163.021397px;}
.hc{height:165.271641px;}
.h17{height:200.795124px;}
.h18{height:205.742082px;}
.h2{height:710.279984px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w6{width:21.240000px;}
.w3{width:31.680000px;}
.w4{width:36.539998px;}
.w7{width:63.359999px;}
.w5{width:154.979997px;}
.w2{width:1262.700000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x47{left:3.059037px;}
.x46{left:8.191941px;}
.x49{left:13.386624px;}
.x51{left:18.614433px;}
.x4b{left:51.058059px;}
.x40{left:63.619026px;}
.x4c{left:64.628555px;}
.x2f{left:85.896289px;}
.x37{left:88.226221px;}
.x53{left:89.662770px;}
.x24{left:92.696124px;}
.x34{left:100.293667px;}
.x3a{left:104.635670px;}
.x44{left:106.929009px;}
.x5e{left:108.318310px;}
.x55{left:109.715520px;}
.x2b{left:113.438980px;}
.x6e{left:119.076158px;}
.x32{left:123.386047px;}
.x19{left:127.496502px;}
.x1e{left:132.817044px;}
.xf{left:138.748321px;}
.x59{left:140.572750px;}
.x14{left:145.883071px;}
.x38{left:151.356426px;}
.x6d{left:153.173496px;}
.x6f{left:158.601041px;}
.xd{left:159.979779px;}
.x13{left:161.906757px;}
.x9{left:168.054318px;}
.x3c{left:174.398751px;}
.x56{left:176.513871px;}
.x39{left:180.876428px;}
.x54{left:184.089871px;}
.x5f{left:187.201886px;}
.x11{left:189.668076px;}
.x3b{left:204.908196px;}
.x70{left:205.941025px;}
.x27{left:231.684372px;}
.x5{left:234.453362px;}
.x3d{left:236.138756px;}
.x7{left:238.569321px;}
.x1b{left:239.655984px;}
.x8{left:240.909318px;}
.x15{left:254.006439px;}
.x20{left:276.840859px;}
.x64{left:282.197358px;}
.x63{left:307.425949px;}
.x66{left:323.122140px;}
.x65{left:346.936173px;}
.x17{left:364.775062px;}
.x1{left:382.559914px;}
.x3{left:415.679893px;}
.x69{left:420.495109px;}
.x2{left:431.519890px;}
.x3e{left:451.399148px;}
.x21{left:475.147469px;}
.x68{left:531.803735px;}
.x61{left:537.741204px;}
.x62{left:547.383905px;}
.x41{left:569.564751px;}
.x5d{left:579.364235px;}
.x67{left:581.195840px;}
.x6a{left:583.312584px;}
.x1c{left:600.315666px;}
.x50{left:603.899986px;}
.x12{left:622.970710px;}
.x58{left:630.635918px;}
.x6c{left:631.846840px;}
.x5b{left:645.387902px;}
.x5a{left:650.607918px;}
.x57{left:662.748039px;}
.x30{left:671.552940px;}
.x6b{left:678.398751px;}
.x4{left:684.239907px;}
.x2d{left:693.078042px;}
.x26{left:719.303735px;}
.x1a{left:720.701286px;}
.x25{left:726.788858px;}
.x2e{left:728.538018px;}
.x52{left:749.519984px;}
.x29{left:750.956902px;}
.x31{left:757.730568px;}
.x1f{left:760.603676px;}
.x16{left:765.633126px;}
.x3f{left:778.064110px;}
.x2a{left:786.416923px;}
.x45{left:795.059982px;}
.x35{left:818.488122px;}
.x5c{left:825.027917px;}
.x22{left:858.157373px;}
.xb{left:873.391472px;}
.xc{left:888.511407px;}
.x71{left:931.197503px;}
.x4e{left:933.299979px;}
.x48{left:944.099979px;}
.x42{left:984.137597px;}
.x36{left:985.237053px;}
.x4d{left:988.919978px;}
.x4a{left:1039.679977px;}
.x4f{left:1063.079976px;}
.x60{left:1119.566247px;}
.x6{left:1127.126214px;}
.x2c{left:1135.822807px;}
.x33{left:1141.477378px;}
.x1d{left:1144.089654px;}
.x43{left:1149.512047px;}
.x28{left:1151.372673px;}
.x10{left:1154.691735px;}
.x18{left:1156.105401px;}
.x23{left:1158.932731px;}
.x72{left:1160.035942px;}
.xa{left:1161.791008px;}
.xe{left:1163.880333px;}
@media print{
.vb{vertical-align:-53.960608pt;}
.v6{vertical-align:-18.220048pt;}
.v2{vertical-align:-5.024901pt;}
.v5{vertical-align:-3.905029pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:7.600507pt;}
.v9{vertical-align:16.897787pt;}
.v1{vertical-align:30.720011pt;}
.v8{vertical-align:53.201659pt;}
.va{vertical-align:63.367189pt;}
.v3{vertical-align:90.374555pt;}
.v4{vertical-align:94.771851pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.096048pt;}
.ls9{letter-spacing:0.096133pt;}
.ls3{letter-spacing:0.299520pt;}
.ls11{letter-spacing:18.414032pt;}
.ls12{letter-spacing:19.054171pt;}
.lsd{letter-spacing:21.036816pt;}
.lsb{letter-spacing:25.231957pt;}
.lsc{letter-spacing:25.360021pt;}
.ls5{letter-spacing:25.391712pt;}
.lsf{letter-spacing:25.392037pt;}
.ls6{letter-spacing:25.392043pt;}
.ls8{letter-spacing:40.080075pt;}
.ls1{letter-spacing:41.516880pt;}
.ls2{letter-spacing:49.625520pt;}
.ls4{letter-spacing:49.625675pt;}
.ls7{letter-spacing:51.631947pt;}
.lse{letter-spacing:86.661036pt;}
.ls13{letter-spacing:137.331355pt;}
.ls10{letter-spacing:308.738416pt;}
.ls15{letter-spacing:338.663221pt;}
.ls14{letter-spacing:538.740533pt;}
.ws3{word-spacing:-29.651200pt;}
.wsb{word-spacing:-27.481600pt;}
.ws2e{word-spacing:-25.312000pt;}
.ws0{word-spacing:-23.493120pt;}
.ws41{word-spacing:-23.360000pt;}
.ws19{word-spacing:-13.552000pt;}
.ws34{word-spacing:-10.235680pt;}
.ws33{word-spacing:-10.232720pt;}
.wsa{word-spacing:-1.318421pt;}
.ws15{word-spacing:-1.318341pt;}
.ws9{word-spacing:-1.212832pt;}
.ws23{word-spacing:-1.203221pt;}
.ws21{word-spacing:-1.203141pt;}
.ws39{word-spacing:-0.649552pt;}
.ws32{word-spacing:-0.649547pt;}
.ws20{word-spacing:-0.592085pt;}
.ws3e{word-spacing:-0.592080pt;}
.wsc{word-spacing:-0.592005pt;}
.ws10{word-spacing:-0.592000pt;}
.ws22{word-spacing:-0.591925pt;}
.wsd{word-spacing:-0.591920pt;}
.ws1e{word-spacing:-0.540853pt;}
.ws1b{word-spacing:-0.540773pt;}
.ws8{word-spacing:-0.528661pt;}
.ws7{word-spacing:-0.528496pt;}
.ws3d{word-spacing:-0.524709pt;}
.ws14{word-spacing:-0.476133pt;}
.ws2f{word-spacing:-0.368037pt;}
.ws42{word-spacing:-0.348832pt;}
.ws3b{word-spacing:-0.348789pt;}
.ws3a{word-spacing:-0.348747pt;}
.ws5{word-spacing:-0.334075pt;}
.ws2{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.070384pt;}
.ws1f{word-spacing:0.159995pt;}
.ws4{word-spacing:0.240053pt;}
.wsf{word-spacing:0.303995pt;}
.ws17{word-spacing:0.317376pt;}
.ws1a{word-spacing:0.415904pt;}
.ws1c{word-spacing:0.416069pt;}
.ws12{word-spacing:0.463973pt;}
.ws11{word-spacing:0.499413pt;}
.ws26{word-spacing:0.559957pt;}
.wse{word-spacing:0.576075pt;}
.ws30{word-spacing:0.657899pt;}
.ws13{word-spacing:0.683680pt;}
.ws6{word-spacing:0.924139pt;}
.ws2d{word-spacing:0.975973pt;}
.ws1d{word-spacing:1.216075pt;}
.ws18{word-spacing:1.597419pt;}
.ws16{word-spacing:1.597424pt;}
.ws1{word-spacing:8.791557pt;}
.ws27{word-spacing:11.983952pt;}
.ws29{word-spacing:12.383920pt;}
.ws28{word-spacing:12.575979pt;}
.ws2c{word-spacing:14.351925pt;}
.ws2b{word-spacing:14.480107pt;}
.ws2a{word-spacing:14.735952pt;}
.ws38{word-spacing:17.385406pt;}
.ws24{word-spacing:26.207963pt;}
.ws25{word-spacing:26.751995pt;}
.ws40{word-spacing:30.533035pt;}
.ws35{word-spacing:41.222399pt;}
.ws36{word-spacing:56.546245pt;}
.ws37{word-spacing:181.558143pt;}
.ws31{word-spacing:615.356944pt;}
.ws3f{word-spacing:648.248309pt;}
._11{margin-left:-12.201600pt;}
._3{margin-left:-9.890507pt;}
._15{margin-left:-8.224555pt;}
._c{margin-left:-7.215099pt;}
._8{margin-left:-5.405472pt;}
._6{margin-left:-4.294933pt;}
._0{margin-left:-2.776320pt;}
._5{margin-left:-1.079680pt;}
._4{width:1.542400pt;}
._2{width:3.393280pt;}
._1f{width:16.078651pt;}
._13{width:17.637184pt;}
._7{width:22.203515pt;}
._10{width:23.649915pt;}
._9{width:26.567467pt;}
._d{width:27.752859pt;}
._1e{width:28.693136pt;}
._b{width:30.254800pt;}
._16{width:38.885056pt;}
._a{width:41.516795pt;}
._1{width:43.630000pt;}
._f{width:49.680203pt;}
._e{width:66.960149pt;}
._1d{width:68.870347pt;}
._1b{width:83.719660pt;}
._12{width:103.279008pt;}
._1a{width:129.778775pt;}
._18{width:164.252453pt;}
._17{width:169.362811pt;}
._14{width:348.218747pt;}
._19{width:356.943735pt;}
._1c{width:1243.722000pt;}
.fs14{font-size:40.857472pt;}
.fsc{font-size:40.930880pt;}
.fse{font-size:40.942720pt;}
.fs11{font-size:41.017312pt;}
.fs4{font-size:49.280000pt;}
.fs15{font-size:65.280000pt;}
.fs2{font-size:68.480000pt;}
.fs12{font-size:69.775360pt;}
.fs13{font-size:70.672384pt;}
.fsd{font-size:70.799360pt;}
.fsf{font-size:70.819840pt;}
.fs10{font-size:70.948864pt;}
.fsa{font-size:74.880000pt;}
.fs9{font-size:84.480000pt;}
.fs6{font-size:93.440000pt;}
.fs1{font-size:103.040000pt;}
.fs5{font-size:112.000000pt;}
.fs7{font-size:121.600000pt;}
.fsb{font-size:126.080000pt;}
.fs3{font-size:131.200000pt;}
.fs8{font-size:149.760000pt;}
.fs0{font-size:154.240000pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:3.063636pt;}
.y77{bottom:4.450743pt;}
.y74{bottom:4.456631pt;}
.y86{bottom:5.156583pt;}
.y7d{bottom:5.156620pt;}
.y7b{bottom:7.373743pt;}
.y84{bottom:7.373745pt;}
.y78{bottom:9.015236pt;}
.y75{bottom:9.019944pt;}
.y81{bottom:10.492111pt;}
.ybf{bottom:11.472503pt;}
.yf{bottom:11.541717pt;}
.yb3{bottom:11.816019pt;}
.y7a{bottom:11.946619pt;}
.y83{bottom:11.946621pt;}
.y7c{bottom:12.316125pt;}
.y85{bottom:12.316128pt;}
.y8a{bottom:12.435160pt;}
.y1e{bottom:12.811879pt;}
.y70{bottom:13.053832pt;}
.y13{bottom:13.479532pt;}
.y5b{bottom:14.003204pt;}
.y28{bottom:14.107737pt;}
.y68{bottom:14.390705pt;}
.y87{bottom:14.704609pt;}
.y62{bottom:14.736093pt;}
.y67{bottom:15.337737pt;}
.y15{bottom:15.364451pt;}
.y48{bottom:15.992503pt;}
.y97{bottom:16.149536pt;}
.y95{bottom:16.493357pt;}
.y8d{bottom:16.768595pt;}
.y41{bottom:17.877420pt;}
.y66{bottom:18.024139pt;}
.y39{bottom:19.134063pt;}
.y30{bottom:25.417032pt;}
.yaf{bottom:31.290079pt;}
.ybe{bottom:34.415232pt;}
.y65{bottom:43.304137pt;}
.y5{bottom:45.959685pt;}
.y94{bottom:50.253356pt;}
.y8c{bottom:52.710041pt;}
.yd{bottom:52.928517pt;}
.ybd{bottom:56.815276pt;}
.y1c{bottom:57.815937pt;}
.y89{bottom:67.189025pt;}
.y7{bottom:68.767109pt;}
.y26{bottom:69.674723pt;}
.yb1{bottom:70.477965pt;}
.y4f{bottom:74.813008pt;}
.y1{bottom:81.120016pt;}
.y4{bottom:83.079681pt;}
.y93{bottom:83.853363pt;}
.yc{bottom:88.128509pt;}
.y18{bottom:96.010579pt;}
.ya0{bottom:96.137491pt;}
.y1b{bottom:98.455932pt;}
.y22{bottom:100.216044pt;}
.y25{bottom:109.994731pt;}
.y59{bottom:113.338623pt;}
.y46{bottom:114.924601pt;}
.y92{bottom:117.453348pt;}
.yb{bottom:124.288512pt;}
.y11{bottom:129.014220pt;}
.y17{bottom:136.650573pt;}
.y6d{bottom:138.796020pt;}
.y1a{bottom:139.095927pt;}
.y21{bottom:140.856059pt;}
.y53{bottom:141.119527pt;}
.y10{bottom:143.734212pt;}
.y9e{bottom:144.679097pt;}
.y45{bottom:148.364603pt;}
.y24{bottom:150.474731pt;}
.y91{bottom:151.213359pt;}
.y5a{bottom:164.201904pt;}
.y3{bottom:164.359680pt;}
.y6f{bottom:165.075744pt;}
.ya6{bottom:165.244100pt;}
.ya{bottom:170.848511pt;}
.y4d{bottom:172.079752pt;}
.y6c{bottom:172.396016pt;}
.y52{bottom:174.719523pt;}
.y16{bottom:177.930583pt;}
.y19{bottom:180.375936pt;}
.y9d{bottom:181.799092pt;}
.y44{bottom:182.284607pt;}
.y7e{bottom:186.240013pt;}
.y20{bottom:188.536051pt;}
.y23{bottom:195.754720pt;}
.y6e{bottom:198.835733pt;}
.yae{bottom:201.775695pt;}
.y4c{bottom:205.519755pt;}
.y9{bottom:205.888508pt;}
.y6b{bottom:206.156005pt;}
.ybc{bottom:206.831644pt;}
.y51{bottom:208.479532pt;}
.yad{bottom:212.186015pt;}
.y43{bottom:216.044596pt;}
.yab{bottom:216.410461pt;}
.ya9{bottom:217.617492pt;}
.y2{bottom:220.039692pt;}
.y9c{bottom:224.039103pt;}
.ybb{bottom:229.391641pt;}
.y36{bottom:230.796752pt;}
.yac{bottom:232.252136pt;}
.y4b{bottom:239.439757pt;}
.y8{bottom:242.208516pt;}
.y58{bottom:243.707499pt;}
.yaa{bottom:245.679992pt;}
.y38{bottom:247.646992pt;}
.y6a{bottom:248.076008pt;}
.y50{bottom:250.399536pt;}
.y40{bottom:250.892761pt;}
.yba{bottom:251.791625pt;}
.y42{bottom:257.964599pt;}
.y90{bottom:259.856527pt;}
.y4a{bottom:273.199768pt;}
.y57{bottom:277.307475pt;}
.y8f{bottom:293.616516pt;}
.ya7{bottom:294.207905pt;}
.y2f{bottom:294.252787pt;}
.ya1{bottom:295.936707pt;}
.yb9{bottom:297.896260pt;}
.y56{bottom:311.067484pt;}
.y49{bottom:315.119771pt;}
.y37{bottom:326.924092pt;}
.y61{bottom:330.288553pt;}
.y9b{bottom:330.553527pt;}
.y3f{bottom:334.115376pt;}
.y8e{bottom:335.536519pt;}
.yb8{bottom:337.096252pt;}
.y79{bottom:344.640011pt;}
.y76{bottom:352.320009pt;}
.yb0{bottom:352.417825pt;}
.y55{bottom:352.987487pt;}
.y60{bottom:363.888529pt;}
.y9a{bottom:367.033508pt;}
.y2e{bottom:369.165019pt;}
.y2d{bottom:378.525776pt;}
.yb7{bottom:383.496236pt;}
.y35{bottom:388.907003pt;}
.y5f{bottom:397.648539pt;}
.y99{bottom:403.513488pt;}
.y3e{bottom:404.176737pt;}
.y2c{bottom:406.525776pt;}
.y27{bottom:414.025776pt;}
.y34{bottom:414.187032pt;}
.y80{bottom:423.680008pt;}
.y82{bottom:424.640008pt;}
.ya5{bottom:426.403015pt;}
.y3d{bottom:429.456767pt;}
.yb6{bottom:429.736225pt;}
.y2b{bottom:434.525776pt;}
.y5e{bottom:438.288553pt;}
.y33{bottom:439.467020pt;}
.y98{bottom:447.859476pt;}
.y3c{bottom:454.736755pt;}
.y72{bottom:458.731587pt;}
.y2a{bottom:463.325785pt;}
.y64{bottom:468.458393pt;}
.yb5{bottom:469.096252pt;}
.y73{bottom:471.680007pt;}
.y5d{bottom:471.728536pt;}
.y32{bottom:472.267028pt;}
.y3b{bottom:487.536763pt;}
.ya4{bottom:492.657368pt;}
.y6{bottom:512.426493pt;}
.y1f{bottom:516.412211pt;}
.ya3{bottom:517.777364pt;}
.y4e{bottom:527.931091pt;}
.y71{bottom:528.827291pt;}
.y12{bottom:529.121643pt;}
.yb2{bottom:529.205505pt;}
.y14{bottom:532.410053pt;}
.y31{bottom:532.548156pt;}
.y9f{bottom:533.401997pt;}
.ye{bottom:534.762756pt;}
.y29{bottom:536.108256pt;}
.y54{bottom:538.043721pt;}
.y1d{bottom:540.440775pt;}
.y5c{bottom:543.305440pt;}
.ya2{bottom:545.617371pt;}
.yb4{bottom:546.540465pt;}
.y3a{bottom:548.987935pt;}
.y8b{bottom:549.929667pt;}
.y69{bottom:550.905700pt;}
.y63{bottom:552.074971pt;}
.y47{bottom:552.572692pt;}
.y96{bottom:552.832499pt;}
.y88{bottom:553.726867pt;}
.ya8{bottom:559.193908pt;}
.h23{height:17.600000pt;}
.h19{height:26.720000pt;}
.h25{height:28.160000pt;}
.h1e{height:32.639999pt;}
.h6{height:36.960000pt;}
.h1a{height:40.151435pt;}
.h1c{height:40.163049pt;}
.h20{height:40.236221pt;}
.h9{height:51.397500pt;}
.h2c{height:58.740000pt;}
.h11{height:60.637500pt;}
.h2d{height:61.050000pt;}
.h30{height:64.068750pt;}
.h10{height:64.970000pt;}
.h22{height:65.717771pt;}
.h8{height:67.068750pt;}
.h24{height:68.446630pt;}
.h27{height:69.326572pt;}
.h26{height:69.361080pt;}
.h1b{height:69.451130pt;}
.h1d{height:69.471220pt;}
.h21{height:69.597787pt;}
.h1f{height:69.632430pt;}
.hd{height:71.645000pt;}
.h12{height:73.454063pt;}
.h7{height:77.875000pt;}
.h34{height:78.097500pt;}
.hb{height:80.390625pt;}
.h13{height:80.937500pt;}
.h31{height:80.966537pt;}
.hf{height:82.871250pt;}
.ha{height:84.550000pt;}
.h29{height:87.281250pt;}
.h16{height:88.110000pt;}
.h15{height:90.496875pt;}
.h5{height:91.225000pt;}
.h2e{height:91.706250pt;}
.h33{height:94.171875pt;}
.h2a{height:99.261132pt;}
.h4{height:107.467500pt;}
.h2f{height:109.867188pt;}
.h3{height:115.680000pt;}
.h28{height:119.284375pt;}
.h14{height:126.825000pt;}
.h32{height:127.435939pt;}
.he{height:128.701562pt;}
.h2b{height:144.907909pt;}
.hc{height:146.908125pt;}
.h17{height:178.484555pt;}
.h18{height:182.881851pt;}
.h2{height:631.359985pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w6{width:18.880000pt;}
.w3{width:28.160000pt;}
.w4{width:32.479999pt;}
.w7{width:56.319999pt;}
.w5{width:137.759997pt;}
.w2{width:1122.400000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x47{left:2.719144pt;}
.x46{left:7.281725pt;}
.x49{left:11.899221pt;}
.x51{left:16.546163pt;}
.x4b{left:45.384941pt;}
.x40{left:56.550245pt;}
.x4c{left:57.447604pt;}
.x2f{left:76.352257pt;}
.x37{left:78.423308pt;}
.x53{left:79.700240pt;}
.x24{left:82.396555pt;}
.x34{left:89.149927pt;}
.x3a{left:93.009484pt;}
.x44{left:95.048008pt;}
.x5e{left:96.282943pt;}
.x55{left:97.524907pt;}
.x2b{left:100.834649pt;}
.x6e{left:105.845473pt;}
.x32{left:109.676487pt;}
.x19{left:113.330224pt;}
.x1e{left:118.059595pt;}
.xf{left:123.331841pt;}
.x59{left:124.953556pt;}
.x14{left:129.673841pt;}
.x38{left:134.539045pt;}
.x6d{left:136.154219pt;}
.x6f{left:140.978703pt;}
.xd{left:142.204248pt;}
.x13{left:143.917117pt;}
.x9{left:149.381616pt;}
.x3c{left:155.021112pt;}
.x56{left:156.901219pt;}
.x39{left:160.779047pt;}
.x54{left:163.635441pt;}
.x5f{left:166.401676pt;}
.x11{left:168.593845pt;}
.x3b{left:182.140619pt;}
.x70{left:183.058689pt;}
.x27{left:205.941664pt;}
.x5{left:208.402988pt;}
.x3d{left:209.901116pt;}
.x7{left:212.061619pt;}
.x1b{left:213.027541pt;}
.x8{left:214.141616pt;}
.x15{left:225.783501pt;}
.x20{left:246.080764pt;}
.x64{left:250.842096pt;}
.x63{left:273.267511pt;}
.x66{left:287.219680pt;}
.x65{left:308.387709pt;}
.x17{left:324.244500pt;}
.x1{left:340.053257pt;}
.x3{left:369.493239pt;}
.x69{left:373.773431pt;}
.x2{left:383.573236pt;}
.x3e{left:401.243687pt;}
.x21{left:422.353305pt;}
.x68{left:472.714431pt;}
.x61{left:477.992181pt;}
.x62{left:486.563471pt;}
.x41{left:506.279779pt;}
.x5d{left:514.990431pt;}
.x67{left:516.618524pt;}
.x6a{left:518.500075pt;}
.x1c{left:533.613925pt;}
.x50{left:536.799988pt;}
.x12{left:553.751743pt;}
.x58{left:560.565260pt;}
.x6c{left:561.641636pt;}
.x5b{left:573.678135pt;}
.x5a{left:578.318149pt;}
.x57{left:589.109368pt;}
.x30{left:596.935947pt;}
.x6b{left:603.021112pt;}
.x4{left:608.213251pt;}
.x2d{left:616.069371pt;}
.x26{left:639.381097pt;}
.x1a{left:640.623365pt;}
.x25{left:646.034540pt;}
.x2e{left:647.589349pt;}
.x52{left:666.239985pt;}
.x29{left:667.517247pt;}
.x31{left:673.538283pt;}
.x1f{left:676.092156pt;}
.x16{left:680.562779pt;}
.x3f{left:691.612543pt;}
.x2a{left:699.037265pt;}
.x45{left:706.719984pt;}
.x35{left:727.544997pt;}
.x5c{left:733.358148pt;}
.x22{left:762.806553pt;}
.xb{left:776.347975pt;}
.xc{left:789.787917pt;}
.x71{left:827.731113pt;}
.x4e{left:829.599981pt;}
.x48{left:839.199981pt;}
.x42{left:874.788975pt;}
.x36{left:875.766269pt;}
.x4d{left:879.039980pt;}
.x4a{left:924.159980pt;}
.x4f{left:944.959979pt;}
.x60{left:995.169997pt;}
.x6{left:1001.889968pt;}
.x2c{left:1009.620273pt;}
.x33{left:1014.646559pt;}
.x1d{left:1016.968581pt;}
.x43{left:1021.788487pt;}
.x28{left:1023.442376pt;}
.x10{left:1026.392653pt;}
.x18{left:1027.649245pt;}
.x23{left:1030.162428pt;}
.x72{left:1031.143060pt;}
.xa{left:1032.703119pt;}
.xe{left:1034.560296pt;}
}




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