
    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_54c2d0e4e43967487c713e46.woff')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_72c5fa6acadbb34c212893ee.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b9c9652b7d859dc0fcf5da86.woff')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_e0a4d960241492684fe36fa9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_720b0795205f732566f22568.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_a6d2b42683dd1d35ca8d2127.woff')format("woff");}.ff6{font-family:ff6;line-height:0.699000;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_248848030224c8352d7a6f91.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_30517841a27f69300802af48.woff')format("woff");}.ff8{font-family:ff8;line-height:0.430000;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_772656af3a25f8fc45a08e2c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.847000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:15.493939px;}
.ls4{letter-spacing:15.547738px;}
.ls2{letter-spacing:29.858112px;}
.ls1{letter-spacing:29.911910px;}
.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;}
}
.ws6{word-spacing:-15.359443px;}
.ws32{word-spacing:-3.093408px;}
.ws75{word-spacing:-2.878214px;}
.wsf{word-spacing:-2.824416px;}
.ws7c{word-spacing:-2.555424px;}
.ws8c{word-spacing:-2.414934px;}
.ws8d{word-spacing:-1.963642px;}
.ws76{word-spacing:-1.856045px;}
.ws68{word-spacing:-1.479456px;}
.wsa{word-spacing:-1.210464px;}
.ws23{word-spacing:-1.049069px;}
.ws1f{word-spacing:-0.741217px;}
.ws6c{word-spacing:-0.672480px;}
.ws43{word-spacing:-0.618682px;}
.ws3b{word-spacing:-0.564883px;}
.ws58{word-spacing:-0.511085px;}
.ws26{word-spacing:-0.457286px;}
.ws88{word-spacing:-0.349690px;}
.ws40{word-spacing:-0.295891px;}
.ws93{word-spacing:-0.242093px;}
.ws73{word-spacing:-0.053798px;}
.ws1e{word-spacing:0.000000px;}
.ws59{word-spacing:0.080698px;}
.ws5f{word-spacing:0.349690px;}
.ws25{word-spacing:0.403488px;}
.ws5d{word-spacing:0.457286px;}
.ws57{word-spacing:0.618682px;}
.ws64{word-spacing:0.780077px;}
.ws86{word-spacing:0.833875px;}
.wsb{word-spacing:0.941472px;}
.ws6e{word-spacing:1.102867px;}
.ws81{word-spacing:1.156666px;}
.ws5a{word-spacing:1.264262px;}
.ws45{word-spacing:1.318061px;}
.ws13{word-spacing:1.371859px;}
.ws4f{word-spacing:1.533254px;}
.ws70{word-spacing:1.587053px;}
.ws9{word-spacing:1.748448px;}
.ws60{word-spacing:1.856045px;}
.ws38{word-spacing:1.909843px;}
.ws6f{word-spacing:1.948685px;}
.ws78{word-spacing:1.963642px;}
.ws3e{word-spacing:2.071238px;}
.wse{word-spacing:2.125037px;}
.ws22{word-spacing:2.232634px;}
.ws47{word-spacing:2.394029px;}
.ws30{word-spacing:2.555424px;}
.ws2c{word-spacing:2.609222px;}
.ws27{word-spacing:2.663021px;}
.ws46{word-spacing:2.824416px;}
.ws7b{word-spacing:2.878214px;}
.ws33{word-spacing:3.039610px;}
.ws14{word-spacing:3.093408px;}
.ws29{word-spacing:3.147206px;}
.ws18{word-spacing:3.254803px;}
.ws61{word-spacing:3.308602px;}
.ws44{word-spacing:3.362400px;}
.ws6a{word-spacing:3.443075px;}
.ws8{word-spacing:3.469997px;}
.ws56{word-spacing:3.577594px;}
.ws48{word-spacing:3.792787px;}
.ws69{word-spacing:3.846586px;}
.ws16{word-spacing:3.900384px;}
.ws37{word-spacing:3.954182px;}
.ws8e{word-spacing:4.115578px;}
.ws89{word-spacing:4.276973px;}
.ws67{word-spacing:4.330771px;}
.ws28{word-spacing:4.384570px;}
.ws1a{word-spacing:4.492166px;}
.wsd{word-spacing:4.545965px;}
.ws4c{word-spacing:4.568273px;}
.ws34{word-spacing:4.569162px;}
.ws3f{word-spacing:4.653562px;}
.ws50{word-spacing:4.707360px;}
.ws10{word-spacing:4.868755px;}
.ws8f{word-spacing:4.877689px;}
.ws2{word-spacing:4.922554px;}
.ws80{word-spacing:5.245344px;}
.ws95{word-spacing:5.299142px;}
.ws54{word-spacing:5.352941px;}
.ws42{word-spacing:5.514336px;}
.ws91{word-spacing:5.568134px;}
.ws94{word-spacing:5.837126px;}
.ws71{word-spacing:5.944723px;}
.ws20{word-spacing:6.106118px;}
.ws87{word-spacing:6.159917px;}
.ws2d{word-spacing:6.213715px;}
.ws31{word-spacing:6.267514px;}
.wsc{word-spacing:6.375110px;}
.ws51{word-spacing:6.482707px;}
.ws83{word-spacing:6.536506px;}
.ws2e{word-spacing:6.644102px;}
.ws2a{word-spacing:6.751699px;}
.ws2f{word-spacing:6.805498px;}
.ws3{word-spacing:6.913094px;}
.ws5c{word-spacing:6.966893px;}
.ws24{word-spacing:7.020691px;}
.ws52{word-spacing:7.074490px;}
.ws4b{word-spacing:7.128288px;}
.ws63{word-spacing:7.235885px;}
.ws90{word-spacing:7.343482px;}
.ws3a{word-spacing:7.558675px;}
.ws41{word-spacing:7.612474px;}
.ws82{word-spacing:7.720070px;}
.ws1d{word-spacing:7.827667px;}
.ws7e{word-spacing:7.881466px;}
.ws74{word-spacing:7.989062px;}
.ws19{word-spacing:8.042861px;}
.ws62{word-spacing:8.096659px;}
.ws79{word-spacing:8.105571px;}
.ws12{word-spacing:8.204256px;}
.ws8a{word-spacing:8.258054px;}
.ws66{word-spacing:8.365651px;}
.ws6b{word-spacing:8.634643px;}
.ws6d{word-spacing:8.796038px;}
.ws35{word-spacing:8.822879px;}
.ws17{word-spacing:8.849837px;}
.ws5b{word-spacing:8.903635px;}
.ws8b{word-spacing:9.011232px;}
.ws5e{word-spacing:9.172627px;}
.ws1c{word-spacing:9.226426px;}
.ws3d{word-spacing:9.387821px;}
.ws39{word-spacing:9.549216px;}
.ws21{word-spacing:9.818208px;}
.ws77{word-spacing:10.033402px;}
.ws7a{word-spacing:10.087200px;}
.ws4{word-spacing:10.194797px;}
.ws53{word-spacing:10.463789px;}
.ws1b{word-spacing:10.517587px;}
.ws2b{word-spacing:10.732781px;}
.ws49{word-spacing:10.786579px;}
.ws3c{word-spacing:10.855249px;}
.ws4e{word-spacing:10.947974px;}
.ws55{word-spacing:11.001773px;}
.ws4a{word-spacing:11.216966px;}
.ws36{word-spacing:11.324563px;}
.ws4d{word-spacing:11.754950px;}
.ws5{word-spacing:11.808749px;}
.ws65{word-spacing:11.916346px;}
.ws11{word-spacing:11.970144px;}
.ws85{word-spacing:12.669523px;}
.ws72{word-spacing:13.046112px;}
.ws84{word-spacing:15.756848px;}
.ws7f{word-spacing:20.253172px;}
.ws7d{word-spacing:20.279242px;}
.ws1{word-spacing:23.312640px;}
.ws15{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws92{word-spacing:36.212429px;}
.ws7{word-spacing:96.750773px;}
._0{margin-left:-8.056807px;}
._9{margin-left:-6.186816px;}
._8{margin-left:-4.680461px;}
._1{margin-left:-2.788895px;}
._4{margin-left:-1.506355px;}
._2{width:1.560154px;}
._3{width:3.120307px;}
._18{width:14.686963px;}
._1b{width:17.645875px;}
._16{width:19.851610px;}
._11{width:21.349343px;}
._7{width:22.756723px;}
._6{width:23.832691px;}
._a{width:24.908659px;}
._10{width:26.791603px;}
._15{width:28.782144px;}
._13{width:31.794854px;}
._1d{width:32.924621px;}
._14{width:34.054387px;}
._17{width:35.991130px;}
._19{width:37.174694px;}
._1c{width:38.250662px;}
._b{width:39.918413px;}
._d{width:41.855155px;}
._e{width:42.931123px;}
._5{width:45.827615px;}
._12{width:47.342592px;}
._1a{width:55.140542px;}
._f{width:68.741940px;}
._c{width:80.697600px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y23{bottom:208.882500px;}
.ya2{bottom:253.714500px;}
.yca{bottom:255.208500px;}
.y4f{bottom:258.477000px;}
.ya1{bottom:270.151500px;}
.yc9{bottom:271.647000px;}
.y4e{bottom:277.905000px;}
.y76{bottom:279.399000px;}
.ya0{bottom:286.590000px;}
.yc8{bottom:288.085500px;}
.y22{bottom:289.645500px;}
.y75{bottom:295.837500px;}
.y4d{bottom:297.331500px;}
.yee{bottom:297.378000px;}
.y9f{bottom:303.028500px;}
.yc7{bottom:304.524000px;}
.y21{bottom:306.082500px;}
.y74{bottom:312.276000px;}
.yed{bottom:313.816500px;}
.y4c{bottom:316.759500px;}
.y9e{bottom:319.467000px;}
.y20{bottom:322.521000px;}
.y73{bottom:328.714500px;}
.yec{bottom:330.255000px;}
.y9d{bottom:335.905500px;}
.y4b{bottom:336.186000px;}
.y1f{bottom:338.959500px;}
.yc6{bottom:339.781500px;}
.y72{bottom:345.153000px;}
.yeb{bottom:346.693500px;}
.y9c{bottom:352.344000px;}
.y1e{bottom:355.398000px;}
.y4a{bottom:355.612500px;}
.yc5{bottom:356.220000px;}
.y71{bottom:361.591500px;}
.yea{bottom:363.132000px;}
.y9b{bottom:368.782500px;}
.y1d{bottom:371.836500px;}
.yc4{bottom:372.658500px;}
.y49{bottom:375.040500px;}
.y70{bottom:378.028500px;}
.ye9{bottom:379.570500px;}
.y9a{bottom:385.221000px;}
.y1c{bottom:388.275000px;}
.yc3{bottom:389.097000px;}
.y48{bottom:394.467000px;}
.ye8{bottom:396.009000px;}
.y99{bottom:401.659500px;}
.y1b{bottom:404.713500px;}
.yc2{bottom:405.535500px;}
.y6f{bottom:410.905500px;}
.ye7{bottom:412.447500px;}
.y47{bottom:413.895000px;}
.y98{bottom:418.098000px;}
.y1a{bottom:421.152000px;}
.yc1{bottom:421.974000px;}
.ye6{bottom:428.886000px;}
.y97{bottom:434.535000px;}
.y6e{bottom:436.030500px;}
.y46{bottom:436.311000px;}
.yc0{bottom:438.412500px;}
.ye5{bottom:445.324500px;}
.y19{bottom:446.275500px;}
.y96{bottom:450.973500px;}
.y6d{bottom:453.963000px;}
.ybf{bottom:454.851000px;}
.y45{bottom:458.727000px;}
.ye4{bottom:461.761500px;}
.y95{bottom:467.412000px;}
.ybe{bottom:479.974500px;}
.y44{bottom:481.143000px;}
.y94{bottom:483.850500px;}
.y18{bottom:486.018000px;}
.y6c{bottom:490.716000px;}
.ye3{bottom:497.020500px;}
.ybd{bottom:497.907000px;}
.y17{bottom:502.456500px;}
.y43{bottom:503.559000px;}
.y6b{bottom:507.154500px;}
.y93{bottom:508.975500px;}
.ye2{bottom:513.459000px;}
.y16{bottom:518.895000px;}
.y6a{bottom:523.593000px;}
.y42{bottom:525.973500px;}
.ye1{bottom:529.897500px;}
.ybc{bottom:534.660000px;}
.y15{bottom:535.332000px;}
.y69{bottom:540.031500px;}
.ye0{bottom:546.336000px;}
.y92{bottom:548.238000px;}
.y41{bottom:548.389500px;}
.ybb{bottom:551.098500px;}
.y14{bottom:551.770500px;}
.y68{bottom:556.470000px;}
.ydf{bottom:562.774500px;}
.y91{bottom:567.048000px;}
.yba{bottom:567.537000px;}
.y13{bottom:568.209000px;}
.y40{bottom:570.805500px;}
.y67{bottom:572.907000px;}
.yde{bottom:579.211500px;}
.yb9{bottom:583.975500px;}
.y12{bottom:584.647500px;}
.y90{bottom:585.858000px;}
.y66{bottom:589.345500px;}
.y3f{bottom:593.221500px;}
.ydd{bottom:595.650000px;}
.yb8{bottom:600.414000px;}
.y11{bottom:601.086000px;}
.y8f{bottom:604.668000px;}
.y65{bottom:605.784000px;}
.ydc{bottom:612.088500px;}
.y3e{bottom:615.637500px;}
.yb7{bottom:616.852500px;}
.y10{bottom:617.524500px;}
.y8e{bottom:623.478000px;}
.ydb{bottom:628.527000px;}
.y64{bottom:630.909000px;}
.yb6{bottom:633.291000px;}
.yf{bottom:633.963000px;}
.y3d{bottom:641.043000px;}
.y8d{bottom:642.288000px;}
.yda{bottom:644.965500px;}
.y63{bottom:648.841500px;}
.yb5{bottom:649.729500px;}
.ye{bottom:650.401500px;}
.y3c{bottom:657.481500px;}
.y8c{bottom:661.098000px;}
.yd9{bottom:661.404000px;}
.yb4{bottom:666.166500px;}
.yd{bottom:666.840000px;}
.y3b{bottom:673.920000px;}
.yd8{bottom:677.842500px;}
.y8b{bottom:679.908000px;}
.yb3{bottom:682.605000px;}
.yc{bottom:683.278500px;}
.y62{bottom:685.594500px;}
.y3a{bottom:690.358500px;}
.yb2{bottom:699.043500px;}
.yb{bottom:699.715500px;}
.y8a{bottom:701.089500px;}
.y61{bottom:705.021000px;}
.y39{bottom:706.795500px;}
.yd7{bottom:713.100000px;}
.yb1{bottom:715.482000px;}
.y89{bottom:717.528000px;}
.y38{bottom:723.234000px;}
.y60{bottom:724.449000px;}
.ya{bottom:729.474000px;}
.yd6{bottom:729.538500px;}
.yb0{bottom:731.920500px;}
.y88{bottom:738.709500px;}
.y37{bottom:739.672500px;}
.y5f{bottom:743.875500px;}
.yd5{bottom:745.977000px;}
.yaf{bottom:748.359000px;}
.y36{bottom:756.111000px;}
.y87{bottom:757.519500px;}
.yd4{bottom:762.415500px;}
.y5e{bottom:763.303500px;}
.yae{bottom:764.797500px;}
.y35{bottom:772.549500px;}
.y86{bottom:776.329500px;}
.y9{bottom:776.640000px;}
.yd3{bottom:778.854000px;}
.yad{bottom:781.236000px;}
.y5d{bottom:782.730000px;}
.y34{bottom:788.988000px;}
.y8{bottom:793.078500px;}
.y85{bottom:795.139500px;}
.yd2{bottom:795.292500px;}
.yac{bottom:797.674500px;}
.y5c{bottom:802.156500px;}
.y33{bottom:805.426500px;}
.y7{bottom:809.517000px;}
.yd1{bottom:811.731000px;}
.y84{bottom:813.949500px;}
.yab{bottom:814.113000px;}
.y5b{bottom:821.584500px;}
.y32{bottom:821.865000px;}
.y6{bottom:825.955500px;}
.yd0{bottom:828.169500px;}
.yaa{bottom:830.550000px;}
.y83{bottom:832.759500px;}
.y31{bottom:838.303500px;}
.y5a{bottom:841.011000px;}
.y5{bottom:842.394000px;}
.ycf{bottom:844.608000px;}
.ya9{bottom:846.988500px;}
.y82{bottom:853.941000px;}
.y30{bottom:854.742000px;}
.y59{bottom:860.439000px;}
.yce{bottom:861.046500px;}
.ya8{bottom:863.427000px;}
.y4{bottom:865.818000px;}
.y2f{bottom:871.179000px;}
.y81{bottom:875.122500px;}
.ycd{bottom:877.483500px;}
.y58{bottom:879.865500px;}
.y2e{bottom:887.617500px;}
.y80{bottom:891.561000px;}
.ycc{bottom:893.922000px;}
.ya7{bottom:896.304000px;}
.y57{bottom:899.293500px;}
.y2d{bottom:904.056000px;}
.y7f{bottom:907.999500px;}
.ycb{bottom:910.360500px;}
.ya6{bottom:912.742500px;}
.y56{bottom:918.720000px;}
.y3{bottom:919.617000px;}
.y2c{bottom:920.494500px;}
.y7e{bottom:924.438000px;}
.yef{bottom:926.799000px;}
.ya5{bottom:929.181000px;}
.y2b{bottom:936.933000px;}
.y55{bottom:938.148000px;}
.y7d{bottom:940.876500px;}
.ya4{bottom:945.619500px;}
.y2a{bottom:953.371500px;}
.y2{bottom:954.585000px;}
.y7c{bottom:957.315000px;}
.y54{bottom:957.574500px;}
.ya3{bottom:962.058000px;}
.y29{bottom:969.810000px;}
.y7b{bottom:978.496500px;}
.y53{bottom:979.990500px;}
.y28{bottom:986.248500px;}
.y7a{bottom:994.933500px;}
.y1{bottom:997.923000px;}
.y52{bottom:1002.406500px;}
.y27{bottom:1002.687000px;}
.y79{bottom:1011.372000px;}
.y26{bottom:1019.125500px;}
.y51{bottom:1021.833000px;}
.y78{bottom:1027.810500px;}
.y25{bottom:1035.562500px;}
.y50{bottom:1041.261000px;}
.y77{bottom:1044.249000px;}
.y24{bottom:1060.687500px;}
.h4{height:37.658880px;}
.h5{height:40.348800px;}
.h8{height:40.468081px;}
.h9{height:44.831700px;}
.h3{height:48.992410px;}
.h7{height:49.853184px;}
.h6{height:59.823654px;}
.h2{height:73.027727px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:238.012500px;}
.x8{left:256.507500px;}
.x5{left:258.747000px;}
.xc{left:270.889500px;}
.x9{left:283.405500px;}
.xd{left:306.306000px;}
.xa{left:309.856500px;}
.xb{left:327.873000px;}
.x1{left:329.527500px;}
.x2{left:413.445000px;}
.x3{left:421.126500px;}
.x4{left:427.995000px;}
.x7{left:454.699500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:13.772390pt;}
.ls4{letter-spacing:13.820211pt;}
.ls2{letter-spacing:26.540544pt;}
.ls1{letter-spacing:26.588365pt;}
.ws6{word-spacing:-13.652838pt;}
.ws32{word-spacing:-2.749696pt;}
.ws75{word-spacing:-2.558413pt;}
.wsf{word-spacing:-2.510592pt;}
.ws7c{word-spacing:-2.271488pt;}
.ws8c{word-spacing:-2.146608pt;}
.ws8d{word-spacing:-1.745459pt;}
.ws76{word-spacing:-1.649818pt;}
.ws68{word-spacing:-1.315072pt;}
.wsa{word-spacing:-1.075968pt;}
.ws23{word-spacing:-0.932506pt;}
.ws1f{word-spacing:-0.658860pt;}
.ws6c{word-spacing:-0.597760pt;}
.ws43{word-spacing:-0.549939pt;}
.ws3b{word-spacing:-0.502118pt;}
.ws58{word-spacing:-0.454298pt;}
.ws26{word-spacing:-0.406477pt;}
.ws88{word-spacing:-0.310835pt;}
.ws40{word-spacing:-0.263014pt;}
.ws93{word-spacing:-0.215194pt;}
.ws73{word-spacing:-0.047821pt;}
.ws1e{word-spacing:0.000000pt;}
.ws59{word-spacing:0.071731pt;}
.ws5f{word-spacing:0.310835pt;}
.ws25{word-spacing:0.358656pt;}
.ws5d{word-spacing:0.406477pt;}
.ws57{word-spacing:0.549939pt;}
.ws64{word-spacing:0.693402pt;}
.ws86{word-spacing:0.741222pt;}
.wsb{word-spacing:0.836864pt;}
.ws6e{word-spacing:0.980326pt;}
.ws81{word-spacing:1.028147pt;}
.ws5a{word-spacing:1.123789pt;}
.ws45{word-spacing:1.171610pt;}
.ws13{word-spacing:1.219430pt;}
.ws4f{word-spacing:1.362893pt;}
.ws70{word-spacing:1.410714pt;}
.ws9{word-spacing:1.554176pt;}
.ws60{word-spacing:1.649818pt;}
.ws38{word-spacing:1.697638pt;}
.ws6f{word-spacing:1.732164pt;}
.ws78{word-spacing:1.745459pt;}
.ws3e{word-spacing:1.841101pt;}
.wse{word-spacing:1.888922pt;}
.ws22{word-spacing:1.984563pt;}
.ws47{word-spacing:2.128026pt;}
.ws30{word-spacing:2.271488pt;}
.ws2c{word-spacing:2.319309pt;}
.ws27{word-spacing:2.367130pt;}
.ws46{word-spacing:2.510592pt;}
.ws7b{word-spacing:2.558413pt;}
.ws33{word-spacing:2.701875pt;}
.ws14{word-spacing:2.749696pt;}
.ws29{word-spacing:2.797517pt;}
.ws18{word-spacing:2.893158pt;}
.ws61{word-spacing:2.940979pt;}
.ws44{word-spacing:2.988800pt;}
.ws6a{word-spacing:3.060511pt;}
.ws8{word-spacing:3.084442pt;}
.ws56{word-spacing:3.180083pt;}
.ws48{word-spacing:3.371366pt;}
.ws69{word-spacing:3.419187pt;}
.ws16{word-spacing:3.467008pt;}
.ws37{word-spacing:3.514829pt;}
.ws8e{word-spacing:3.658291pt;}
.ws89{word-spacing:3.801754pt;}
.ws67{word-spacing:3.849574pt;}
.ws28{word-spacing:3.897395pt;}
.ws1a{word-spacing:3.993037pt;}
.wsd{word-spacing:4.040858pt;}
.ws4c{word-spacing:4.060687pt;}
.ws34{word-spacing:4.061478pt;}
.ws3f{word-spacing:4.136499pt;}
.ws50{word-spacing:4.184320pt;}
.ws10{word-spacing:4.327782pt;}
.ws8f{word-spacing:4.335724pt;}
.ws2{word-spacing:4.375603pt;}
.ws80{word-spacing:4.662528pt;}
.ws95{word-spacing:4.710349pt;}
.ws54{word-spacing:4.758170pt;}
.ws42{word-spacing:4.901632pt;}
.ws91{word-spacing:4.949453pt;}
.ws94{word-spacing:5.188557pt;}
.ws71{word-spacing:5.284198pt;}
.ws20{word-spacing:5.427661pt;}
.ws87{word-spacing:5.475482pt;}
.ws2d{word-spacing:5.523302pt;}
.ws31{word-spacing:5.571123pt;}
.wsc{word-spacing:5.666765pt;}
.ws51{word-spacing:5.762406pt;}
.ws83{word-spacing:5.810227pt;}
.ws2e{word-spacing:5.905869pt;}
.ws2a{word-spacing:6.001510pt;}
.ws2f{word-spacing:6.049331pt;}
.ws3{word-spacing:6.144973pt;}
.ws5c{word-spacing:6.192794pt;}
.ws24{word-spacing:6.240614pt;}
.ws52{word-spacing:6.288435pt;}
.ws4b{word-spacing:6.336256pt;}
.ws63{word-spacing:6.431898pt;}
.ws90{word-spacing:6.527539pt;}
.ws3a{word-spacing:6.718822pt;}
.ws41{word-spacing:6.766643pt;}
.ws82{word-spacing:6.862285pt;}
.ws1d{word-spacing:6.957926pt;}
.ws7e{word-spacing:7.005747pt;}
.ws74{word-spacing:7.101389pt;}
.ws19{word-spacing:7.149210pt;}
.ws62{word-spacing:7.197030pt;}
.ws79{word-spacing:7.204952pt;}
.ws12{word-spacing:7.292672pt;}
.ws8a{word-spacing:7.340493pt;}
.ws66{word-spacing:7.436134pt;}
.ws6b{word-spacing:7.675238pt;}
.ws6d{word-spacing:7.818701pt;}
.ws35{word-spacing:7.842559pt;}
.ws17{word-spacing:7.866522pt;}
.ws5b{word-spacing:7.914342pt;}
.ws8b{word-spacing:8.009984pt;}
.ws5e{word-spacing:8.153446pt;}
.ws1c{word-spacing:8.201267pt;}
.ws3d{word-spacing:8.344730pt;}
.ws39{word-spacing:8.488192pt;}
.ws21{word-spacing:8.727296pt;}
.ws77{word-spacing:8.918579pt;}
.ws7a{word-spacing:8.966400pt;}
.ws4{word-spacing:9.062042pt;}
.ws53{word-spacing:9.301146pt;}
.ws1b{word-spacing:9.348966pt;}
.ws2b{word-spacing:9.540250pt;}
.ws49{word-spacing:9.588070pt;}
.ws3c{word-spacing:9.649110pt;}
.ws4e{word-spacing:9.731533pt;}
.ws55{word-spacing:9.779354pt;}
.ws4a{word-spacing:9.970637pt;}
.ws36{word-spacing:10.066278pt;}
.ws4d{word-spacing:10.448845pt;}
.ws5{word-spacing:10.496666pt;}
.ws65{word-spacing:10.592307pt;}
.ws11{word-spacing:10.640128pt;}
.ws85{word-spacing:11.261798pt;}
.ws72{word-spacing:11.596544pt;}
.ws84{word-spacing:14.006087pt;}
.ws7f{word-spacing:18.002819pt;}
.ws7d{word-spacing:18.025993pt;}
.ws1{word-spacing:20.722347pt;}
.ws15{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws92{word-spacing:32.188825pt;}
.ws7{word-spacing:86.000687pt;}
._0{margin-left:-7.161606pt;}
._9{margin-left:-5.499392pt;}
._8{margin-left:-4.160410pt;}
._1{margin-left:-2.479018pt;}
._4{margin-left:-1.338982pt;}
._2{width:1.386803pt;}
._3{width:2.773606pt;}
._18{width:13.055078pt;}
._1b{width:15.685222pt;}
._16{width:17.645875pt;}
._11{width:18.977194pt;}
._7{width:20.228198pt;}
._6{width:21.184614pt;}
._a{width:22.141030pt;}
._10{width:23.814758pt;}
._15{width:25.584128pt;}
._13{width:28.262093pt;}
._1d{width:29.266330pt;}
._14{width:30.270566pt;}
._17{width:31.992115pt;}
._19{width:33.044173pt;}
._1c{width:34.000589pt;}
._b{width:35.483034pt;}
._d{width:37.204582pt;}
._e{width:38.160998pt;}
._5{width:40.735658pt;}
._12{width:42.082304pt;}
._1a{width:49.013815pt;}
._f{width:61.103947pt;}
._c{width:71.731200pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:185.673333pt;}
.ya2{bottom:225.524000pt;}
.yca{bottom:226.852000pt;}
.y4f{bottom:229.757333pt;}
.ya1{bottom:240.134667pt;}
.yc9{bottom:241.464000pt;}
.y4e{bottom:247.026667pt;}
.y76{bottom:248.354667pt;}
.ya0{bottom:254.746667pt;}
.yc8{bottom:256.076000pt;}
.y22{bottom:257.462667pt;}
.y75{bottom:262.966667pt;}
.y4d{bottom:264.294667pt;}
.yee{bottom:264.336000pt;}
.y9f{bottom:269.358667pt;}
.yc7{bottom:270.688000pt;}
.y21{bottom:272.073333pt;}
.y74{bottom:277.578667pt;}
.yed{bottom:278.948000pt;}
.y4c{bottom:281.564000pt;}
.y9e{bottom:283.970667pt;}
.y20{bottom:286.685333pt;}
.y73{bottom:292.190667pt;}
.yec{bottom:293.560000pt;}
.y9d{bottom:298.582667pt;}
.y4b{bottom:298.832000pt;}
.y1f{bottom:301.297333pt;}
.yc6{bottom:302.028000pt;}
.y72{bottom:306.802667pt;}
.yeb{bottom:308.172000pt;}
.y9c{bottom:313.194667pt;}
.y1e{bottom:315.909333pt;}
.y4a{bottom:316.100000pt;}
.yc5{bottom:316.640000pt;}
.y71{bottom:321.414667pt;}
.yea{bottom:322.784000pt;}
.y9b{bottom:327.806667pt;}
.y1d{bottom:330.521333pt;}
.yc4{bottom:331.252000pt;}
.y49{bottom:333.369333pt;}
.y70{bottom:336.025333pt;}
.ye9{bottom:337.396000pt;}
.y9a{bottom:342.418667pt;}
.y1c{bottom:345.133333pt;}
.yc3{bottom:345.864000pt;}
.y48{bottom:350.637333pt;}
.ye8{bottom:352.008000pt;}
.y99{bottom:357.030667pt;}
.y1b{bottom:359.745333pt;}
.yc2{bottom:360.476000pt;}
.y6f{bottom:365.249333pt;}
.ye7{bottom:366.620000pt;}
.y47{bottom:367.906667pt;}
.y98{bottom:371.642667pt;}
.y1a{bottom:374.357333pt;}
.yc1{bottom:375.088000pt;}
.ye6{bottom:381.232000pt;}
.y97{bottom:386.253333pt;}
.y6e{bottom:387.582667pt;}
.y46{bottom:387.832000pt;}
.yc0{bottom:389.700000pt;}
.ye5{bottom:395.844000pt;}
.y19{bottom:396.689333pt;}
.y96{bottom:400.865333pt;}
.y6d{bottom:403.522667pt;}
.ybf{bottom:404.312000pt;}
.y45{bottom:407.757333pt;}
.ye4{bottom:410.454667pt;}
.y95{bottom:415.477333pt;}
.ybe{bottom:426.644000pt;}
.y44{bottom:427.682667pt;}
.y94{bottom:430.089333pt;}
.y18{bottom:432.016000pt;}
.y6c{bottom:436.192000pt;}
.ye3{bottom:441.796000pt;}
.ybd{bottom:442.584000pt;}
.y17{bottom:446.628000pt;}
.y43{bottom:447.608000pt;}
.y6b{bottom:450.804000pt;}
.y93{bottom:452.422667pt;}
.ye2{bottom:456.408000pt;}
.y16{bottom:461.240000pt;}
.y6a{bottom:465.416000pt;}
.y42{bottom:467.532000pt;}
.ye1{bottom:471.020000pt;}
.ybc{bottom:475.253333pt;}
.y15{bottom:475.850667pt;}
.y69{bottom:480.028000pt;}
.ye0{bottom:485.632000pt;}
.y92{bottom:487.322667pt;}
.y41{bottom:487.457333pt;}
.ybb{bottom:489.865333pt;}
.y14{bottom:490.462667pt;}
.y68{bottom:494.640000pt;}
.ydf{bottom:500.244000pt;}
.y91{bottom:504.042667pt;}
.yba{bottom:504.477333pt;}
.y13{bottom:505.074667pt;}
.y40{bottom:507.382667pt;}
.y67{bottom:509.250667pt;}
.yde{bottom:514.854667pt;}
.yb9{bottom:519.089333pt;}
.y12{bottom:519.686667pt;}
.y90{bottom:520.762667pt;}
.y66{bottom:523.862667pt;}
.y3f{bottom:527.308000pt;}
.ydd{bottom:529.466667pt;}
.yb8{bottom:533.701333pt;}
.y11{bottom:534.298667pt;}
.y8f{bottom:537.482667pt;}
.y65{bottom:538.474667pt;}
.ydc{bottom:544.078667pt;}
.y3e{bottom:547.233333pt;}
.yb7{bottom:548.313333pt;}
.y10{bottom:548.910667pt;}
.y8e{bottom:554.202667pt;}
.ydb{bottom:558.690667pt;}
.y64{bottom:560.808000pt;}
.yb6{bottom:562.925333pt;}
.yf{bottom:563.522667pt;}
.y3d{bottom:569.816000pt;}
.y8d{bottom:570.922667pt;}
.yda{bottom:573.302667pt;}
.y63{bottom:576.748000pt;}
.yb5{bottom:577.537333pt;}
.ye{bottom:578.134667pt;}
.y3c{bottom:584.428000pt;}
.y8c{bottom:587.642667pt;}
.yd9{bottom:587.914667pt;}
.yb4{bottom:592.148000pt;}
.yd{bottom:592.746667pt;}
.y3b{bottom:599.040000pt;}
.yd8{bottom:602.526667pt;}
.y8b{bottom:604.362667pt;}
.yb3{bottom:606.760000pt;}
.yc{bottom:607.358667pt;}
.y62{bottom:609.417333pt;}
.y3a{bottom:613.652000pt;}
.yb2{bottom:621.372000pt;}
.yb{bottom:621.969333pt;}
.y8a{bottom:623.190667pt;}
.y61{bottom:626.685333pt;}
.y39{bottom:628.262667pt;}
.yd7{bottom:633.866667pt;}
.yb1{bottom:635.984000pt;}
.y89{bottom:637.802667pt;}
.y38{bottom:642.874667pt;}
.y60{bottom:643.954667pt;}
.ya{bottom:648.421333pt;}
.yd6{bottom:648.478667pt;}
.yb0{bottom:650.596000pt;}
.y88{bottom:656.630667pt;}
.y37{bottom:657.486667pt;}
.y5f{bottom:661.222667pt;}
.yd5{bottom:663.090667pt;}
.yaf{bottom:665.208000pt;}
.y36{bottom:672.098667pt;}
.y87{bottom:673.350667pt;}
.yd4{bottom:677.702667pt;}
.y5e{bottom:678.492000pt;}
.yae{bottom:679.820000pt;}
.y35{bottom:686.710667pt;}
.y86{bottom:690.070667pt;}
.y9{bottom:690.346667pt;}
.yd3{bottom:692.314667pt;}
.yad{bottom:694.432000pt;}
.y5d{bottom:695.760000pt;}
.y34{bottom:701.322667pt;}
.y8{bottom:704.958667pt;}
.y85{bottom:706.790667pt;}
.yd2{bottom:706.926667pt;}
.yac{bottom:709.044000pt;}
.y5c{bottom:713.028000pt;}
.y33{bottom:715.934667pt;}
.y7{bottom:719.570667pt;}
.yd1{bottom:721.538667pt;}
.y84{bottom:723.510667pt;}
.yab{bottom:723.656000pt;}
.y5b{bottom:730.297333pt;}
.y32{bottom:730.546667pt;}
.y6{bottom:734.182667pt;}
.yd0{bottom:736.150667pt;}
.yaa{bottom:738.266667pt;}
.y83{bottom:740.230667pt;}
.y31{bottom:745.158667pt;}
.y5a{bottom:747.565333pt;}
.y5{bottom:748.794667pt;}
.ycf{bottom:750.762667pt;}
.ya9{bottom:752.878667pt;}
.y82{bottom:759.058667pt;}
.y30{bottom:759.770667pt;}
.y59{bottom:764.834667pt;}
.yce{bottom:765.374667pt;}
.ya8{bottom:767.490667pt;}
.y4{bottom:769.616000pt;}
.y2f{bottom:774.381333pt;}
.y81{bottom:777.886667pt;}
.ycd{bottom:779.985333pt;}
.y58{bottom:782.102667pt;}
.y2e{bottom:788.993333pt;}
.y80{bottom:792.498667pt;}
.ycc{bottom:794.597333pt;}
.ya7{bottom:796.714667pt;}
.y57{bottom:799.372000pt;}
.y2d{bottom:803.605333pt;}
.y7f{bottom:807.110667pt;}
.ycb{bottom:809.209333pt;}
.ya6{bottom:811.326667pt;}
.y56{bottom:816.640000pt;}
.y3{bottom:817.437333pt;}
.y2c{bottom:818.217333pt;}
.y7e{bottom:821.722667pt;}
.yef{bottom:823.821333pt;}
.ya5{bottom:825.938667pt;}
.y2b{bottom:832.829333pt;}
.y55{bottom:833.909333pt;}
.y7d{bottom:836.334667pt;}
.ya4{bottom:840.550667pt;}
.y2a{bottom:847.441333pt;}
.y2{bottom:848.520000pt;}
.y7c{bottom:850.946667pt;}
.y54{bottom:851.177333pt;}
.ya3{bottom:855.162667pt;}
.y29{bottom:862.053333pt;}
.y7b{bottom:869.774667pt;}
.y53{bottom:871.102667pt;}
.y28{bottom:876.665333pt;}
.y7a{bottom:884.385333pt;}
.y1{bottom:887.042667pt;}
.y52{bottom:891.028000pt;}
.y27{bottom:891.277333pt;}
.y79{bottom:898.997333pt;}
.y26{bottom:905.889333pt;}
.y51{bottom:908.296000pt;}
.y78{bottom:913.609333pt;}
.y25{bottom:920.500000pt;}
.y50{bottom:925.565333pt;}
.y77{bottom:928.221333pt;}
.y24{bottom:942.833333pt;}
.h4{height:33.474560pt;}
.h5{height:35.865600pt;}
.h8{height:35.971628pt;}
.h9{height:39.850400pt;}
.h3{height:43.548809pt;}
.h7{height:44.313941pt;}
.h6{height:53.176581pt;}
.h2{height:64.913535pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:211.566667pt;}
.x8{left:228.006667pt;}
.x5{left:229.997333pt;}
.xc{left:240.790667pt;}
.x9{left:251.916000pt;}
.xd{left:272.272000pt;}
.xa{left:275.428000pt;}
.xb{left:291.442667pt;}
.x1{left:292.913333pt;}
.x2{left:367.506667pt;}
.x3{left:374.334667pt;}
.x4{left:380.440000pt;}
.x7{left:404.177333pt;}
}




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