
    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_2158c7c1f6dd69070a07c2e9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_1c13afb64cfc88df9bdf1c05.woff')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_2f3332d0846bf05f2fb380b8.woff')format("woff");}.ff3{font-family:ff3;line-height:0.948000;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_aee2076a803a28d4c69d2398.woff')format("woff");}.ff4{font-family:ff4;line-height:0.948000;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_4cde14660785eb5b8dc5bde7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.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);}
.v3{vertical-align:-19.980000px;}
.v1{vertical-align:-12.987000px;}
.v4{vertical-align:-1.381200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980600px;}
.v5{vertical-align:28.008000px;}
.ls2{letter-spacing:-6.480000px;}
.ls1{letter-spacing:-4.320000px;}
.ls30{letter-spacing:-1.800000px;}
.ls3a{letter-spacing:-1.440000px;}
.ls31{letter-spacing:-1.380000px;}
.ls36{letter-spacing:-1.200000px;}
.ls9{letter-spacing:-1.056000px;}
.ls4{letter-spacing:-0.882000px;}
.ls18{letter-spacing:-0.840000px;}
.ls3b{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.672000px;}
.ls14{letter-spacing:-0.600000px;}
.ls42{letter-spacing:-0.588000px;}
.ls3e{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.420000px;}
.lse{letter-spacing:-0.390000px;}
.ls32{letter-spacing:-0.384780px;}
.ls3c{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.349800px;}
.ls13{letter-spacing:-0.300000px;}
.ls8{letter-spacing:-0.252000px;}
.ls19{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.120000px;}
.ls2e{letter-spacing:-0.034980px;}
.ls33{letter-spacing:-0.022737px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.068211px;}
.ls24{letter-spacing:0.104940px;}
.ls16{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.136422px;}
.ls41{letter-spacing:0.146916px;}
.ls3d{letter-spacing:0.174900px;}
.ls15{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.181896px;}
.ls1e{letter-spacing:0.204633px;}
.ls21{letter-spacing:0.209880px;}
.ls2a{letter-spacing:0.227370px;}
.ls28{letter-spacing:0.234000px;}
.ls34{letter-spacing:0.272844px;}
.ls26{letter-spacing:0.273000px;}
.ls20{letter-spacing:0.279840px;}
.ls2b{letter-spacing:0.295581px;}
.ls12{letter-spacing:0.312000px;}
.ls22{letter-spacing:0.314820px;}
.ls38{letter-spacing:0.318318px;}
.ls25{letter-spacing:0.341055px;}
.ls2d{letter-spacing:0.349800px;}
.ls43{letter-spacing:0.351000px;}
.ls29{letter-spacing:0.386529px;}
.lsd{letter-spacing:0.390000px;}
.ls2f{letter-spacing:0.419760px;}
.lsf{letter-spacing:0.429000px;}
.ls1b{letter-spacing:0.454740px;}
.ls10{letter-spacing:0.468000px;}
.ls40{letter-spacing:0.477477px;}
.ls11{letter-spacing:0.507000px;}
.ls23{letter-spacing:0.524700px;}
.lsc{letter-spacing:0.546000px;}
.ls2c{letter-spacing:0.594660px;}
.ls37{letter-spacing:0.624000px;}
.ls1f{letter-spacing:0.699600px;}
.ls0{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.734580px;}
.ls1a{letter-spacing:0.819000px;}
.ls39{letter-spacing:1.534800px;}
.ls5{letter-spacing:31.920000px;}
.ls6{letter-spacing:32.460000px;}
.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;}
}
.ws8{word-spacing:-32.736000px;}
.wsf{word-spacing:-15.360000px;}
.ws3e{word-spacing:-15.300000px;}
.ws34{word-spacing:-14.640000px;}
.ws50{word-spacing:-12.683748px;}
.ws0{word-spacing:-11.016000px;}
.ws44{word-spacing:-10.686000px;}
.wsc{word-spacing:-10.608000px;}
.wsb{word-spacing:-10.569000px;}
.wsa{word-spacing:-10.530000px;}
.wsd{word-spacing:-10.491000px;}
.ws41{word-spacing:-10.452000px;}
.ws3b{word-spacing:-9.672000px;}
.ws2d{word-spacing:-9.654480px;}
.ws35{word-spacing:-9.549540px;}
.ws37{word-spacing:-9.409620px;}
.ws3c{word-spacing:-9.374640px;}
.ws36{word-spacing:-9.304680px;}
.ws27{word-spacing:-9.269700px;}
.ws25{word-spacing:-9.234720px;}
.ws26{word-spacing:-9.164760px;}
.ws47{word-spacing:-9.129780px;}
.ws2e{word-spacing:-9.059820px;}
.wse{word-spacing:-8.954880px;}
.ws3d{word-spacing:-8.570100px;}
.ws51{word-spacing:-6.864000px;}
.ws54{word-spacing:-6.732000px;}
.ws4b{word-spacing:-6.298149px;}
.ws21{word-spacing:-6.275412px;}
.ws31{word-spacing:-6.207201px;}
.ws2f{word-spacing:-6.161727px;}
.ws45{word-spacing:-6.138990px;}
.ws33{word-spacing:-6.116253px;}
.ws40{word-spacing:-6.093516px;}
.ws32{word-spacing:-6.048042px;}
.ws24{word-spacing:-6.025305px;}
.ws22{word-spacing:-6.002568px;}
.ws23{word-spacing:-5.957094px;}
.ws30{word-spacing:-5.888883px;}
.ws9{word-spacing:-5.820672px;}
.ws3f{word-spacing:-5.797935px;}
.ws11{word-spacing:-4.368000px;}
.ws52{word-spacing:-4.200000px;}
.ws12{word-spacing:-4.116000px;}
.ws2{word-spacing:-3.744000px;}
.ws3{word-spacing:-3.672000px;}
.ws48{word-spacing:-3.660000px;}
.ws1d{word-spacing:-3.600000px;}
.ws1e{word-spacing:-3.540000px;}
.ws20{word-spacing:-3.480000px;}
.ws1b{word-spacing:-3.420000px;}
.ws1a{word-spacing:-3.360000px;}
.ws4d{word-spacing:-3.300000px;}
.ws28{word-spacing:-3.237000px;}
.ws7{word-spacing:-3.120000px;}
.ws2b{word-spacing:-3.060000px;}
.ws4{word-spacing:-3.057600px;}
.ws13{word-spacing:-2.964000px;}
.ws18{word-spacing:-2.925000px;}
.ws17{word-spacing:-2.886000px;}
.ws1f{word-spacing:-2.880000px;}
.ws4a{word-spacing:-2.847000px;}
.ws14{word-spacing:-2.808000px;}
.ws53{word-spacing:-2.769000px;}
.ws19{word-spacing:-2.730000px;}
.ws39{word-spacing:-2.691000px;}
.ws3a{word-spacing:-2.652000px;}
.ws1{word-spacing:-2.496000px;}
.ws15{word-spacing:-2.028000px;}
.ws4e{word-spacing:-0.734580px;}
.ws2a{word-spacing:-0.699600px;}
.ws29{word-spacing:-0.546000px;}
.ws38{word-spacing:-0.524700px;}
.ws49{word-spacing:-0.468000px;}
.ws16{word-spacing:-0.429000px;}
.ws2c{word-spacing:-0.314820px;}
.ws43{word-spacing:-0.104940px;}
.ws5{word-spacing:0.000000px;}
.ws42{word-spacing:0.034980px;}
.ws6{word-spacing:0.180000px;}
.ws10{word-spacing:0.252000px;}
.ws1c{word-spacing:0.300000px;}
.ws46{word-spacing:0.349800px;}
.ws55{word-spacing:0.360000px;}
.ws4f{word-spacing:31.942800px;}
.ws4c{word-spacing:703.797658px;}
._13{margin-left:-16.020000px;}
._e{margin-left:-12.300000px;}
._d{margin-left:-8.591265px;}
._c{margin-left:-7.566189px;}
._0{margin-left:-6.480000px;}
._f{margin-left:-4.936800px;}
._1{margin-left:-3.672000px;}
._7{margin-left:-2.580000px;}
._2{margin-left:-1.008000px;}
._9{width:1.024800px;}
._8{width:2.032800px;}
._a{width:3.403200px;}
._1a{width:7.164774px;}
._16{width:8.534100px;}
._17{width:15.186120px;}
._11{width:16.681794px;}
._10{width:19.027473px;}
._12{width:20.112849px;}
._14{width:21.505506px;}
._18{width:22.896231px;}
._19{width:24.877950px;}
._15{width:26.989791px;}
._b{width:29.724600px;}
._5{width:31.920000px;}
._6{width:33.780000px;}
._4{width:46.860000px;}
._1b{width:866.149718px;}
._3{width:2091.168000px;}
.fc4{color:transparent;}
.fc3{color:rgb(132,130,130);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(101,98,99);}
.fc0{color:rgb(133,26,143);}
.fs7{font-size:22.737000px;}
.fs9{font-size:34.980000px;}
.fs8{font-size:39.000000px;}
.fsb{font-size:47.962800px;}
.fsa{font-size:47.963053px;}
.fs1{font-size:48.000000px;}
.fse{font-size:48.972000px;}
.fs3{font-size:58.800000px;}
.fsd{font-size:59.953604px;}
.fsc{font-size:59.953800px;}
.fs5{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.000000px;}
.fs6{font-size:132.000000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:26.430900px;}
.yb6{bottom:46.878150px;}
.yb5{bottom:62.127150px;}
.yb4{bottom:74.127150px;}
.y86{bottom:82.878150px;}
.y23{bottom:98.127000px;}
.y85{bottom:98.127150px;}
.y22{bottom:106.878000px;}
.yb3{bottom:106.878150px;}
.y84{bottom:110.127150px;}
.y83{bottom:118.878150px;}
.y21{bottom:122.127000px;}
.yb2{bottom:122.127150px;}
.y20{bottom:130.878000px;}
.y82{bottom:134.127150px;}
.y81{bottom:142.878150px;}
.y1f{bottom:146.127000px;}
.y4c{bottom:146.127150px;}
.y1e{bottom:154.878000px;}
.yba{bottom:154.878150px;}
.y4b{bottom:158.127150px;}
.y80{bottom:166.878150px;}
.y1d{bottom:170.127000px;}
.y4a{bottom:170.127150px;}
.y1c{bottom:178.875750px;}
.y49{bottom:182.127150px;}
.yb9{bottom:190.873650px;}
.y1b{bottom:190.878000px;}
.y7f{bottom:190.878150px;}
.y48{bottom:194.127150px;}
.yd2{bottom:198.337500px;}
.yb8{bottom:202.875900px;}
.y47{bottom:202.878150px;}
.y1a{bottom:206.127000px;}
.y7e{bottom:206.127150px;}
.ybe{bottom:214.878000px;}
.y7d{bottom:214.878150px;}
.yd1{bottom:216.337500px;}
.y19{bottom:218.127000px;}
.y46{bottom:218.127150px;}
.y18{bottom:230.127000px;}
.y45{bottom:230.127150px;}
.yd0{bottom:245.839500px;}
.ycf{bottom:266.845500px;}
.yce{bottom:296.347500px;}
.y78{bottom:304.921800px;}
.ycd{bottom:314.347500px;}
.y77{bottom:322.921800px;}
.y44{bottom:334.827150px;}
.yb1{bottom:340.921650px;}
.y76{bottom:340.921800px;}
.ycc{bottom:343.851450px;}
.y43{bottom:352.827150px;}
.yb0{bottom:358.921650px;}
.y75{bottom:358.921800px;}
.y3e{bottom:370.827150px;}
.yaf{bottom:376.921650px;}
.y74{bottom:376.921800px;}
.y3d{bottom:388.827150px;}
.yac{bottom:394.921650px;}
.y73{bottom:394.921800px;}
.y3c{bottom:406.827150px;}
.yab{bottom:412.921650px;}
.y72{bottom:412.921800px;}
.y3b{bottom:424.827150px;}
.yaa{bottom:430.921650px;}
.y71{bottom:430.921800px;}
.y3a{bottom:442.827150px;}
.ya9{bottom:448.921650px;}
.y70{bottom:448.921800px;}
.y39{bottom:460.827150px;}
.ya8{bottom:466.921650px;}
.y6f{bottom:466.921800px;}
.y38{bottom:478.827150px;}
.ya7{bottom:484.921650px;}
.y6e{bottom:484.921800px;}
.y37{bottom:496.827150px;}
.ya6{bottom:502.921650px;}
.y6d{bottom:502.921800px;}
.y36{bottom:514.827150px;}
.ya5{bottom:520.921650px;}
.y6c{bottom:520.921800px;}
.y42{bottom:532.827150px;}
.ya4{bottom:538.921650px;}
.y7c{bottom:538.921800px;}
.y35{bottom:550.827150px;}
.ya3{bottom:556.921650px;}
.y6b{bottom:556.921800px;}
.y34{bottom:568.827150px;}
.ya2{bottom:574.921650px;}
.y6a{bottom:574.921800px;}
.y33{bottom:586.827150px;}
.yc4{bottom:589.050000px;}
.ya1{bottom:592.921650px;}
.y69{bottom:592.921800px;}
.y7a{bottom:604.313400px;}
.y32{bottom:604.827150px;}
.y6{bottom:610.394250px;}
.yad{bottom:610.921650px;}
.y68{bottom:610.921800px;}
.y79{bottom:622.313400px;}
.y31{bottom:622.827150px;}
.ya0{bottom:628.921650px;}
.y7b{bottom:628.921800px;}
.y30{bottom:640.827150px;}
.y9f{bottom:646.921650px;}
.y67{bottom:646.921800px;}
.y2f{bottom:658.827150px;}
.yc3{bottom:661.385550px;}
.y9e{bottom:664.921650px;}
.y66{bottom:664.921800px;}
.y2e{bottom:676.827150px;}
.y9d{bottom:682.921650px;}
.y63{bottom:682.921800px;}
.y41{bottom:694.827150px;}
.y9c{bottom:700.921650px;}
.y62{bottom:700.921800px;}
.y2d{bottom:712.827150px;}
.y9b{bottom:718.921650px;}
.y61{bottom:718.921800px;}
.y2c{bottom:730.827150px;}
.y9a{bottom:736.921650px;}
.y60{bottom:736.921800px;}
.y2b{bottom:748.827150px;}
.y99{bottom:754.921650px;}
.y5f{bottom:754.921800px;}
.y2a{bottom:766.827150px;}
.yf{bottom:766.827450px;}
.y98{bottom:772.921650px;}
.y5e{bottom:772.921800px;}
.y29{bottom:784.827150px;}
.ye{bottom:784.827450px;}
.yc2{bottom:785.888100px;}
.y97{bottom:790.921650px;}
.y5d{bottom:790.921800px;}
.y28{bottom:802.827150px;}
.yd{bottom:802.827450px;}
.yc0{bottom:806.386650px;}
.yb7{bottom:808.921650px;}
.y65{bottom:808.921800px;}
.y40{bottom:820.827150px;}
.yc{bottom:820.827450px;}
.y96{bottom:826.921650px;}
.y5c{bottom:826.921800px;}
.y2{bottom:833.553150px;}
.y27{bottom:838.827150px;}
.yb{bottom:838.827450px;}
.ybf{bottom:843.999000px;}
.y95{bottom:844.921650px;}
.y5b{bottom:844.921800px;}
.y26{bottom:856.827150px;}
.ya{bottom:856.827450px;}
.y94{bottom:862.921650px;}
.y5a{bottom:862.921800px;}
.y25{bottom:874.827150px;}
.y9{bottom:874.827450px;}
.y93{bottom:880.921650px;}
.y59{bottom:880.921800px;}
.yc1{bottom:881.983650px;}
.y1{bottom:886.041150px;}
.yc6{bottom:886.770600px;}
.y3f{bottom:892.827150px;}
.ycb{bottom:894.163800px;}
.y92{bottom:898.921650px;}
.y58{bottom:898.921800px;}
.y24{bottom:910.827150px;}
.y8{bottom:910.827450px;}
.y91{bottom:916.921650px;}
.y57{bottom:916.921800px;}
.yca{bottom:918.166800px;}
.y90{bottom:934.921650px;}
.y56{bottom:934.921800px;}
.yc9{bottom:942.169800px;}
.y8f{bottom:952.921650px;}
.y55{bottom:952.921800px;}
.y17{bottom:966.163800px;}
.yc8{bottom:966.172800px;}
.y8e{bottom:970.921650px;}
.y64{bottom:970.921800px;}
.y8d{bottom:988.921650px;}
.y54{bottom:988.921800px;}
.y16{bottom:990.166800px;}
.yc7{bottom:990.175800px;}
.y8c{bottom:1006.921650px;}
.y53{bottom:1006.921800px;}
.y15{bottom:1014.169800px;}
.y8b{bottom:1024.921650px;}
.y52{bottom:1024.921800px;}
.y14{bottom:1038.172800px;}
.y8a{bottom:1042.921650px;}
.y51{bottom:1042.921800px;}
.y89{bottom:1060.921650px;}
.y50{bottom:1060.921800px;}
.y13{bottom:1062.175800px;}
.ybd{bottom:1075.289850px;}
.y88{bottom:1078.921650px;}
.y4f{bottom:1078.921800px;}
.y12{bottom:1086.178800px;}
.y3{bottom:1090.570800px;}
.ybc{bottom:1093.289850px;}
.yae{bottom:1096.921650px;}
.y4e{bottom:1096.921800px;}
.y11{bottom:1110.181800px;}
.ybb{bottom:1111.289850px;}
.y87{bottom:1114.921650px;}
.y4d{bottom:1114.921800px;}
.y5{bottom:1154.008200px;}
.y7{bottom:1193.740200px;}
.y10{bottom:1194.245250px;}
.y4{bottom:1199.386200px;}
.h8{height:17.098224px;}
.h9{height:29.328000px;}
.hd{height:36.068026px;}
.hc{height:36.068216px;}
.h3{height:36.096000px;}
.hf{height:45.085110px;}
.he{height:45.085258px;}
.h6{height:45.120000px;}
.hb{height:46.284960px;}
.ha{height:46.285560px;}
.h4{height:54.144000px;}
.h5{height:63.168000px;}
.h12{height:64.834944px;}
.h11{height:97.882800px;}
.h7{height:99.264000px;}
.h2{height:162.432000px;}
.h10{height:401.872500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:401.872500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:25.511850px;}
.x1{left:60.590550px;}
.x3{left:62.716500px;}
.x4{left:63.778500px;}
.x7{left:76.536300px;}
.x8{left:80.789550px;}
.x12{left:113.709000px;}
.x10{left:140.138550px;}
.x11{left:188.575950px;}
.x13{left:206.257350px;}
.xf{left:297.215850px;}
.x14{left:319.996200px;}
.xd{left:339.534900px;}
.xe{left:446.488050px;}
.x9{left:457.086600px;}
.xa{left:474.096600px;}
.x2{left:623.763750px;}
.xc{left:842.915700px;}
.x6{left:847.493700px;}
.x5{left:855.053550px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v1{vertical-align:-11.544000pt;}
.v4{vertical-align:-1.227733pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760533pt;}
.v5{vertical-align:24.896000pt;}
.ls2{letter-spacing:-5.760000pt;}
.ls1{letter-spacing:-3.840000pt;}
.ls30{letter-spacing:-1.600000pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls31{letter-spacing:-1.226667pt;}
.ls36{letter-spacing:-1.066667pt;}
.ls9{letter-spacing:-0.938667pt;}
.ls4{letter-spacing:-0.784000pt;}
.ls18{letter-spacing:-0.746667pt;}
.ls3b{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.597333pt;}
.ls14{letter-spacing:-0.533333pt;}
.ls42{letter-spacing:-0.522667pt;}
.ls3e{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.373333pt;}
.lse{letter-spacing:-0.346667pt;}
.ls32{letter-spacing:-0.342027pt;}
.ls3c{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.310933pt;}
.ls13{letter-spacing:-0.266667pt;}
.ls8{letter-spacing:-0.224000pt;}
.ls19{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.106667pt;}
.ls2e{letter-spacing:-0.031093pt;}
.ls33{letter-spacing:-0.020211pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.060632pt;}
.ls24{letter-spacing:0.093280pt;}
.ls16{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.121264pt;}
.ls41{letter-spacing:0.130592pt;}
.ls3d{letter-spacing:0.155467pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.161685pt;}
.ls1e{letter-spacing:0.181896pt;}
.ls21{letter-spacing:0.186560pt;}
.ls2a{letter-spacing:0.202107pt;}
.ls28{letter-spacing:0.208000pt;}
.ls34{letter-spacing:0.242528pt;}
.ls26{letter-spacing:0.242667pt;}
.ls20{letter-spacing:0.248747pt;}
.ls2b{letter-spacing:0.262739pt;}
.ls12{letter-spacing:0.277333pt;}
.ls22{letter-spacing:0.279840pt;}
.ls38{letter-spacing:0.282949pt;}
.ls25{letter-spacing:0.303160pt;}
.ls2d{letter-spacing:0.310933pt;}
.ls43{letter-spacing:0.312000pt;}
.ls29{letter-spacing:0.343581pt;}
.lsd{letter-spacing:0.346667pt;}
.ls2f{letter-spacing:0.373120pt;}
.lsf{letter-spacing:0.381333pt;}
.ls1b{letter-spacing:0.404213pt;}
.ls10{letter-spacing:0.416000pt;}
.ls40{letter-spacing:0.424424pt;}
.ls11{letter-spacing:0.450667pt;}
.ls23{letter-spacing:0.466400pt;}
.lsc{letter-spacing:0.485333pt;}
.ls2c{letter-spacing:0.528587pt;}
.ls37{letter-spacing:0.554667pt;}
.ls1f{letter-spacing:0.621867pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.652960pt;}
.ls1a{letter-spacing:0.728000pt;}
.ls39{letter-spacing:1.364267pt;}
.ls5{letter-spacing:28.373333pt;}
.ls6{letter-spacing:28.853333pt;}
.ws8{word-spacing:-29.098667pt;}
.wsf{word-spacing:-13.653333pt;}
.ws3e{word-spacing:-13.600000pt;}
.ws34{word-spacing:-13.013333pt;}
.ws50{word-spacing:-11.274443pt;}
.ws0{word-spacing:-9.792000pt;}
.ws44{word-spacing:-9.498667pt;}
.wsc{word-spacing:-9.429333pt;}
.wsb{word-spacing:-9.394667pt;}
.wsa{word-spacing:-9.360000pt;}
.wsd{word-spacing:-9.325333pt;}
.ws41{word-spacing:-9.290667pt;}
.ws3b{word-spacing:-8.597333pt;}
.ws2d{word-spacing:-8.581760pt;}
.ws35{word-spacing:-8.488480pt;}
.ws37{word-spacing:-8.364107pt;}
.ws3c{word-spacing:-8.333013pt;}
.ws36{word-spacing:-8.270827pt;}
.ws27{word-spacing:-8.239733pt;}
.ws25{word-spacing:-8.208640pt;}
.ws26{word-spacing:-8.146453pt;}
.ws47{word-spacing:-8.115360pt;}
.ws2e{word-spacing:-8.053173pt;}
.wse{word-spacing:-7.959893pt;}
.ws3d{word-spacing:-7.617867pt;}
.ws51{word-spacing:-6.101333pt;}
.ws54{word-spacing:-5.984000pt;}
.ws4b{word-spacing:-5.598355pt;}
.ws21{word-spacing:-5.578144pt;}
.ws31{word-spacing:-5.517512pt;}
.ws2f{word-spacing:-5.477091pt;}
.ws45{word-spacing:-5.456880pt;}
.ws33{word-spacing:-5.436669pt;}
.ws40{word-spacing:-5.416459pt;}
.ws32{word-spacing:-5.376037pt;}
.ws24{word-spacing:-5.355827pt;}
.ws22{word-spacing:-5.335616pt;}
.ws23{word-spacing:-5.295195pt;}
.ws30{word-spacing:-5.234563pt;}
.ws9{word-spacing:-5.173931pt;}
.ws3f{word-spacing:-5.153720pt;}
.ws11{word-spacing:-3.882667pt;}
.ws52{word-spacing:-3.733333pt;}
.ws12{word-spacing:-3.658667pt;}
.ws2{word-spacing:-3.328000pt;}
.ws3{word-spacing:-3.264000pt;}
.ws48{word-spacing:-3.253333pt;}
.ws1d{word-spacing:-3.200000pt;}
.ws1e{word-spacing:-3.146667pt;}
.ws20{word-spacing:-3.093333pt;}
.ws1b{word-spacing:-3.040000pt;}
.ws1a{word-spacing:-2.986667pt;}
.ws4d{word-spacing:-2.933333pt;}
.ws28{word-spacing:-2.877333pt;}
.ws7{word-spacing:-2.773333pt;}
.ws2b{word-spacing:-2.720000pt;}
.ws4{word-spacing:-2.717867pt;}
.ws13{word-spacing:-2.634667pt;}
.ws18{word-spacing:-2.600000pt;}
.ws17{word-spacing:-2.565333pt;}
.ws1f{word-spacing:-2.560000pt;}
.ws4a{word-spacing:-2.530667pt;}
.ws14{word-spacing:-2.496000pt;}
.ws53{word-spacing:-2.461333pt;}
.ws19{word-spacing:-2.426667pt;}
.ws39{word-spacing:-2.392000pt;}
.ws3a{word-spacing:-2.357333pt;}
.ws1{word-spacing:-2.218667pt;}
.ws15{word-spacing:-1.802667pt;}
.ws4e{word-spacing:-0.652960pt;}
.ws2a{word-spacing:-0.621867pt;}
.ws29{word-spacing:-0.485333pt;}
.ws38{word-spacing:-0.466400pt;}
.ws49{word-spacing:-0.416000pt;}
.ws16{word-spacing:-0.381333pt;}
.ws2c{word-spacing:-0.279840pt;}
.ws43{word-spacing:-0.093280pt;}
.ws5{word-spacing:0.000000pt;}
.ws42{word-spacing:0.031093pt;}
.ws6{word-spacing:0.160000pt;}
.ws10{word-spacing:0.224000pt;}
.ws1c{word-spacing:0.266667pt;}
.ws46{word-spacing:0.310933pt;}
.ws55{word-spacing:0.320000pt;}
.ws4f{word-spacing:28.393600pt;}
.ws4c{word-spacing:625.597918pt;}
._13{margin-left:-14.240000pt;}
._e{margin-left:-10.933333pt;}
._d{margin-left:-7.636680pt;}
._c{margin-left:-6.725501pt;}
._0{margin-left:-5.760000pt;}
._f{margin-left:-4.388267pt;}
._1{margin-left:-3.264000pt;}
._7{margin-left:-2.293333pt;}
._2{margin-left:-0.896000pt;}
._9{width:0.910933pt;}
._8{width:1.806933pt;}
._a{width:3.025067pt;}
._1a{width:6.368688pt;}
._16{width:7.585867pt;}
._17{width:13.498773pt;}
._11{width:14.828261pt;}
._10{width:16.913309pt;}
._12{width:17.878088pt;}
._14{width:19.116005pt;}
._18{width:20.352205pt;}
._19{width:22.113733pt;}
._15{width:23.990925pt;}
._b{width:26.421867pt;}
._5{width:28.373333pt;}
._6{width:30.026667pt;}
._4{width:41.653333pt;}
._1b{width:769.910861pt;}
._3{width:1858.816000pt;}
.fs7{font-size:20.210667pt;}
.fs9{font-size:31.093333pt;}
.fs8{font-size:34.666667pt;}
.fsb{font-size:42.633600pt;}
.fsa{font-size:42.633825pt;}
.fs1{font-size:42.666667pt;}
.fse{font-size:43.530667pt;}
.fs3{font-size:52.266667pt;}
.fsd{font-size:53.292093pt;}
.fsc{font-size:53.292267pt;}
.fs5{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.666667pt;}
.fs6{font-size:117.333333pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:23.494133pt;}
.yb6{bottom:41.669467pt;}
.yb5{bottom:55.224133pt;}
.yb4{bottom:65.890800pt;}
.y86{bottom:73.669467pt;}
.y23{bottom:87.224000pt;}
.y85{bottom:87.224133pt;}
.y22{bottom:95.002667pt;}
.yb3{bottom:95.002800pt;}
.y84{bottom:97.890800pt;}
.y83{bottom:105.669467pt;}
.y21{bottom:108.557333pt;}
.yb2{bottom:108.557467pt;}
.y20{bottom:116.336000pt;}
.y82{bottom:119.224133pt;}
.y81{bottom:127.002800pt;}
.y1f{bottom:129.890667pt;}
.y4c{bottom:129.890800pt;}
.y1e{bottom:137.669333pt;}
.yba{bottom:137.669467pt;}
.y4b{bottom:140.557467pt;}
.y80{bottom:148.336133pt;}
.y1d{bottom:151.224000pt;}
.y4a{bottom:151.224133pt;}
.y1c{bottom:159.000667pt;}
.y49{bottom:161.890800pt;}
.yb9{bottom:169.665467pt;}
.y1b{bottom:169.669333pt;}
.y7f{bottom:169.669467pt;}
.y48{bottom:172.557467pt;}
.yd2{bottom:176.300000pt;}
.yb8{bottom:180.334133pt;}
.y47{bottom:180.336133pt;}
.y1a{bottom:183.224000pt;}
.y7e{bottom:183.224133pt;}
.ybe{bottom:191.002667pt;}
.y7d{bottom:191.002800pt;}
.yd1{bottom:192.300000pt;}
.y19{bottom:193.890667pt;}
.y46{bottom:193.890800pt;}
.y18{bottom:204.557333pt;}
.y45{bottom:204.557467pt;}
.yd0{bottom:218.524000pt;}
.ycf{bottom:237.196000pt;}
.yce{bottom:263.420000pt;}
.y78{bottom:271.041600pt;}
.ycd{bottom:279.420000pt;}
.y77{bottom:287.041600pt;}
.y44{bottom:297.624133pt;}
.yb1{bottom:303.041467pt;}
.y76{bottom:303.041600pt;}
.ycc{bottom:305.645733pt;}
.y43{bottom:313.624133pt;}
.yb0{bottom:319.041467pt;}
.y75{bottom:319.041600pt;}
.y3e{bottom:329.624133pt;}
.yaf{bottom:335.041467pt;}
.y74{bottom:335.041600pt;}
.y3d{bottom:345.624133pt;}
.yac{bottom:351.041467pt;}
.y73{bottom:351.041600pt;}
.y3c{bottom:361.624133pt;}
.yab{bottom:367.041467pt;}
.y72{bottom:367.041600pt;}
.y3b{bottom:377.624133pt;}
.yaa{bottom:383.041467pt;}
.y71{bottom:383.041600pt;}
.y3a{bottom:393.624133pt;}
.ya9{bottom:399.041467pt;}
.y70{bottom:399.041600pt;}
.y39{bottom:409.624133pt;}
.ya8{bottom:415.041467pt;}
.y6f{bottom:415.041600pt;}
.y38{bottom:425.624133pt;}
.ya7{bottom:431.041467pt;}
.y6e{bottom:431.041600pt;}
.y37{bottom:441.624133pt;}
.ya6{bottom:447.041467pt;}
.y6d{bottom:447.041600pt;}
.y36{bottom:457.624133pt;}
.ya5{bottom:463.041467pt;}
.y6c{bottom:463.041600pt;}
.y42{bottom:473.624133pt;}
.ya4{bottom:479.041467pt;}
.y7c{bottom:479.041600pt;}
.y35{bottom:489.624133pt;}
.ya3{bottom:495.041467pt;}
.y6b{bottom:495.041600pt;}
.y34{bottom:505.624133pt;}
.ya2{bottom:511.041467pt;}
.y6a{bottom:511.041600pt;}
.y33{bottom:521.624133pt;}
.yc4{bottom:523.600000pt;}
.ya1{bottom:527.041467pt;}
.y69{bottom:527.041600pt;}
.y7a{bottom:537.167467pt;}
.y32{bottom:537.624133pt;}
.y6{bottom:542.572667pt;}
.yad{bottom:543.041467pt;}
.y68{bottom:543.041600pt;}
.y79{bottom:553.167467pt;}
.y31{bottom:553.624133pt;}
.ya0{bottom:559.041467pt;}
.y7b{bottom:559.041600pt;}
.y30{bottom:569.624133pt;}
.y9f{bottom:575.041467pt;}
.y67{bottom:575.041600pt;}
.y2f{bottom:585.624133pt;}
.yc3{bottom:587.898267pt;}
.y9e{bottom:591.041467pt;}
.y66{bottom:591.041600pt;}
.y2e{bottom:601.624133pt;}
.y9d{bottom:607.041467pt;}
.y63{bottom:607.041600pt;}
.y41{bottom:617.624133pt;}
.y9c{bottom:623.041467pt;}
.y62{bottom:623.041600pt;}
.y2d{bottom:633.624133pt;}
.y9b{bottom:639.041467pt;}
.y61{bottom:639.041600pt;}
.y2c{bottom:649.624133pt;}
.y9a{bottom:655.041467pt;}
.y60{bottom:655.041600pt;}
.y2b{bottom:665.624133pt;}
.y99{bottom:671.041467pt;}
.y5f{bottom:671.041600pt;}
.y2a{bottom:681.624133pt;}
.yf{bottom:681.624400pt;}
.y98{bottom:687.041467pt;}
.y5e{bottom:687.041600pt;}
.y29{bottom:697.624133pt;}
.ye{bottom:697.624400pt;}
.yc2{bottom:698.567200pt;}
.y97{bottom:703.041467pt;}
.y5d{bottom:703.041600pt;}
.y28{bottom:713.624133pt;}
.yd{bottom:713.624400pt;}
.yc0{bottom:716.788133pt;}
.yb7{bottom:719.041467pt;}
.y65{bottom:719.041600pt;}
.y40{bottom:729.624133pt;}
.yc{bottom:729.624400pt;}
.y96{bottom:735.041467pt;}
.y5c{bottom:735.041600pt;}
.y2{bottom:740.936133pt;}
.y27{bottom:745.624133pt;}
.yb{bottom:745.624400pt;}
.ybf{bottom:750.221333pt;}
.y95{bottom:751.041467pt;}
.y5b{bottom:751.041600pt;}
.y26{bottom:761.624133pt;}
.ya{bottom:761.624400pt;}
.y94{bottom:767.041467pt;}
.y5a{bottom:767.041600pt;}
.y25{bottom:777.624133pt;}
.y9{bottom:777.624400pt;}
.y93{bottom:783.041467pt;}
.y59{bottom:783.041600pt;}
.yc1{bottom:783.985467pt;}
.y1{bottom:787.592133pt;}
.yc6{bottom:788.240533pt;}
.y3f{bottom:793.624133pt;}
.ycb{bottom:794.812267pt;}
.y92{bottom:799.041467pt;}
.y58{bottom:799.041600pt;}
.y24{bottom:809.624133pt;}
.y8{bottom:809.624400pt;}
.y91{bottom:815.041467pt;}
.y57{bottom:815.041600pt;}
.yca{bottom:816.148267pt;}
.y90{bottom:831.041467pt;}
.y56{bottom:831.041600pt;}
.yc9{bottom:837.484267pt;}
.y8f{bottom:847.041467pt;}
.y55{bottom:847.041600pt;}
.y17{bottom:858.812267pt;}
.yc8{bottom:858.820267pt;}
.y8e{bottom:863.041467pt;}
.y64{bottom:863.041600pt;}
.y8d{bottom:879.041467pt;}
.y54{bottom:879.041600pt;}
.y16{bottom:880.148267pt;}
.yc7{bottom:880.156267pt;}
.y8c{bottom:895.041467pt;}
.y53{bottom:895.041600pt;}
.y15{bottom:901.484267pt;}
.y8b{bottom:911.041467pt;}
.y52{bottom:911.041600pt;}
.y14{bottom:922.820267pt;}
.y8a{bottom:927.041467pt;}
.y51{bottom:927.041600pt;}
.y89{bottom:943.041467pt;}
.y50{bottom:943.041600pt;}
.y13{bottom:944.156267pt;}
.ybd{bottom:955.813200pt;}
.y88{bottom:959.041467pt;}
.y4f{bottom:959.041600pt;}
.y12{bottom:965.492267pt;}
.y3{bottom:969.396267pt;}
.ybc{bottom:971.813200pt;}
.yae{bottom:975.041467pt;}
.y4e{bottom:975.041600pt;}
.y11{bottom:986.828267pt;}
.ybb{bottom:987.813200pt;}
.y87{bottom:991.041467pt;}
.y4d{bottom:991.041600pt;}
.y5{bottom:1025.785067pt;}
.y7{bottom:1061.102400pt;}
.y10{bottom:1061.551333pt;}
.y4{bottom:1066.121067pt;}
.h8{height:15.198421pt;}
.h9{height:26.069333pt;}
.hd{height:32.060467pt;}
.hc{height:32.060636pt;}
.h3{height:32.085333pt;}
.hf{height:40.075654pt;}
.he{height:40.075785pt;}
.h6{height:40.106667pt;}
.hb{height:41.142187pt;}
.ha{height:41.142720pt;}
.h4{height:48.128000pt;}
.h5{height:56.149333pt;}
.h12{height:57.631061pt;}
.h11{height:87.006933pt;}
.h7{height:88.234667pt;}
.h2{height:144.384000pt;}
.h10{height:357.220000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:357.220000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:22.677200pt;}
.x1{left:53.858267pt;}
.x3{left:55.748000pt;}
.x4{left:56.692000pt;}
.x7{left:68.032267pt;}
.x8{left:71.812933pt;}
.x12{left:101.074667pt;}
.x10{left:124.567600pt;}
.x11{left:167.623067pt;}
.x13{left:183.339867pt;}
.xf{left:264.191867pt;}
.x14{left:284.441067pt;}
.xd{left:301.808800pt;}
.xe{left:396.878267pt;}
.x9{left:406.299200pt;}
.xa{left:421.419200pt;}
.x2{left:554.456667pt;}
.xc{left:749.258400pt;}
.x6{left:753.327733pt;}
.x5{left:760.047600pt;}
}




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