
    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_f420fb3e90887c8b7ca8dc1e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_ba42ae0a56329d0d5b4d57aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.897000;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_61d2f6926914c60c8ecaae22.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2a24d2d5c45e9c21462d8b4e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.846000;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_b9704860d5a414d5b519ffed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_aeb75324c843fbba82b48ded.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a05387d3d316d375f94510a2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6251bd3a61438d2c2a095d82.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854000;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_c0be0b28034378a1c353d821.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.883000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.002706px;}
.ls2{letter-spacing:35.117518px;}
.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;}
}
.ws5b{word-spacing:-35.119596px;}
.ws1{word-spacing:-27.364958px;}
.ws0{word-spacing:-27.216236px;}
.ws64{word-spacing:-19.195269px;}
.ws2e{word-spacing:-18.902509px;}
.ws32{word-spacing:-18.119301px;}
.ws17{word-spacing:-17.473720px;}
.ws65{word-spacing:-16.541215px;}
.ws51{word-spacing:-16.326021px;}
.ws3d{word-spacing:-16.039096px;}
.ws18{word-spacing:-15.961767px;}
.ws13{word-spacing:-15.752128px;}
.ws2a{word-spacing:-15.393516px;}
.ws63{word-spacing:-15.250053px;}
.ws66{word-spacing:-15.034860px;}
.wsa{word-spacing:-14.891397px;}
.wsc{word-spacing:-14.317548px;}
.wsb{word-spacing:-13.743698px;}
.wsd{word-spacing:-13.528504px;}
.ws67{word-spacing:-13.273773px;}
.ws69{word-spacing:-13.241580px;}
.ws19{word-spacing:-13.126810px;}
.ws3b{word-spacing:-13.098117px;}
.ws4a{word-spacing:-12.667730px;}
.ws55{word-spacing:-12.595999px;}
.ws2b{word-spacing:-12.554502px;}
.ws2d{word-spacing:-12.524268px;}
.ws3f{word-spacing:-12.452536px;}
.ws50{word-spacing:-12.309074px;}
.ws57{word-spacing:-12.237343px;}
.ws4e{word-spacing:-12.165612px;}
.ws12{word-spacing:-12.093880px;}
.ws24{word-spacing:-12.089256px;}
.ws15{word-spacing:-12.022149px;}
.ws1f{word-spacing:-11.950418px;}
.ws1e{word-spacing:-11.878687px;}
.ws29{word-spacing:-11.806956px;}
.ws6{word-spacing:-11.735224px;}
.wsf{word-spacing:-11.663493px;}
.ws4c{word-spacing:-11.591762px;}
.ws4b{word-spacing:-11.584216px;}
.ws22{word-spacing:-11.520031px;}
.ws38{word-spacing:-11.448300px;}
.ws20{word-spacing:-11.376568px;}
.ws62{word-spacing:-11.314543px;}
.ws30{word-spacing:-11.304837px;}
.ws45{word-spacing:-11.233106px;}
.ws60{word-spacing:-11.161375px;}
.ws5d{word-spacing:-11.156534px;}
.ws5f{word-spacing:-11.149995px;}
.ws3c{word-spacing:-11.089644px;}
.ws2c{word-spacing:-11.024435px;}
.ws44{word-spacing:-10.730988px;}
.ws36{word-spacing:-10.444063px;}
.ws47{word-spacing:-10.300600px;}
.ws26{word-spacing:-10.223808px;}
.ws54{word-spacing:-10.085407px;}
.ws10{word-spacing:-9.941944px;}
.ws21{word-spacing:-9.845478px;}
.ws39{word-spacing:-9.798482px;}
.ws3a{word-spacing:-9.655020px;}
.ws1d{word-spacing:-9.368095px;}
.ws1a{word-spacing:-9.346161px;}
.ws1c{word-spacing:-9.296364px;}
.ws56{word-spacing:-8.937708px;}
.ws37{word-spacing:-8.722514px;}
.ws49{word-spacing:-8.650783px;}
.ws53{word-spacing:-8.363858px;}
.ws4d{word-spacing:-8.148664px;}
.ws6c{word-spacing:-7.933471px;}
.ws1b{word-spacing:-7.893220px;}
.ws42{word-spacing:-7.861740px;}
.ws43{word-spacing:-7.790008px;}
.ws28{word-spacing:-7.609770px;}
.ws52{word-spacing:-7.574815px;}
.ws11{word-spacing:-7.503084px;}
.ws68{word-spacing:-7.434572px;}
.ws6b{word-spacing:-7.144428px;}
.ws5a{word-spacing:-6.929234px;}
.ws14{word-spacing:-6.570578px;}
.ws23{word-spacing:-6.432808px;}
.ws9{word-spacing:-6.283653px;}
.ws27{word-spacing:-5.996728px;}
.ws5c{word-spacing:-5.638072px;}
.ws61{word-spacing:-5.630645px;}
.ws5e{word-spacing:-5.424880px;}
.ws48{word-spacing:-5.351148px;}
.ws33{word-spacing:-5.279416px;}
.ws16{word-spacing:-5.073682px;}
.ws46{word-spacing:-4.992492px;}
.ws25{word-spacing:-4.463377px;}
.ws58{word-spacing:-4.392314px;}
.ws3e{word-spacing:-4.346911px;}
.ws6a{word-spacing:-4.308021px;}
.wse{word-spacing:-3.916524px;}
.ws34{word-spacing:-3.486136px;}
.ws59{word-spacing:-1.447663px;}
.ws31{word-spacing:-1.119007px;}
.ws40{word-spacing:-0.071731px;}
.ws5{word-spacing:-0.065455px;}
.ws7{word-spacing:0.000000px;}
.ws35{word-spacing:0.817736px;}
.ws41{word-spacing:23.316758px;}
.ws4f{word-spacing:23.330638px;}
.ws3{word-spacing:32.227229px;}
.ws4{word-spacing:32.330521px;}
.ws2{word-spacing:38.680200px;}
.ws2f{word-spacing:47.342460px;}
.ws8{word-spacing:56.810820px;}
._13{margin-left:-9.502901px;}
._4{margin-left:-8.160100px;}
._7{margin-left:-5.810227px;}
._1{margin-left:-4.461678px;}
._3{margin-left:-3.223350px;}
._6{margin-left:-1.936742px;}
._5{width:1.936742px;}
._2{width:3.223350px;}
._0{width:4.461678px;}
._1e{width:17.789338px;}
._8{width:21.878016px;}
._9{width:23.456102px;}
._c{width:28.979405px;}
._1b{width:30.127104px;}
._d{width:31.203072px;}
._a{width:32.633142px;}
._19{width:34.359245px;}
._18{width:35.650406px;}
._1c{width:37.085030px;}
._11{width:38.806579px;}
._17{width:40.886784px;}
._1a{width:43.038720px;}
._b{width:44.688538px;}
._f{width:47.127398px;}
._1d{width:49.207603px;}
._15{width:51.503002px;}
._16{width:56.667648px;}
._14{width:63.912499px;}
._10{width:78.904320px;}
._e{width:94.684920px;}
._12{width:113.621640px;}
.fc1{color:rgb(0,74,14);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y25{bottom:133.750500px;}
.y8{bottom:178.582500px;}
.y7d{bottom:184.123500px;}
.y43{bottom:202.419000px;}
.y7c{bottom:207.958500px;}
.y7{bottom:213.252000px;}
.y8e{bottom:220.960500px;}
.y61{bottom:221.235000px;}
.y42{bottom:226.254000px;}
.y7b{bottom:231.795000px;}
.y6{bottom:235.609500px;}
.y8d{bottom:244.797000px;}
.y60{bottom:245.070000px;}
.ya2{bottom:250.090500px;}
.y24{bottom:257.797500px;}
.y41{bottom:260.923500px;}
.y7a{bottom:266.464500px;}
.y8c{bottom:268.632000px;}
.y5f{bottom:268.906500px;}
.ya1{bottom:273.925500px;}
.y23{bottom:281.634000px;}
.y40{bottom:284.760000px;}
.y8b{bottom:292.468500px;}
.ya0{bottom:297.762000px;}
.y79{bottom:301.135500px;}
.y5e{bottom:303.576000px;}
.y22{bottom:305.469000px;}
.y8a{bottom:316.303500px;}
.y3f{bottom:319.429500px;}
.y9f{bottom:321.597000px;}
.y78{bottom:324.970500px;}
.y5d{bottom:327.412500px;}
.y21{bottom:329.305500px;}
.y3e{bottom:343.266000px;}
.y77{bottom:348.807000px;}
.y89{bottom:352.095000px;}
.y20{bottom:353.140500px;}
.y5c{bottom:362.082000px;}
.y9e{bottom:363.763500px;}
.y3d{bottom:367.101000px;}
.y1f{bottom:376.977000px;}
.y76{bottom:383.476500px;}
.y5b{bottom:385.917000px;}
.y1e{bottom:400.812000px;}
.y3c{bottom:401.772000px;}
.y75{bottom:407.313000px;}
.y88{bottom:407.586000px;}
.y5a{bottom:409.753500px;}
.y3b{bottom:425.607000px;}
.y9d{bottom:427.431000px;}
.y74{bottom:431.148000px;}
.y87{bottom:431.422500px;}
.y1d{bottom:436.603500px;}
.y59{bottom:444.423000px;}
.y3a{bottom:449.443500px;}
.y9c{bottom:451.267500px;}
.y73{bottom:454.984500px;}
.y86{bottom:455.257500px;}
.y39{bottom:473.278500px;}
.y9b{bottom:475.102500px;}
.y72{bottom:478.819500px;}
.y58{bottom:479.094000px;}
.y1c{bottom:486.342000px;}
.y85{bottom:489.928500px;}
.y38{bottom:497.115000px;}
.y9a{bottom:498.939000px;}
.y71{bottom:502.656000px;}
.y57{bottom:502.929000px;}
.y1b{bottom:510.177000px;}
.y84{bottom:513.763500px;}
.y37{bottom:520.950000px;}
.y99{bottom:522.774000px;}
.y70{bottom:526.491000px;}
.y1a{bottom:534.013500px;}
.y56{bottom:537.600000px;}
.y36{bottom:544.786500px;}
.y98{bottom:546.610500px;}
.y6f{bottom:550.327500px;}
.y19{bottom:557.848500px;}
.y55{bottom:561.435000px;}
.y35{bottom:568.621500px;}
.y97{bottom:570.445500px;}
.y83{bottom:572.269500px;}
.y6e{bottom:584.997000px;}
.y18{bottom:593.640000px;}
.y96{bottom:594.282000px;}
.y54{bottom:596.106000px;}
.y34{bottom:603.292500px;}
.y6d{bottom:608.833500px;}
.y95{bottom:618.117000px;}
.y53{bottom:619.941000px;}
.y33{bottom:627.127500px;}
.y6c{bottom:632.668500px;}
.y17{bottom:641.560500px;}
.y94{bottom:641.953500px;}
.y82{bottom:643.777500px;}
.y32{bottom:650.964000px;}
.y52{bottom:654.612000px;}
.y6b{bottom:656.505000px;}
.y93{bottom:665.788500px;}
.y31{bottom:674.799000px;}
.y51{bottom:678.447000px;}
.y6a{bottom:680.340000px;}
.y92{bottom:689.625000px;}
.y30{bottom:698.635500px;}
.y50{bottom:702.283500px;}
.y16{bottom:705.619500px;}
.y81{bottom:713.116500px;}
.y91{bottom:713.460000px;}
.y69{bottom:716.131500px;}
.y15{bottom:729.456000px;}
.y2f{bottom:734.425500px;}
.y4f{bottom:736.953000px;}
.y90{bottom:755.626500px;}
.y4e{bottom:760.788000px;}
.y14{bottom:764.125500px;}
.y68{bottom:771.622500px;}
.y2e{bottom:782.346000px;}
.y4d{bottom:784.624500px;}
.y13{bottom:787.962000px;}
.y67{bottom:795.459000px;}
.y12{bottom:811.797000px;}
.y4c{bottom:819.294000px;}
.y80{bottom:830.128500px;}
.y11{bottom:835.633500px;}
.y5{bottom:837.051000px;}
.y4b{bottom:843.130500px;}
.y2d{bottom:845.154000px;}
.y66{bottom:853.965000px;}
.y4a{bottom:866.965500px;}
.y2c{bottom:868.990500px;}
.y10{bottom:870.303000px;}
.y65{bottom:877.800000px;}
.y7f{bottom:888.634500px;}
.y2b{bottom:892.825500px;}
.yf{bottom:894.139500px;}
.y49{bottom:901.636500px;}
.y4{bottom:901.981500px;}
.y7e{bottom:912.471000px;}
.ye{bottom:917.974500px;}
.y48{bottom:925.471500px;}
.y2a{bottom:928.617000px;}
.y64{bottom:936.306000px;}
.y47{bottom:949.308000px;}
.yd{bottom:952.645500px;}
.y3{bottom:959.802000px;}
.y63{bottom:960.142500px;}
.yc{bottom:976.480500px;}
.y29{bottom:982.857000px;}
.y46{bottom:983.977500px;}
.y62{bottom:994.812000px;}
.yb{bottom:1000.317000px;}
.y28{bottom:1006.692000px;}
.y8f{bottom:1007.814000px;}
.y2{bottom:1009.116000px;}
.y45{bottom:1018.648500px;}
.ya{bottom:1024.152000px;}
.y27{bottom:1030.528500px;}
.y44{bottom:1042.483500px;}
.y1{bottom:1058.431500px;}
.y9{bottom:1066.318500px;}
.y26{bottom:1066.320000px;}
.hb{height:44.832000px;}
.ha{height:48.705485px;}
.h5{height:49.090950px;}
.h9{height:51.359539px;}
.h6{height:53.798400px;}
.h8{height:61.631275px;}
.h4{height:71.684926px;}
.h7{height:73.957358px;}
.h3{height:86.038650px;}
.h2{height:106.485382px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:146.343000px;}
.x9{left:148.819500px;}
.xc{left:170.280000px;}
.x1{left:173.925000px;}
.x2{left:180.669000px;}
.xa{left:192.717000px;}
.x1d{left:220.399500px;}
.x4{left:234.046500px;}
.x25{left:238.855500px;}
.x26{left:246.319500px;}
.x23{left:266.539500px;}
.x13{left:282.261000px;}
.x1e{left:284.995500px;}
.x1f{left:294.223500px;}
.xd{left:303.451500px;}
.x19{left:312.679500px;}
.xe{left:314.409000px;}
.x14{left:315.706500px;}
.xf{left:331.152000px;}
.x16{left:340.362000px;}
.x3{left:341.422500px;}
.x27{left:347.826000px;}
.x24{left:355.935000px;}
.x7{left:358.798500px;}
.x1a{left:368.046000px;}
.x6{left:370.042500px;}
.x8{left:375.229500px;}
.x17{left:377.274000px;}
.x5{left:379.945500px;}
.x18{left:386.502000px;}
.x20{left:395.730000px;}
.x11{left:397.447500px;}
.x15{left:398.757000px;}
.x12{left:403.756500px;}
.x2b{left:417.103500px;}
.x21{left:430.126500px;}
.xb{left:442.066500px;}
.x2f{left:485.640000px;}
.x22{left:531.633000px;}
.x2d{left:541.278000px;}
.x1b{left:547.081500px;}
.x1c{left:667.044000px;}
.x28{left:668.751000px;}
.x2c{left:671.785500px;}
.x2e{left:735.063000px;}
.x10{left:738.190500px;}
.x29{left:742.575000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002405pt;}
.ls2{letter-spacing:31.215572pt;}
.ws5b{word-spacing:-31.217418pt;}
.ws1{word-spacing:-24.324407pt;}
.ws0{word-spacing:-24.192210pt;}
.ws64{word-spacing:-17.062461pt;}
.ws2e{word-spacing:-16.802230pt;}
.ws32{word-spacing:-16.106045pt;}
.ws17{word-spacing:-15.532196pt;}
.ws65{word-spacing:-14.703302pt;}
.ws51{word-spacing:-14.512019pt;}
.ws3d{word-spacing:-14.256975pt;}
.ws18{word-spacing:-14.188237pt;}
.ws13{word-spacing:-14.001891pt;}
.ws2a{word-spacing:-13.683125pt;}
.ws63{word-spacing:-13.555603pt;}
.ws66{word-spacing:-13.364320pt;}
.wsa{word-spacing:-13.236797pt;}
.wsc{word-spacing:-12.726709pt;}
.wsb{word-spacing:-12.216620pt;}
.wsd{word-spacing:-12.025337pt;}
.ws67{word-spacing:-11.798909pt;}
.ws69{word-spacing:-11.770293pt;}
.ws19{word-spacing:-11.668275pt;}
.ws3b{word-spacing:-11.642771pt;}
.ws4a{word-spacing:-11.260204pt;}
.ws55{word-spacing:-11.196443pt;}
.ws2b{word-spacing:-11.159558pt;}
.ws2d{word-spacing:-11.132682pt;}
.ws3f{word-spacing:-11.068921pt;}
.ws50{word-spacing:-10.941399pt;}
.ws57{word-spacing:-10.877638pt;}
.ws4e{word-spacing:-10.813877pt;}
.ws12{word-spacing:-10.750116pt;}
.ws24{word-spacing:-10.746006pt;}
.ws15{word-spacing:-10.686355pt;}
.ws1f{word-spacing:-10.622594pt;}
.ws1e{word-spacing:-10.558833pt;}
.ws29{word-spacing:-10.495072pt;}
.ws6{word-spacing:-10.431311pt;}
.wsf{word-spacing:-10.367549pt;}
.ws4c{word-spacing:-10.303788pt;}
.ws4b{word-spacing:-10.297081pt;}
.ws22{word-spacing:-10.240027pt;}
.ws38{word-spacing:-10.176266pt;}
.ws20{word-spacing:-10.112505pt;}
.ws62{word-spacing:-10.057371pt;}
.ws30{word-spacing:-10.048744pt;}
.ws45{word-spacing:-9.984983pt;}
.ws60{word-spacing:-9.921222pt;}
.ws5d{word-spacing:-9.916919pt;}
.ws5f{word-spacing:-9.911107pt;}
.ws3c{word-spacing:-9.857461pt;}
.ws2c{word-spacing:-9.799498pt;}
.ws44{word-spacing:-9.538656pt;}
.ws36{word-spacing:-9.283611pt;}
.ws47{word-spacing:-9.156089pt;}
.ws26{word-spacing:-9.087829pt;}
.ws54{word-spacing:-8.964806pt;}
.ws10{word-spacing:-8.837284pt;}
.ws21{word-spacing:-8.751536pt;}
.ws39{word-spacing:-8.709762pt;}
.ws3a{word-spacing:-8.582240pt;}
.ws1d{word-spacing:-8.327195pt;}
.ws1a{word-spacing:-8.307699pt;}
.ws1c{word-spacing:-8.263434pt;}
.ws56{word-spacing:-7.944629pt;}
.ws37{word-spacing:-7.753346pt;}
.ws49{word-spacing:-7.689585pt;}
.ws53{word-spacing:-7.434540pt;}
.ws4d{word-spacing:-7.243257pt;}
.ws6c{word-spacing:-7.051974pt;}
.ws1b{word-spacing:-7.016195pt;}
.ws42{word-spacing:-6.988213pt;}
.ws43{word-spacing:-6.924452pt;}
.ws28{word-spacing:-6.764240pt;}
.ws52{word-spacing:-6.733169pt;}
.ws11{word-spacing:-6.669408pt;}
.ws68{word-spacing:-6.608509pt;}
.ws6b{word-spacing:-6.350602pt;}
.ws5a{word-spacing:-6.159319pt;}
.ws14{word-spacing:-5.840514pt;}
.ws23{word-spacing:-5.718052pt;}
.ws9{word-spacing:-5.585469pt;}
.ws27{word-spacing:-5.330425pt;}
.ws5c{word-spacing:-5.011620pt;}
.ws61{word-spacing:-5.005018pt;}
.ws5e{word-spacing:-4.822116pt;}
.ws48{word-spacing:-4.756576pt;}
.ws33{word-spacing:-4.692815pt;}
.ws16{word-spacing:-4.509940pt;}
.ws46{word-spacing:-4.437770pt;}
.ws25{word-spacing:-3.967446pt;}
.ws58{word-spacing:-3.904280pt;}
.ws3e{word-spacing:-3.863921pt;}
.ws6a{word-spacing:-3.829352pt;}
.wse{word-spacing:-3.481354pt;}
.ws34{word-spacing:-3.098788pt;}
.ws59{word-spacing:-1.286811pt;}
.ws31{word-spacing:-0.994673pt;}
.ws40{word-spacing:-0.063761pt;}
.ws5{word-spacing:-0.058182pt;}
.ws7{word-spacing:0.000000pt;}
.ws35{word-spacing:0.726876pt;}
.ws41{word-spacing:20.726007pt;}
.ws4f{word-spacing:20.738345pt;}
.ws3{word-spacing:28.646426pt;}
.ws4{word-spacing:28.738241pt;}
.ws2{word-spacing:34.382400pt;}
.ws2f{word-spacing:42.082187pt;}
.ws8{word-spacing:50.498507pt;}
._13{margin-left:-8.447023pt;}
._4{margin-left:-7.253422pt;}
._7{margin-left:-5.164646pt;}
._1{margin-left:-3.965936pt;}
._3{margin-left:-2.865200pt;}
._6{margin-left:-1.721549pt;}
._5{width:1.721549pt;}
._2{width:2.865200pt;}
._0{width:3.965936pt;}
._1e{width:15.812745pt;}
._8{width:19.447125pt;}
._9{width:20.849869pt;}
._c{width:25.759471pt;}
._1b{width:26.779648pt;}
._d{width:27.736064pt;}
._a{width:29.007237pt;}
._19{width:30.541551pt;}
._18{width:31.689250pt;}
._1c{width:32.964471pt;}
._11{width:34.494737pt;}
._17{width:36.343808pt;}
._1a{width:38.256640pt;}
._b{width:39.723145pt;}
._f{width:41.891021pt;}
._1d{width:43.740092pt;}
._15{width:45.780446pt;}
._16{width:50.371243pt;}
._14{width:56.811110pt;}
._10{width:70.137173pt;}
._e{width:84.164373pt;}
._12{width:100.997013pt;}
.fs3{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:118.889333pt;}
.y8{bottom:158.740000pt;}
.y7d{bottom:163.665333pt;}
.y43{bottom:179.928000pt;}
.y7c{bottom:184.852000pt;}
.y7{bottom:189.557333pt;}
.y8e{bottom:196.409333pt;}
.y61{bottom:196.653333pt;}
.y42{bottom:201.114667pt;}
.y7b{bottom:206.040000pt;}
.y6{bottom:209.430667pt;}
.y8d{bottom:217.597333pt;}
.y60{bottom:217.840000pt;}
.ya2{bottom:222.302667pt;}
.y24{bottom:229.153333pt;}
.y41{bottom:231.932000pt;}
.y7a{bottom:236.857333pt;}
.y8c{bottom:238.784000pt;}
.y5f{bottom:239.028000pt;}
.ya1{bottom:243.489333pt;}
.y23{bottom:250.341333pt;}
.y40{bottom:253.120000pt;}
.y8b{bottom:259.972000pt;}
.ya0{bottom:264.677333pt;}
.y79{bottom:267.676000pt;}
.y5e{bottom:269.845333pt;}
.y22{bottom:271.528000pt;}
.y8a{bottom:281.158667pt;}
.y3f{bottom:283.937333pt;}
.y9f{bottom:285.864000pt;}
.y78{bottom:288.862667pt;}
.y5d{bottom:291.033333pt;}
.y21{bottom:292.716000pt;}
.y3e{bottom:305.125333pt;}
.y77{bottom:310.050667pt;}
.y89{bottom:312.973333pt;}
.y20{bottom:313.902667pt;}
.y5c{bottom:321.850667pt;}
.y9e{bottom:323.345333pt;}
.y3d{bottom:326.312000pt;}
.y1f{bottom:335.090667pt;}
.y76{bottom:340.868000pt;}
.y5b{bottom:343.037333pt;}
.y1e{bottom:356.277333pt;}
.y3c{bottom:357.130667pt;}
.y75{bottom:362.056000pt;}
.y88{bottom:362.298667pt;}
.y5a{bottom:364.225333pt;}
.y3b{bottom:378.317333pt;}
.y9d{bottom:379.938667pt;}
.y74{bottom:383.242667pt;}
.y87{bottom:383.486667pt;}
.y1d{bottom:388.092000pt;}
.y59{bottom:395.042667pt;}
.y3a{bottom:399.505333pt;}
.y9c{bottom:401.126667pt;}
.y73{bottom:404.430667pt;}
.y86{bottom:404.673333pt;}
.y39{bottom:420.692000pt;}
.y9b{bottom:422.313333pt;}
.y72{bottom:425.617333pt;}
.y58{bottom:425.861333pt;}
.y1c{bottom:432.304000pt;}
.y85{bottom:435.492000pt;}
.y38{bottom:441.880000pt;}
.y9a{bottom:443.501333pt;}
.y71{bottom:446.805333pt;}
.y57{bottom:447.048000pt;}
.y1b{bottom:453.490667pt;}
.y84{bottom:456.678667pt;}
.y37{bottom:463.066667pt;}
.y99{bottom:464.688000pt;}
.y70{bottom:467.992000pt;}
.y1a{bottom:474.678667pt;}
.y56{bottom:477.866667pt;}
.y36{bottom:484.254667pt;}
.y98{bottom:485.876000pt;}
.y6f{bottom:489.180000pt;}
.y19{bottom:495.865333pt;}
.y55{bottom:499.053333pt;}
.y35{bottom:505.441333pt;}
.y97{bottom:507.062667pt;}
.y83{bottom:508.684000pt;}
.y6e{bottom:519.997333pt;}
.y18{bottom:527.680000pt;}
.y96{bottom:528.250667pt;}
.y54{bottom:529.872000pt;}
.y34{bottom:536.260000pt;}
.y6d{bottom:541.185333pt;}
.y95{bottom:549.437333pt;}
.y53{bottom:551.058667pt;}
.y33{bottom:557.446667pt;}
.y6c{bottom:562.372000pt;}
.y17{bottom:570.276000pt;}
.y94{bottom:570.625333pt;}
.y82{bottom:572.246667pt;}
.y32{bottom:578.634667pt;}
.y52{bottom:581.877333pt;}
.y6b{bottom:583.560000pt;}
.y93{bottom:591.812000pt;}
.y31{bottom:599.821333pt;}
.y51{bottom:603.064000pt;}
.y6a{bottom:604.746667pt;}
.y92{bottom:613.000000pt;}
.y30{bottom:621.009333pt;}
.y50{bottom:624.252000pt;}
.y16{bottom:627.217333pt;}
.y81{bottom:633.881333pt;}
.y91{bottom:634.186667pt;}
.y69{bottom:636.561333pt;}
.y15{bottom:648.405333pt;}
.y2f{bottom:652.822667pt;}
.y4f{bottom:655.069333pt;}
.y90{bottom:671.668000pt;}
.y4e{bottom:676.256000pt;}
.y14{bottom:679.222667pt;}
.y68{bottom:685.886667pt;}
.y2e{bottom:695.418667pt;}
.y4d{bottom:697.444000pt;}
.y13{bottom:700.410667pt;}
.y67{bottom:707.074667pt;}
.y12{bottom:721.597333pt;}
.y4c{bottom:728.261333pt;}
.y80{bottom:737.892000pt;}
.y11{bottom:742.785333pt;}
.y5{bottom:744.045333pt;}
.y4b{bottom:749.449333pt;}
.y2d{bottom:751.248000pt;}
.y66{bottom:759.080000pt;}
.y4a{bottom:770.636000pt;}
.y2c{bottom:772.436000pt;}
.y10{bottom:773.602667pt;}
.y65{bottom:780.266667pt;}
.y7f{bottom:789.897333pt;}
.y2b{bottom:793.622667pt;}
.yf{bottom:794.790667pt;}
.y49{bottom:801.454667pt;}
.y4{bottom:801.761333pt;}
.y7e{bottom:811.085333pt;}
.ye{bottom:815.977333pt;}
.y48{bottom:822.641333pt;}
.y2a{bottom:825.437333pt;}
.y64{bottom:832.272000pt;}
.y47{bottom:843.829333pt;}
.yd{bottom:846.796000pt;}
.y3{bottom:853.157333pt;}
.y63{bottom:853.460000pt;}
.yc{bottom:867.982667pt;}
.y29{bottom:873.650667pt;}
.y46{bottom:874.646667pt;}
.y62{bottom:884.277333pt;}
.yb{bottom:889.170667pt;}
.y28{bottom:894.837333pt;}
.y8f{bottom:895.834667pt;}
.y2{bottom:896.992000pt;}
.y45{bottom:905.465333pt;}
.ya{bottom:910.357333pt;}
.y27{bottom:916.025333pt;}
.y44{bottom:926.652000pt;}
.y1{bottom:940.828000pt;}
.y9{bottom:947.838667pt;}
.y26{bottom:947.840000pt;}
.hb{height:39.850667pt;}
.ha{height:43.293764pt;}
.h5{height:43.636400pt;}
.h9{height:45.652924pt;}
.h6{height:47.820800pt;}
.h8{height:54.783356pt;}
.h4{height:63.719934pt;}
.h7{height:65.739874pt;}
.h3{height:76.478800pt;}
.h2{height:94.653673pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:130.082667pt;}
.x9{left:132.284000pt;}
.xc{left:151.360000pt;}
.x1{left:154.600000pt;}
.x2{left:160.594667pt;}
.xa{left:171.304000pt;}
.x1d{left:195.910667pt;}
.x4{left:208.041333pt;}
.x25{left:212.316000pt;}
.x26{left:218.950667pt;}
.x23{left:236.924000pt;}
.x13{left:250.898667pt;}
.x1e{left:253.329333pt;}
.x1f{left:261.532000pt;}
.xd{left:269.734667pt;}
.x19{left:277.937333pt;}
.xe{left:279.474667pt;}
.x14{left:280.628000pt;}
.xf{left:294.357333pt;}
.x16{left:302.544000pt;}
.x3{left:303.486667pt;}
.x27{left:309.178667pt;}
.x24{left:316.386667pt;}
.x7{left:318.932000pt;}
.x1a{left:327.152000pt;}
.x6{left:328.926667pt;}
.x8{left:333.537333pt;}
.x17{left:335.354667pt;}
.x5{left:337.729333pt;}
.x18{left:343.557333pt;}
.x20{left:351.760000pt;}
.x11{left:353.286667pt;}
.x15{left:354.450667pt;}
.x12{left:358.894667pt;}
.x2b{left:370.758667pt;}
.x21{left:382.334667pt;}
.xb{left:392.948000pt;}
.x2f{left:431.680000pt;}
.x22{left:472.562667pt;}
.x2d{left:481.136000pt;}
.x1b{left:486.294667pt;}
.x1c{left:592.928000pt;}
.x28{left:594.445333pt;}
.x2c{left:597.142667pt;}
.x2e{left:653.389333pt;}
.x10{left:656.169333pt;}
.x29{left:660.066667pt;}
}




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