
    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_2035bc6d6b36720d64051080.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_b9866c12cf4699ca19915aa3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_33e14c2a8ee3e474b996d7cd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.911000;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_77d3102e4cc5890d4eff510b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_04792e876100c7ebf1165123.woff')format("woff");}.ff5{font-family:ff5;line-height:0.888000;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_77ae3960557db15de32d0260.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_20bda49e38fff9725d7eedc6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_73d71ae7303fd08eab3d118e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.696000;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_2473b97a2db3bc23e93a6c32.woff')format("woff");}.ff9{font-family:ff9;line-height:0.694000;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_08cc2d5ceafab8715def73a4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.923000;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:-31.236000px;}
.v4{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001200px;}
.ls6{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.990525px;}
.ls8{letter-spacing:2.990915px;}
.ls1{letter-spacing:2.992200px;}
.ls3{letter-spacing:27.476915px;}
.ls0{letter-spacing:31.084200px;}
.ls7{letter-spacing:31.580915px;}
.ls5{letter-spacing:33.080915px;}
.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;}
}
.wsad{word-spacing:-19.510886px;}
.wsaf{word-spacing:-17.932800px;}
.wsb1{word-spacing:-3.514829px;}
.ws63{word-spacing:-3.371366px;}
.ws26{word-spacing:-2.582323px;}
.ws36{word-spacing:-2.367130px;}
.ws19{word-spacing:-2.223667px;}
.ws84{word-spacing:-2.151936px;}
.ws43{word-spacing:-1.865011px;}
.ws44{word-spacing:-1.721549px;}
.ws6d{word-spacing:-1.578086px;}
.ws2b{word-spacing:-1.506355px;}
.wsa0{word-spacing:-1.362893px;}
.ws2a{word-spacing:-1.291162px;}
.ws93{word-spacing:-1.075968px;}
.ws67{word-spacing:-0.932506px;}
.ws65{word-spacing:-0.860774px;}
.ws6b{word-spacing:-0.358656px;}
.wsa2{word-spacing:-0.071731px;}
.wsb{word-spacing:-0.065455px;}
.ws4f{word-spacing:-0.059776px;}
.ws15{word-spacing:0.000000px;}
.ws53{word-spacing:0.071731px;}
.ws96{word-spacing:0.143462px;}
.ws1c{word-spacing:0.430387px;}
.ws17{word-spacing:0.502118px;}
.wsd{word-spacing:0.602182px;}
.ws7d{word-spacing:0.789043px;}
.wsbc{word-spacing:0.932506px;}
.ws8a{word-spacing:1.075968px;}
.ws85{word-spacing:1.291162px;}
.ws83{word-spacing:1.434624px;}
.ws1f{word-spacing:1.506355px;}
.ws9c{word-spacing:1.721549px;}
.wsbb{word-spacing:1.865011px;}
.ws9e{word-spacing:1.936742px;}
.wsa9{word-spacing:2.080205px;}
.ws1b{word-spacing:2.151936px;}
.ws7{word-spacing:2.173093px;}
.ws71{word-spacing:2.223667px;}
.ws5{word-spacing:2.304002px;}
.ws22{word-spacing:2.438861px;}
.ws9f{word-spacing:2.510592px;}
.wsc{word-spacing:2.565820px;}
.ws60{word-spacing:2.725786px;}
.ws41{word-spacing:2.797517px;}
.ws76{word-spacing:2.869248px;}
.ws3f{word-spacing:2.940979px;}
.ws10{word-spacing:2.958548px;}
.ws28{word-spacing:3.012710px;}
.ws78{word-spacing:3.084442px;}
.ws7a{word-spacing:3.099972px;}
.wsb7{word-spacing:3.156173px;}
.ws27{word-spacing:3.227904px;}
.ws74{word-spacing:3.514829px;}
.ws12{word-spacing:3.613094px;}
.ws75{word-spacing:3.730022px;}
.ws4{word-spacing:3.744003px;}
.ws14{word-spacing:3.873485px;}
.ws11{word-spacing:3.940367px;}
.ws81{word-spacing:3.945216px;}
.wsa1{word-spacing:4.016947px;}
.ws5f{word-spacing:4.088678px;}
.ws2f{word-spacing:4.232141px;}
.ws77{word-spacing:4.303872px;}
.ws7c{word-spacing:4.447334px;}
.ws8{word-spacing:4.464004px;}
.ws1d{word-spacing:4.519066px;}
.ws1{word-spacing:4.648169px;}
.ws20{word-spacing:4.662528px;}
.wsa{word-spacing:4.856731px;}
.ws1a{word-spacing:4.877722px;}
.ws2e{word-spacing:4.949453px;}
.ws31{word-spacing:4.981688px;}
.ws3b{word-spacing:5.236378px;}
.ws25{word-spacing:5.308109px;}
.ws8c{word-spacing:5.379840px;}
.ws4e{word-spacing:5.451571px;}
.wsb2{word-spacing:5.479680px;}
.wsbd{word-spacing:5.480160px;}
.wsba{word-spacing:5.482800px;}
.wsb5{word-spacing:5.484036px;}
.ws42{word-spacing:5.595034px;}
.ws73{word-spacing:5.666765px;}
.ws92{word-spacing:5.810227px;}
.ws21{word-spacing:5.953690px;}
.ws3{word-spacing:5.969460px;}
.ws37{word-spacing:6.025421px;}
.ws59{word-spacing:6.097152px;}
.ws39{word-spacing:6.168883px;}
.wsb6{word-spacing:6.312346px;}
.ws94{word-spacing:6.384077px;}
.wse{word-spacing:6.427642px;}
.ws1e{word-spacing:6.455808px;}
.ws3c{word-spacing:6.527539px;}
.wsbe{word-spacing:6.599270px;}
.ws47{word-spacing:6.671002px;}
.ws70{word-spacing:6.742733px;}
.wsf{word-spacing:7.016733px;}
.ws18{word-spacing:7.101389px;}
.ws6e{word-spacing:7.173120px;}
.ws7e{word-spacing:7.244851px;}
.wsa3{word-spacing:7.316582px;}
.ws46{word-spacing:7.388314px;}
.ws6{word-spacing:7.540370px;}
.ws5c{word-spacing:7.603507px;}
.ws9{word-spacing:7.605825px;}
.ws6f{word-spacing:7.746970px;}
.ws23{word-spacing:7.818701px;}
.ws2c{word-spacing:7.890432px;}
.ws45{word-spacing:7.962163px;}
.wsb8{word-spacing:8.033894px;}
.ws3d{word-spacing:8.105626px;}
.ws2{word-spacing:8.129461px;}
.ws32{word-spacing:8.177357px;}
.ws48{word-spacing:8.392550px;}
.ws24{word-spacing:8.536013px;}
.ws64{word-spacing:8.679475px;}
.wsac{word-spacing:8.751206px;}
.ws38{word-spacing:8.822938px;}
.ws91{word-spacing:8.894669px;}
.ws9a{word-spacing:8.966400px;}
.ws50{word-spacing:9.038131px;}
.wsa6{word-spacing:9.109862px;}
.ws5b{word-spacing:9.253325px;}
.ws4d{word-spacing:9.396787px;}
.ws5e{word-spacing:9.468518px;}
.ws40{word-spacing:9.540250px;}
.ws51{word-spacing:9.611981px;}
.ws29{word-spacing:9.683712px;}
.wsb3{word-spacing:9.898906px;}
.ws4c{word-spacing:9.970637px;}
.wsaa{word-spacing:9.997845px;}
.ws9b{word-spacing:10.042368px;}
.ws95{word-spacing:10.185830px;}
.ws57{word-spacing:10.257562px;}
.ws98{word-spacing:10.329293px;}
.wsa7{word-spacing:10.401024px;}
.ws4b{word-spacing:10.472755px;}
.ws6c{word-spacing:10.528320px;}
.ws35{word-spacing:10.544486px;}
.ws7b{word-spacing:10.616640px;}
.ws79{word-spacing:10.618320px;}
.ws8f{word-spacing:10.903142px;}
.wsb9{word-spacing:10.974874px;}
.ws68{word-spacing:11.261798px;}
.ws88{word-spacing:11.405261px;}
.ws33{word-spacing:11.476992px;}
.wsa8{word-spacing:11.620454px;}
.wsab{word-spacing:11.692186px;}
.ws61{word-spacing:12.122573px;}
.wsb4{word-spacing:12.337766px;}
.ws6a{word-spacing:12.378480px;}
.ws49{word-spacing:13.055078px;}
.ws3a{word-spacing:13.085042px;}
.ws69{word-spacing:13.270272px;}
.ws13{word-spacing:13.284271px;}
.ws34{word-spacing:13.342003px;}
.ws54{word-spacing:13.600800px;}
.ws5d{word-spacing:13.628928px;}
.ws30{word-spacing:13.700659px;}
.ws62{word-spacing:13.844122px;}
.ws56{word-spacing:14.038831px;}
.ws55{word-spacing:14.050082px;}
.wsc0{word-spacing:14.131046px;}
.ws2d{word-spacing:14.202778px;}
.ws72{word-spacing:14.620320px;}
.ws5a{word-spacing:14.776627px;}
.ws52{word-spacing:15.323040px;}
.ws58{word-spacing:15.350477px;}
.wsc1{word-spacing:16.569907px;}
.wsc2{word-spacing:16.713370px;}
.ws82{word-spacing:17.079514px;}
.ws90{word-spacing:17.808000px;}
.ws66{word-spacing:18.534140px;}
.ws97{word-spacing:19.590140px;}
.ws4a{word-spacing:20.553842px;}
.ws86{word-spacing:20.725016px;}
.ws9d{word-spacing:21.156887px;}
.wsa5{word-spacing:23.327265px;}
.wsae{word-spacing:23.342705px;}
.ws7f{word-spacing:24.129514px;}
.ws8d{word-spacing:24.743265px;}
.ws8b{word-spacing:24.754518px;}
.ws87{word-spacing:26.497016px;}
.ws89{word-spacing:26.499642px;}
.wsa4{word-spacing:26.727514px;}
.ws80{word-spacing:29.396638px;}
.ws99{word-spacing:29.733514px;}
.ws8e{word-spacing:36.798106px;}
.ws3e{word-spacing:38.631358px;}
.ws0{word-spacing:46.366650px;}
.wsb0{word-spacing:51.908705px;}
.ws16{word-spacing:116.100658px;}
.wsbf{word-spacing:946.694705px;}
._1a{margin-left:-9.709486px;}
._6{margin-left:-5.742301px;}
._0{margin-left:-3.843225px;}
._1{margin-left:-2.324084px;}
._3{margin-left:-1.031804px;}
._10{width:1.059200px;}
._2{width:2.324084px;}
._b{width:3.843225px;}
._16{width:5.863121px;}
._c{width:18.822260px;}
._f{width:20.945510px;}
._5{width:22.927706px;}
._9{width:24.676384px;}
._18{width:25.768268px;}
._1e{width:27.042662px;}
._8{width:28.046850px;}
._7{width:29.585479px;}
._22{width:30.729640px;}
._d{width:31.733876px;}
._11{width:33.632952px;}
._e{width:34.678660px;}
._4{width:36.687749px;}
._12{width:38.074908px;}
._a{width:39.338215px;}
._17{width:41.643602px;}
._14{width:43.683150px;}
._13{width:45.291073px;}
._1f{width:47.284069px;}
._1c{width:50.369629px;}
._23{width:52.272250px;}
._21{width:53.296282px;}
._20{width:54.358757px;}
._1b{width:58.604390px;}
._15{width:60.856744px;}
._1d{width:66.167293px;}
._19{width:116.203950px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs5{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:169.011000px;}
.ya3{bottom:213.841500px;}
.y8f{bottom:213.843000px;}
.y71{bottom:214.630500px;}
.y3f{bottom:220.507500px;}
.y61{bottom:228.004500px;}
.y8e{bottom:235.510500px;}
.y70{bottom:236.299500px;}
.y19{bottom:242.421000px;}
.ybe{bottom:243.745500px;}
.y3e{bottom:246.253500px;}
.ye7{bottom:249.672000px;}
.y60{bottom:251.359500px;}
.ycb{bottom:254.100000px;}
.y8d{bottom:257.179500px;}
.y6f{bottom:257.967000px;}
.ybd{bottom:265.413000px;}
.ya2{bottom:268.191000px;}
.ye6{bottom:271.341000px;}
.yca{bottom:272.032500px;}
.y3d{bottom:273.010500px;}
.y5f{bottom:278.116500px;}
.y8c{bottom:278.848500px;}
.y6e{bottom:279.636000px;}
.y18{bottom:282.022500px;}
.ybc{bottom:287.082000px;}
.ya1{bottom:289.860000px;}
.yc9{bottom:289.965000px;}
.ye5{bottom:293.010000px;}
.y3c{bottom:294.679500px;}
.y5e{bottom:299.785500px;}
.y8b{bottom:300.517500px;}
.y6d{bottom:301.305000px;}
.y17{bottom:302.346000px;}
.ya0{bottom:311.529000px;}
.ye4{bottom:314.679000px;}
.y3b{bottom:316.347000px;}
.yc8{bottom:316.720500px;}
.y5d{bottom:321.453000px;}
.y8a{bottom:322.186500px;}
.y16{bottom:322.669500px;}
.y6c{bottom:322.974000px;}
.ybb{bottom:326.509500px;}
.y9f{bottom:333.198000px;}
.y3a{bottom:338.016000px;}
.yc7{bottom:338.389500px;}
.y15{bottom:342.993000px;}
.y5c{bottom:343.122000px;}
.y89{bottom:343.854000px;}
.y6b{bottom:344.643000px;}
.ye3{bottom:351.291000px;}
.y9e{bottom:354.867000px;}
.y39{bottom:359.685000px;}
.y14{bottom:363.316500px;}
.y5b{bottom:364.791000px;}
.y88{bottom:365.523000px;}
.y6a{bottom:366.312000px;}
.ye2{bottom:372.960000px;}
.yc6{bottom:377.817000px;}
.y38{bottom:381.354000px;}
.y13{bottom:383.641500px;}
.yba{bottom:386.410500px;}
.y5a{bottom:386.460000px;}
.y87{bottom:387.192000px;}
.y69{bottom:387.979500px;}
.ye1{bottom:394.629000px;}
.y9d{bottom:398.203500px;}
.y37{bottom:403.023000px;}
.y12{bottom:403.965000px;}
.yb9{bottom:408.078000px;}
.y59{bottom:408.129000px;}
.y86{bottom:408.861000px;}
.y68{bottom:409.648500px;}
.y11{bottom:424.288500px;}
.y36{bottom:424.692000px;}
.yb8{bottom:429.747000px;}
.y58{bottom:429.796500px;}
.y85{bottom:430.530000px;}
.y9c{bottom:430.884000px;}
.ye0{bottom:431.242500px;}
.yc5{bottom:437.718000px;}
.y10{bottom:444.612000px;}
.y35{bottom:446.359500px;}
.yb7{bottom:451.416000px;}
.y57{bottom:451.465500px;}
.y84{bottom:452.199000px;}
.y9b{bottom:452.553000px;}
.ydf{bottom:452.910000px;}
.yc4{bottom:459.387000px;}
.yf{bottom:464.935500px;}
.y34{bottom:468.028500px;}
.yb6{bottom:473.085000px;}
.y56{bottom:473.134500px;}
.y83{bottom:473.866500px;}
.y9a{bottom:474.222000px;}
.yde{bottom:474.579000px;}
.y67{bottom:479.139000px;}
.yc3{bottom:481.054500px;}
.ye{bottom:485.260500px;}
.y33{bottom:489.697500px;}
.yb5{bottom:494.754000px;}
.y55{bottom:494.803500px;}
.y82{bottom:495.535500px;}
.y99{bottom:495.891000px;}
.y66{bottom:500.806500px;}
.yc2{bottom:502.723500px;}
.yd{bottom:505.584000px;}
.ydd{bottom:511.192500px;}
.y32{bottom:511.366500px;}
.yb4{bottom:516.423000px;}
.y54{bottom:516.472500px;}
.y81{bottom:517.204500px;}
.y98{bottom:517.558500px;}
.y65{bottom:522.475500px;}
.yc1{bottom:524.392500px;}
.yc{bottom:525.907500px;}
.ydc{bottom:532.860000px;}
.y31{bottom:533.035500px;}
.yb3{bottom:538.090500px;}
.y53{bottom:538.141500px;}
.y80{bottom:538.873500px;}
.y97{bottom:539.227500px;}
.y64{bottom:544.144500px;}
.yb{bottom:546.231000px;}
.ydb{bottom:554.529000px;}
.y30{bottom:554.704500px;}
.yb2{bottom:559.759500px;}
.y52{bottom:559.809000px;}
.y7f{bottom:560.542500px;}
.y96{bottom:560.896500px;}
.y63{bottom:565.813500px;}
.ya{bottom:566.554500px;}
.yc0{bottom:576.198000px;}
.y2f{bottom:576.372000px;}
.yb1{bottom:581.428500px;}
.y51{bottom:581.478000px;}
.y7e{bottom:582.211500px;}
.y95{bottom:582.565500px;}
.y9{bottom:586.878000px;}
.y62{bottom:587.482500px;}
.yda{bottom:591.142500px;}
.ybf{bottom:597.867000px;}
.y2e{bottom:598.041000px;}
.yb0{bottom:603.097500px;}
.y50{bottom:603.147000px;}
.y7d{bottom:603.879000px;}
.y94{bottom:604.234500px;}
.y8{bottom:607.203000px;}
.yd9{bottom:612.811500px;}
.y2d{bottom:619.710000px;}
.y4f{bottom:624.816000px;}
.y7c{bottom:625.548000px;}
.y93{bottom:625.903500px;}
.y7{bottom:627.526500px;}
.yd8{bottom:634.479000px;}
.y2c{bottom:641.379000px;}
.yaf{bottom:644.193000px;}
.y4e{bottom:646.485000px;}
.y7b{bottom:647.217000px;}
.y92{bottom:647.571000px;}
.y6{bottom:657.868500px;}
.y2b{bottom:663.048000px;}
.yae{bottom:665.862000px;}
.y4d{bottom:668.154000px;}
.y7a{bottom:668.886000px;}
.yd7{bottom:671.092500px;}
.y2a{bottom:684.717000px;}
.y91{bottom:686.998500px;}
.yad{bottom:687.531000px;}
.y79{bottom:690.555000px;}
.yd6{bottom:692.761500px;}
.y29{bottom:706.384500px;}
.y4c{bottom:707.580000px;}
.y78{bottom:712.224000px;}
.y28{bottom:728.053500px;}
.yac{bottom:728.626500px;}
.yd5{bottom:729.373500px;}
.y77{bottom:733.891500px;}
.y90{bottom:745.812000px;}
.y27{bottom:749.722500px;}
.yab{bottom:750.295500px;}
.yd4{bottom:751.042500px;}
.y76{bottom:755.560500px;}
.y5{bottom:761.317500px;}
.y4b{bottom:767.481000px;}
.y26{bottom:771.391500px;}
.yaa{bottom:771.964500px;}
.yec{bottom:772.711500px;}
.y75{bottom:777.229500px;}
.yd3{bottom:787.656000px;}
.y4a{bottom:789.150000px;}
.y25{bottom:793.060500px;}
.ya9{bottom:793.633500px;}
.y74{bottom:798.898500px;}
.yd2{bottom:809.323500px;}
.y49{bottom:810.819000px;}
.y24{bottom:814.728000px;}
.ya8{bottom:815.301000px;}
.y73{bottom:820.567500px;}
.y4{bottom:827.781000px;}
.yeb{bottom:830.992500px;}
.y48{bottom:832.486500px;}
.y23{bottom:836.397000px;}
.ya7{bottom:836.970000px;}
.yd1{bottom:845.937000px;}
.yea{bottom:852.661500px;}
.y47{bottom:854.155500px;}
.y22{bottom:858.066000px;}
.ya6{bottom:858.639000px;}
.y72{bottom:859.993500px;}
.y3{bottom:864.430500px;}
.yd0{bottom:867.606000px;}
.ye9{bottom:874.330500px;}
.y46{bottom:875.824500px;}
.y21{bottom:879.735000px;}
.ya5{bottom:880.308000px;}
.ycf{bottom:889.273500px;}
.y45{bottom:897.493500px;}
.y20{bottom:901.404000px;}
.ye8{bottom:910.942500px;}
.y2{bottom:917.668500px;}
.y44{bottom:919.162500px;}
.ya4{bottom:921.403500px;}
.y1f{bottom:923.073000px;}
.yce{bottom:925.887000px;}
.y43{bottom:940.831500px;}
.y1e{bottom:944.740500px;}
.ycd{bottom:947.556000px;}
.y1{bottom:955.027500px;}
.y42{bottom:962.499000px;}
.y1d{bottom:966.409500px;}
.ycc{bottom:969.225000px;}
.y41{bottom:984.168000px;}
.y1c{bottom:988.078500px;}
.y40{bottom:1005.837000px;}
.y1b{bottom:1027.506000px;}
.ha{height:28.202047px;}
.hc{height:41.484266px;}
.h3{height:42.141798px;}
.hb{height:45.425492px;}
.h5{height:45.687311px;}
.h6{height:46.145493px;}
.hd{height:49.781453px;}
.h7{height:53.798400px;}
.h9{height:58.306905px;}
.h4{height:64.557900px;}
.h8{height:72.304680px;}
.h2{height:73.377798px;}
.h1{height:86.782500px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:137.701500px;}
.xc{left:156.157500px;}
.x1{left:157.774500px;}
.xb{left:164.040000px;}
.x8{left:181.599000px;}
.x7{left:206.145000px;}
.x3{left:274.176000px;}
.x4{left:282.180000px;}
.x2{left:375.285000px;}
.x5{left:380.277000px;}
.x6{left:422.998500px;}
.xd{left:450.220500px;}
.xa{left:454.611000px;}
@media print{
.v2{vertical-align:-27.765333pt;}
.v4{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001067pt;}
.ls6{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.658245pt;}
.ls8{letter-spacing:2.658591pt;}
.ls1{letter-spacing:2.659733pt;}
.ls3{letter-spacing:24.423925pt;}
.ls0{letter-spacing:27.630400pt;}
.ls7{letter-spacing:28.071925pt;}
.ls5{letter-spacing:29.405258pt;}
.wsad{word-spacing:-17.343010pt;}
.wsaf{word-spacing:-15.940267pt;}
.wsb1{word-spacing:-3.124292pt;}
.ws63{word-spacing:-2.996770pt;}
.ws26{word-spacing:-2.295398pt;}
.ws36{word-spacing:-2.104115pt;}
.ws19{word-spacing:-1.976593pt;}
.ws84{word-spacing:-1.912832pt;}
.ws43{word-spacing:-1.657788pt;}
.ws44{word-spacing:-1.530266pt;}
.ws6d{word-spacing:-1.402743pt;}
.ws2b{word-spacing:-1.338982pt;}
.wsa0{word-spacing:-1.211460pt;}
.ws2a{word-spacing:-1.147699pt;}
.ws93{word-spacing:-0.956416pt;}
.ws67{word-spacing:-0.828894pt;}
.ws65{word-spacing:-0.765133pt;}
.ws6b{word-spacing:-0.318805pt;}
.wsa2{word-spacing:-0.063761pt;}
.wsb{word-spacing:-0.058182pt;}
.ws4f{word-spacing:-0.053134pt;}
.ws15{word-spacing:0.000000pt;}
.ws53{word-spacing:0.063761pt;}
.ws96{word-spacing:0.127522pt;}
.ws1c{word-spacing:0.382566pt;}
.ws17{word-spacing:0.446327pt;}
.wsd{word-spacing:0.535273pt;}
.ws7d{word-spacing:0.701372pt;}
.wsbc{word-spacing:0.828894pt;}
.ws8a{word-spacing:0.956416pt;}
.ws85{word-spacing:1.147699pt;}
.ws83{word-spacing:1.275221pt;}
.ws1f{word-spacing:1.338982pt;}
.ws9c{word-spacing:1.530266pt;}
.wsbb{word-spacing:1.657788pt;}
.ws9e{word-spacing:1.721549pt;}
.wsa9{word-spacing:1.849071pt;}
.ws1b{word-spacing:1.912832pt;}
.ws7{word-spacing:1.931638pt;}
.ws71{word-spacing:1.976593pt;}
.ws5{word-spacing:2.048002pt;}
.ws22{word-spacing:2.167876pt;}
.ws9f{word-spacing:2.231637pt;}
.wsc{word-spacing:2.280729pt;}
.ws60{word-spacing:2.422921pt;}
.ws41{word-spacing:2.486682pt;}
.ws76{word-spacing:2.550443pt;}
.ws3f{word-spacing:2.614204pt;}
.ws10{word-spacing:2.629820pt;}
.ws28{word-spacing:2.677965pt;}
.ws78{word-spacing:2.741726pt;}
.ws7a{word-spacing:2.755531pt;}
.wsb7{word-spacing:2.805487pt;}
.ws27{word-spacing:2.869248pt;}
.ws74{word-spacing:3.124292pt;}
.ws12{word-spacing:3.211639pt;}
.ws75{word-spacing:3.315575pt;}
.ws4{word-spacing:3.328003pt;}
.ws14{word-spacing:3.443098pt;}
.ws11{word-spacing:3.502548pt;}
.ws81{word-spacing:3.506859pt;}
.wsa1{word-spacing:3.570620pt;}
.ws5f{word-spacing:3.634381pt;}
.ws2f{word-spacing:3.761903pt;}
.ws77{word-spacing:3.825664pt;}
.ws7c{word-spacing:3.953186pt;}
.ws8{word-spacing:3.968003pt;}
.ws1d{word-spacing:4.016947pt;}
.ws1{word-spacing:4.131706pt;}
.ws20{word-spacing:4.144469pt;}
.wsa{word-spacing:4.317095pt;}
.ws1a{word-spacing:4.335753pt;}
.ws2e{word-spacing:4.399514pt;}
.ws31{word-spacing:4.428167pt;}
.ws3b{word-spacing:4.654558pt;}
.ws25{word-spacing:4.718319pt;}
.ws8c{word-spacing:4.782080pt;}
.ws4e{word-spacing:4.845841pt;}
.wsb2{word-spacing:4.870827pt;}
.wsbd{word-spacing:4.871253pt;}
.wsba{word-spacing:4.873600pt;}
.wsb5{word-spacing:4.874699pt;}
.ws42{word-spacing:4.973363pt;}
.ws73{word-spacing:5.037124pt;}
.ws92{word-spacing:5.164646pt;}
.ws21{word-spacing:5.292169pt;}
.ws3{word-spacing:5.306186pt;}
.ws37{word-spacing:5.355930pt;}
.ws59{word-spacing:5.419691pt;}
.ws39{word-spacing:5.483452pt;}
.wsb6{word-spacing:5.610974pt;}
.ws94{word-spacing:5.674735pt;}
.wse{word-spacing:5.713459pt;}
.ws1e{word-spacing:5.738496pt;}
.ws3c{word-spacing:5.802257pt;}
.wsbe{word-spacing:5.866018pt;}
.ws47{word-spacing:5.929779pt;}
.ws70{word-spacing:5.993540pt;}
.wsf{word-spacing:6.237096pt;}
.ws18{word-spacing:6.312346pt;}
.ws6e{word-spacing:6.376107pt;}
.ws7e{word-spacing:6.439868pt;}
.wsa3{word-spacing:6.503629pt;}
.ws46{word-spacing:6.567390pt;}
.ws6{word-spacing:6.702551pt;}
.ws5c{word-spacing:6.758673pt;}
.ws9{word-spacing:6.760733pt;}
.ws6f{word-spacing:6.886195pt;}
.ws23{word-spacing:6.949956pt;}
.ws2c{word-spacing:7.013717pt;}
.ws45{word-spacing:7.077478pt;}
.wsb8{word-spacing:7.141239pt;}
.ws3d{word-spacing:7.205001pt;}
.ws2{word-spacing:7.226188pt;}
.ws32{word-spacing:7.268762pt;}
.ws48{word-spacing:7.460045pt;}
.ws24{word-spacing:7.587567pt;}
.ws64{word-spacing:7.715089pt;}
.wsac{word-spacing:7.778850pt;}
.ws38{word-spacing:7.842611pt;}
.ws91{word-spacing:7.906372pt;}
.ws9a{word-spacing:7.970133pt;}
.ws50{word-spacing:8.033894pt;}
.wsa6{word-spacing:8.097655pt;}
.ws5b{word-spacing:8.225178pt;}
.ws4d{word-spacing:8.352700pt;}
.ws5e{word-spacing:8.416461pt;}
.ws40{word-spacing:8.480222pt;}
.ws51{word-spacing:8.543983pt;}
.ws29{word-spacing:8.607744pt;}
.wsb3{word-spacing:8.799027pt;}
.ws4c{word-spacing:8.862788pt;}
.wsaa{word-spacing:8.886973pt;}
.ws9b{word-spacing:8.926549pt;}
.ws95{word-spacing:9.054071pt;}
.ws57{word-spacing:9.117833pt;}
.ws98{word-spacing:9.181594pt;}
.wsa7{word-spacing:9.245355pt;}
.ws4b{word-spacing:9.309116pt;}
.ws6c{word-spacing:9.358507pt;}
.ws35{word-spacing:9.372877pt;}
.ws7b{word-spacing:9.437013pt;}
.ws79{word-spacing:9.438507pt;}
.ws8f{word-spacing:9.691682pt;}
.wsb9{word-spacing:9.755443pt;}
.ws68{word-spacing:10.010487pt;}
.ws88{word-spacing:10.138010pt;}
.ws33{word-spacing:10.201771pt;}
.wsa8{word-spacing:10.329293pt;}
.wsab{word-spacing:10.393054pt;}
.ws61{word-spacing:10.775620pt;}
.wsb4{word-spacing:10.966903pt;}
.ws6a{word-spacing:11.003093pt;}
.ws49{word-spacing:11.604514pt;}
.ws3a{word-spacing:11.631148pt;}
.ws69{word-spacing:11.795797pt;}
.ws13{word-spacing:11.808241pt;}
.ws34{word-spacing:11.859558pt;}
.ws54{word-spacing:12.089600pt;}
.ws5d{word-spacing:12.114603pt;}
.ws30{word-spacing:12.178364pt;}
.ws62{word-spacing:12.305886pt;}
.ws56{word-spacing:12.478961pt;}
.ws55{word-spacing:12.488962pt;}
.wsc0{word-spacing:12.560930pt;}
.ws2d{word-spacing:12.624691pt;}
.ws72{word-spacing:12.995840pt;}
.ws5a{word-spacing:13.134780pt;}
.ws52{word-spacing:13.620480pt;}
.ws58{word-spacing:13.644868pt;}
.wsc1{word-spacing:14.728806pt;}
.wsc2{word-spacing:14.856329pt;}
.ws82{word-spacing:15.181790pt;}
.ws90{word-spacing:15.829333pt;}
.ws66{word-spacing:16.474791pt;}
.ws97{word-spacing:17.413458pt;}
.ws4a{word-spacing:18.270082pt;}
.ws86{word-spacing:18.422236pt;}
.ws9d{word-spacing:18.806122pt;}
.wsa5{word-spacing:20.735346pt;}
.wsae{word-spacing:20.749071pt;}
.ws7f{word-spacing:21.448457pt;}
.ws8d{word-spacing:21.994013pt;}
.ws8b{word-spacing:22.004016pt;}
.ws87{word-spacing:23.552903pt;}
.ws89{word-spacing:23.555238pt;}
.wsa4{word-spacing:23.757790pt;}
.ws80{word-spacing:26.130345pt;}
.ws99{word-spacing:26.429790pt;}
.ws8e{word-spacing:32.709427pt;}
.ws3e{word-spacing:34.338985pt;}
.ws0{word-spacing:41.214800pt;}
.wsb0{word-spacing:46.141071pt;}
.ws16{word-spacing:103.200585pt;}
.wsbf{word-spacing:841.506405pt;}
._1a{margin-left:-8.630654pt;}
._6{margin-left:-5.104267pt;}
._0{margin-left:-3.416200pt;}
._1{margin-left:-2.065853pt;}
._3{margin-left:-0.917159pt;}
._10{width:0.941511pt;}
._2{width:2.065853pt;}
._b{width:3.416200pt;}
._16{width:5.211663pt;}
._c{width:16.730898pt;}
._f{width:18.618231pt;}
._5{width:20.380183pt;}
._9{width:21.934564pt;}
._18{width:22.905127pt;}
._1e{width:24.037922pt;}
._8{width:24.930533pt;}
._7{width:26.298204pt;}
._22{width:27.315235pt;}
._d{width:28.207890pt;}
._11{width:29.895957pt;}
._e{width:30.825476pt;}
._4{width:32.611333pt;}
._12{width:33.844363pt;}
._a{width:34.967302pt;}
._17{width:37.016535pt;}
._14{width:38.829467pt;}
._13{width:40.258732pt;}
._1f{width:42.030284pt;}
._1c{width:44.773004pt;}
._23{width:46.464222pt;}
._21{width:47.374473pt;}
._20{width:48.318895pt;}
._1b{width:52.092791pt;}
._15{width:54.094883pt;}
._1d{width:58.815372pt;}
._19{width:103.292400pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs5{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:150.232000pt;}
.ya3{bottom:190.081333pt;}
.y8f{bottom:190.082667pt;}
.y71{bottom:190.782667pt;}
.y3f{bottom:196.006667pt;}
.y61{bottom:202.670667pt;}
.y8e{bottom:209.342667pt;}
.y70{bottom:210.044000pt;}
.y19{bottom:215.485333pt;}
.ybe{bottom:216.662667pt;}
.y3e{bottom:218.892000pt;}
.ye7{bottom:221.930667pt;}
.y60{bottom:223.430667pt;}
.ycb{bottom:225.866667pt;}
.y8d{bottom:228.604000pt;}
.y6f{bottom:229.304000pt;}
.ybd{bottom:235.922667pt;}
.ya2{bottom:238.392000pt;}
.ye6{bottom:241.192000pt;}
.yca{bottom:241.806667pt;}
.y3d{bottom:242.676000pt;}
.y5f{bottom:247.214667pt;}
.y8c{bottom:247.865333pt;}
.y6e{bottom:248.565333pt;}
.y18{bottom:250.686667pt;}
.ybc{bottom:255.184000pt;}
.ya1{bottom:257.653333pt;}
.yc9{bottom:257.746667pt;}
.ye5{bottom:260.453333pt;}
.y3c{bottom:261.937333pt;}
.y5e{bottom:266.476000pt;}
.y8b{bottom:267.126667pt;}
.y6d{bottom:267.826667pt;}
.y17{bottom:268.752000pt;}
.ya0{bottom:276.914667pt;}
.ye4{bottom:279.714667pt;}
.y3b{bottom:281.197333pt;}
.yc8{bottom:281.529333pt;}
.y5d{bottom:285.736000pt;}
.y8a{bottom:286.388000pt;}
.y16{bottom:286.817333pt;}
.y6c{bottom:287.088000pt;}
.ybb{bottom:290.230667pt;}
.y9f{bottom:296.176000pt;}
.y3a{bottom:300.458667pt;}
.yc7{bottom:300.790667pt;}
.y15{bottom:304.882667pt;}
.y5c{bottom:304.997333pt;}
.y89{bottom:305.648000pt;}
.y6b{bottom:306.349333pt;}
.ye3{bottom:312.258667pt;}
.y9e{bottom:315.437333pt;}
.y39{bottom:319.720000pt;}
.y14{bottom:322.948000pt;}
.y5b{bottom:324.258667pt;}
.y88{bottom:324.909333pt;}
.y6a{bottom:325.610667pt;}
.ye2{bottom:331.520000pt;}
.yc6{bottom:335.837333pt;}
.y38{bottom:338.981333pt;}
.y13{bottom:341.014667pt;}
.yba{bottom:343.476000pt;}
.y5a{bottom:343.520000pt;}
.y87{bottom:344.170667pt;}
.y69{bottom:344.870667pt;}
.ye1{bottom:350.781333pt;}
.y9d{bottom:353.958667pt;}
.y37{bottom:358.242667pt;}
.y12{bottom:359.080000pt;}
.yb9{bottom:362.736000pt;}
.y59{bottom:362.781333pt;}
.y86{bottom:363.432000pt;}
.y68{bottom:364.132000pt;}
.y11{bottom:377.145333pt;}
.y36{bottom:377.504000pt;}
.yb8{bottom:381.997333pt;}
.y58{bottom:382.041333pt;}
.y85{bottom:382.693333pt;}
.y9c{bottom:383.008000pt;}
.ye0{bottom:383.326667pt;}
.yc5{bottom:389.082667pt;}
.y10{bottom:395.210667pt;}
.y35{bottom:396.764000pt;}
.yb7{bottom:401.258667pt;}
.y57{bottom:401.302667pt;}
.y84{bottom:401.954667pt;}
.y9b{bottom:402.269333pt;}
.ydf{bottom:402.586667pt;}
.yc4{bottom:408.344000pt;}
.yf{bottom:413.276000pt;}
.y34{bottom:416.025333pt;}
.yb6{bottom:420.520000pt;}
.y56{bottom:420.564000pt;}
.y83{bottom:421.214667pt;}
.y9a{bottom:421.530667pt;}
.yde{bottom:421.848000pt;}
.y67{bottom:425.901333pt;}
.yc3{bottom:427.604000pt;}
.ye{bottom:431.342667pt;}
.y33{bottom:435.286667pt;}
.yb5{bottom:439.781333pt;}
.y55{bottom:439.825333pt;}
.y82{bottom:440.476000pt;}
.y99{bottom:440.792000pt;}
.y66{bottom:445.161333pt;}
.yc2{bottom:446.865333pt;}
.yd{bottom:449.408000pt;}
.ydd{bottom:454.393333pt;}
.y32{bottom:454.548000pt;}
.yb4{bottom:459.042667pt;}
.y54{bottom:459.086667pt;}
.y81{bottom:459.737333pt;}
.y98{bottom:460.052000pt;}
.y65{bottom:464.422667pt;}
.yc1{bottom:466.126667pt;}
.yc{bottom:467.473333pt;}
.ydc{bottom:473.653333pt;}
.y31{bottom:473.809333pt;}
.yb3{bottom:478.302667pt;}
.y53{bottom:478.348000pt;}
.y80{bottom:478.998667pt;}
.y97{bottom:479.313333pt;}
.y64{bottom:483.684000pt;}
.yb{bottom:485.538667pt;}
.ydb{bottom:492.914667pt;}
.y30{bottom:493.070667pt;}
.yb2{bottom:497.564000pt;}
.y52{bottom:497.608000pt;}
.y7f{bottom:498.260000pt;}
.y96{bottom:498.574667pt;}
.y63{bottom:502.945333pt;}
.ya{bottom:503.604000pt;}
.yc0{bottom:512.176000pt;}
.y2f{bottom:512.330667pt;}
.yb1{bottom:516.825333pt;}
.y51{bottom:516.869333pt;}
.y7e{bottom:517.521333pt;}
.y95{bottom:517.836000pt;}
.y9{bottom:521.669333pt;}
.y62{bottom:522.206667pt;}
.yda{bottom:525.460000pt;}
.ybf{bottom:531.437333pt;}
.y2e{bottom:531.592000pt;}
.yb0{bottom:536.086667pt;}
.y50{bottom:536.130667pt;}
.y7d{bottom:536.781333pt;}
.y94{bottom:537.097333pt;}
.y8{bottom:539.736000pt;}
.yd9{bottom:544.721333pt;}
.y2d{bottom:550.853333pt;}
.y4f{bottom:555.392000pt;}
.y7c{bottom:556.042667pt;}
.y93{bottom:556.358667pt;}
.y7{bottom:557.801333pt;}
.yd8{bottom:563.981333pt;}
.y2c{bottom:570.114667pt;}
.yaf{bottom:572.616000pt;}
.y4e{bottom:574.653333pt;}
.y7b{bottom:575.304000pt;}
.y92{bottom:575.618667pt;}
.y6{bottom:584.772000pt;}
.y2b{bottom:589.376000pt;}
.yae{bottom:591.877333pt;}
.y4d{bottom:593.914667pt;}
.y7a{bottom:594.565333pt;}
.yd7{bottom:596.526667pt;}
.y2a{bottom:608.637333pt;}
.y91{bottom:610.665333pt;}
.yad{bottom:611.138667pt;}
.y79{bottom:613.826667pt;}
.yd6{bottom:615.788000pt;}
.y29{bottom:627.897333pt;}
.y4c{bottom:628.960000pt;}
.y78{bottom:633.088000pt;}
.y28{bottom:647.158667pt;}
.yac{bottom:647.668000pt;}
.yd5{bottom:648.332000pt;}
.y77{bottom:652.348000pt;}
.y90{bottom:662.944000pt;}
.y27{bottom:666.420000pt;}
.yab{bottom:666.929333pt;}
.yd4{bottom:667.593333pt;}
.y76{bottom:671.609333pt;}
.y5{bottom:676.726667pt;}
.y4b{bottom:682.205333pt;}
.y26{bottom:685.681333pt;}
.yaa{bottom:686.190667pt;}
.yec{bottom:686.854667pt;}
.y75{bottom:690.870667pt;}
.yd3{bottom:700.138667pt;}
.y4a{bottom:701.466667pt;}
.y25{bottom:704.942667pt;}
.ya9{bottom:705.452000pt;}
.y74{bottom:710.132000pt;}
.yd2{bottom:719.398667pt;}
.y49{bottom:720.728000pt;}
.y24{bottom:724.202667pt;}
.ya8{bottom:724.712000pt;}
.y73{bottom:729.393333pt;}
.y4{bottom:735.805333pt;}
.yeb{bottom:738.660000pt;}
.y48{bottom:739.988000pt;}
.y23{bottom:743.464000pt;}
.ya7{bottom:743.973333pt;}
.yd1{bottom:751.944000pt;}
.yea{bottom:757.921333pt;}
.y47{bottom:759.249333pt;}
.y22{bottom:762.725333pt;}
.ya6{bottom:763.234667pt;}
.y72{bottom:764.438667pt;}
.y3{bottom:768.382667pt;}
.yd0{bottom:771.205333pt;}
.ye9{bottom:777.182667pt;}
.y46{bottom:778.510667pt;}
.y21{bottom:781.986667pt;}
.ya5{bottom:782.496000pt;}
.ycf{bottom:790.465333pt;}
.y45{bottom:797.772000pt;}
.y20{bottom:801.248000pt;}
.ye8{bottom:809.726667pt;}
.y2{bottom:815.705333pt;}
.y44{bottom:817.033333pt;}
.ya4{bottom:819.025333pt;}
.y1f{bottom:820.509333pt;}
.yce{bottom:823.010667pt;}
.y43{bottom:836.294667pt;}
.y1e{bottom:839.769333pt;}
.ycd{bottom:842.272000pt;}
.y1{bottom:848.913333pt;}
.y42{bottom:855.554667pt;}
.y1d{bottom:859.030667pt;}
.ycc{bottom:861.533333pt;}
.y41{bottom:874.816000pt;}
.y1c{bottom:878.292000pt;}
.y40{bottom:894.077333pt;}
.y1b{bottom:913.338667pt;}
.ha{height:25.068486pt;}
.hc{height:36.874903pt;}
.h3{height:37.459376pt;}
.hb{height:40.378215pt;}
.h5{height:40.610943pt;}
.h6{height:41.018216pt;}
.hd{height:44.250180pt;}
.h7{height:47.820800pt;}
.h9{height:51.828360pt;}
.h4{height:57.384800pt;}
.h8{height:64.270827pt;}
.h2{height:65.224709pt;}
.h1{height:77.140000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:122.401333pt;}
.xc{left:138.806667pt;}
.x1{left:140.244000pt;}
.xb{left:145.813333pt;}
.x8{left:161.421333pt;}
.x7{left:183.240000pt;}
.x3{left:243.712000pt;}
.x4{left:250.826667pt;}
.x2{left:333.586667pt;}
.x5{left:338.024000pt;}
.x6{left:375.998667pt;}
.xd{left:400.196000pt;}
.xa{left:404.098667pt;}
}




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