
    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_b56c1082f57724f606ec48a3.woff2')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_260b0ba5ce714277ff4e7db4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fe495ecb1d4504838ee342c1.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_f2999fa6d6ffda355362be25.woff2')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_7cfe21873b490235300ed775.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_b63196f8102099b320ccb4b2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_42684ed347682413eba5bef1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_a92589fdd6b397fb5e43c7ec.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_750f44f04d53c347a1c5af59.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d38c333ed3517aee8ea98a19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_81508c371f6f97a8420dd339.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d1782e617dbec112441b06a7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.916000;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-3.237405px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.007239px;}
.ls3{letter-spacing:-0.003886px;}
.ls7{letter-spacing:-0.003620px;}
.ls9{letter-spacing:-0.003167px;}
.ls4{letter-spacing:-0.003109px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001002px;}
.ls5{letter-spacing:0.003109px;}
.ls6{letter-spacing:0.003620px;}
.ls2{letter-spacing:0.003886px;}
.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;}
}
.ws62{word-spacing:-2.985811px;}
.ws57{word-spacing:-2.917049px;}
.ws80{word-spacing:-2.737722px;}
.ws7f{word-spacing:-2.618171px;}
.ws64{word-spacing:-2.609222px;}
.ws94{word-spacing:-2.558396px;}
.ws82{word-spacing:-2.319293px;}
.ws3a{word-spacing:-2.139966px;}
.wsb{word-spacing:-1.533254px;}
.ws6b{word-spacing:-1.243332px;}
.ws67{word-spacing:-1.004230px;}
.ws47{word-spacing:-0.884679px;}
.ws92{word-spacing:-0.765128px;}
.ws4f{word-spacing:-0.645576px;}
.ws4d{word-spacing:-0.642662px;}
.wsa5{word-spacing:-0.618682px;}
.ws49{word-spacing:-0.346698px;}
.ws69{word-spacing:-0.286923px;}
.ws68{word-spacing:-0.107596px;}
.ws8b{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws8c{word-spacing:-0.003620px;}
.ws71{word-spacing:-0.003109px;}
.ws25{word-spacing:0.000000px;}
.ws70{word-spacing:0.003109px;}
.ws8f{word-spacing:0.003167px;}
.ws8d{word-spacing:0.003620px;}
.ws8e{word-spacing:0.007239px;}
.ws1c{word-spacing:0.011955px;}
.ws44{word-spacing:0.251058px;}
.ws30{word-spacing:0.310833px;}
.ws45{word-spacing:0.490160px;}
.ws9e{word-spacing:0.726278px;}
.ws42{word-spacing:0.789038px;}
.ws2b{word-spacing:0.848814px;}
.ws5c{word-spacing:0.968365px;}
.ws66{word-spacing:1.327018px;}
.ws16{word-spacing:1.446570px;}
.ws13{word-spacing:1.506345px;}
.ws50{word-spacing:1.566121px;}
.wsc{word-spacing:1.587053px;}
.ws37{word-spacing:1.625896px;}
.ws91{word-spacing:1.685672px;}
.ws32{word-spacing:1.864999px;}
.ws8{word-spacing:1.909843px;}
.ws52{word-spacing:1.924774px;}
.wsa1{word-spacing:1.963642px;}
.ws3d{word-spacing:1.984550px;}
.ws9d{word-spacing:2.071238px;}
.ws21{word-spacing:2.223652px;}
.ws9c{word-spacing:2.340230px;}
.ws9a{word-spacing:2.447827px;}
.ws6e{word-spacing:2.462755px;}
.ws2d{word-spacing:2.522530px;}
.ws24{word-spacing:2.577516px;}
.ws55{word-spacing:2.614800px;}
.ws56{word-spacing:2.642082px;}
.wsd{word-spacing:2.770618px;}
.wsa6{word-spacing:2.824416px;}
.ws3{word-spacing:2.878214px;}
.ws5b{word-spacing:2.940960px;}
.ws27{word-spacing:3.039610px;}
.ws2{word-spacing:3.093408px;}
.ws77{word-spacing:3.180062px;}
.ws1{word-spacing:3.299613px;}
.ws87{word-spacing:3.419164px;}
.ws2c{word-spacing:3.478940px;}
.ws9f{word-spacing:3.523795px;}
.ws20{word-spacing:3.538716px;}
.ws89{word-spacing:3.598491px;}
.ws48{word-spacing:3.718042px;}
.ws78{word-spacing:3.837594px;}
.ws14{word-spacing:4.016920px;}
.ws5d{word-spacing:4.076696px;}
.ws19{word-spacing:4.136472px;}
.ws1f{word-spacing:4.196247px;}
.ws6{word-spacing:4.223174px;}
.ws15{word-spacing:4.256023px;}
.ws59{word-spacing:4.315798px;}
.ws6d{word-spacing:4.375574px;}
.ws74{word-spacing:4.435350px;}
.ws33{word-spacing:4.554901px;}
.ws7a{word-spacing:4.614676px;}
.ws63{word-spacing:4.707360px;}
.ws40{word-spacing:4.734228px;}
.ws7c{word-spacing:4.853779px;}
.ws79{word-spacing:4.913554px;}
.ws65{word-spacing:4.973330px;}
.ws76{word-spacing:5.212432px;}
.ws7d{word-spacing:5.272208px;}
.ws1d{word-spacing:5.331984px;}
.ws36{word-spacing:5.391759px;}
.ws93{word-spacing:5.451535px;}
.ws12{word-spacing:5.630862px;}
.ws5f{word-spacing:5.690637px;}
.ws88{word-spacing:5.810188px;}
.ws17{word-spacing:5.989515px;}
.ws6a{word-spacing:6.049291px;}
.ws7{word-spacing:6.159917px;}
.ws4b{word-spacing:6.288393px;}
.ws96{word-spacing:6.375110px;}
.ws41{word-spacing:6.766598px;}
.ws7e{word-spacing:6.886149px;}
.ws2e{word-spacing:6.945925px;}
.ws39{word-spacing:7.065476px;}
.wsa{word-spacing:7.182086px;}
.ws58{word-spacing:7.185027px;}
.wsa4{word-spacing:7.235885px;}
.wsa2{word-spacing:7.343482px;}
.ws84{word-spacing:7.483905px;}
.ws97{word-spacing:7.612474px;}
.ws9{word-spacing:7.720070px;}
.ws1a{word-spacing:7.723008px;}
.ws46{word-spacing:7.902334px;}
.ws6c{word-spacing:7.962110px;}
.ws60{word-spacing:8.021886px;}
.ws3c{word-spacing:8.081661px;}
.ws31{word-spacing:8.141437px;}
.ws8a{word-spacing:8.320764px;}
.ws53{word-spacing:8.380539px;}
.ws35{word-spacing:8.440315px;}
.ws2a{word-spacing:8.500090px;}
.ws28{word-spacing:8.619642px;}
.ws51{word-spacing:8.679417px;}
.ws2f{word-spacing:8.739193px;}
.ws98{word-spacing:8.796038px;}
.ws22{word-spacing:8.895779px;}
.ws1b{word-spacing:8.918520px;}
.ws90{word-spacing:8.978295px;}
.ws23{word-spacing:9.021308px;}
.ws5a{word-spacing:9.038071px;}
.ws3f{word-spacing:9.157622px;}
.ws10{word-spacing:9.217398px;}
.ws83{word-spacing:9.456500px;}
.ws34{word-spacing:9.576051px;}
.ws9b{word-spacing:9.656813px;}
.ws99{word-spacing:9.764410px;}
.wsa0{word-spacing:10.140998px;}
.ws3e{word-spacing:10.472685px;}
.ws26{word-spacing:10.544486px;}
.ws6f{word-spacing:10.891114px;}
.ws81{word-spacing:11.070441px;}
.ws11{word-spacing:11.369319px;}
.ws29{word-spacing:11.488870px;}
.ws85{word-spacing:12.206178px;}
.wsa3{word-spacing:12.239136px;}
.ws95{word-spacing:14.391072px;}
.ws43{word-spacing:18.470660px;}
.ws54{word-spacing:20.682358px;}
.ws4e{word-spacing:22.328402px;}
.ws7b{word-spacing:22.714728px;}
.ws5e{word-spacing:23.491811px;}
.ws1e{word-spacing:25.235811px;}
.ws3b{word-spacing:25.703508px;}
.ws38{word-spacing:26.827469px;}
.ws18{word-spacing:27.027566px;}
.wse{word-spacing:27.592038px;}
.ws75{word-spacing:28.333634px;}
.ws5{word-spacing:29.829450px;}
.ws86{word-spacing:29.994119px;}
.ws4c{word-spacing:30.033848px;}
.ws0{word-spacing:32.192873px;}
.ws4a{word-spacing:33.713210px;}
.ws73{word-spacing:56.306407px;}
.wsf{word-spacing:80.625869px;}
.ws61{word-spacing:310.666468px;}
.ws72{word-spacing:518.457812px;}
._1a{margin-left:-968.070240px;}
._1d{margin-left:-792.734487px;}
._5{margin-left:-27.491004px;}
._d{margin-left:-6.742733px;}
._2{margin-left:-4.961375px;}
._8{margin-left:-3.849538px;}
._0{margin-left:-2.668393px;}
._3{margin-left:-1.613941px;}
._6{width:1.667729px;}
._1{width:2.668393px;}
._18{width:3.851990px;}
._7{width:10.357937px;}
._17{width:12.394216px;}
._12{width:14.743064px;}
._4{width:17.452165px;}
._b{width:19.286010px;}
._a{width:20.959727px;}
._21{width:22.932322px;}
._9{width:26.279755px;}
._f{width:27.647452px;}
._11{width:29.328268px;}
._20{width:32.784082px;}
._10{width:34.251419px;}
._e{width:36.225720px;}
._1f{width:40.656269px;}
._16{width:54.341759px;}
._15{width:67.325577px;}
._c{width:80.697600px;}
._14{width:98.889689px;}
._13{width:124.338098px;}
._1b{width:130.165754px;}
._1c{width:438.320461px;}
._19{width:523.699805px;}
._1e{width:784.658397px;}
.fc4{color:rgb(147,149,152);}
.fc1{color:rgb(167,169,172);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:31.091520px;}
.fs8{font-size:31.670940px;}
.fs7{font-size:36.195360px;}
.fs5{font-size:38.864400px;}
.fs4{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y75{bottom:2.978956px;}
.ya5{bottom:9.069200px;}
.ya4{bottom:9.289765px;}
.y7e{bottom:15.592397px;}
.y9b{bottom:35.385489px;}
.y92{bottom:39.082845px;}
.ya3{bottom:47.949351px;}
.y99{bottom:59.681624px;}
.y93{bottom:63.158189px;}
.y9c{bottom:71.632880px;}
.y9a{bottom:83.756063px;}
.y94{bottom:87.234437px;}
.y82{bottom:97.406817px;}
.y80{bottom:97.936733px;}
.ya0{bottom:98.543225px;}
.ya2{bottom:98.731441px;}
.y95{bottom:111.309781px;}
.y7d{bottom:112.003314px;}
.y7f{bottom:112.105916px;}
.y9f{bottom:122.014106px;}
.ya1{bottom:122.060255px;}
.y96{bottom:135.384220px;}
.y9d{bottom:146.732822px;}
.y97{bottom:159.459563px;}
.y9e{bottom:168.593915px;}
.y91{bottom:183.536717px;}
.y6c{bottom:193.615500px;}
.y26{bottom:193.617000px;}
.y81{bottom:194.082012px;}
.y98{bottom:198.035673px;}
.yf0{bottom:204.865500px;}
.y25{bottom:205.572000px;}
.y74{bottom:209.446081px;}
.y43{bottom:211.549500px;}
.y24{bottom:217.527000px;}
.yef{bottom:221.304000px;}
.y42{bottom:229.482000px;}
.yee{bottom:236.331000px;}
.y6b{bottom:242.610000px;}
.y23{bottom:244.851000px;}
.yc2{bottom:247.414500px;}
.yed{bottom:252.769500px;}
.y6a{bottom:260.542500px;}
.y41{bottom:262.728000px;}
.y22{bottom:262.783500px;}
.yc1{bottom:265.347000px;}
.y8f{bottom:266.088000px;}
.yec{bottom:269.208000px;}
.y69{bottom:278.475000px;}
.y40{bottom:280.660500px;}
.y21{bottom:280.716000px;}
.yc0{bottom:283.279500px;}
.y7c{bottom:283.980228px;}
.yeb{bottom:284.235000px;}
.y76{bottom:287.357544px;}
.y79{bottom:288.814959px;}
.y7b{bottom:295.963094px;}
.y68{bottom:296.407500px;}
.y3f{bottom:298.593000px;}
.y20{bottom:298.648500px;}
.yea{bottom:300.673500px;}
.ybf{bottom:301.213500px;}
.y67{bottom:314.340000px;}
.y8e{bottom:314.649000px;}
.y1f{bottom:316.581000px;}
.ye9{bottom:317.112000px;}
.ybe{bottom:319.146000px;}
.y3e{bottom:331.839000px;}
.ye8{bottom:332.139000px;}
.y66{bottom:332.272500px;}
.y8d{bottom:332.581500px;}
.y1e{bottom:334.513500px;}
.ybd{bottom:337.078500px;}
.ye7{bottom:348.577500px;}
.y65{bottom:350.206500px;}
.y8c{bottom:350.514000px;}
.y1d{bottom:352.447500px;}
.ybc{bottom:355.011000px;}
.ye6{bottom:363.603000px;}
.y64{bottom:368.139000px;}
.y8b{bottom:368.446500px;}
.y1c{bottom:370.380000px;}
.ybb{bottom:372.943500px;}
.y3d{bottom:377.040000px;}
.ye5{bottom:380.041500px;}
.y63{bottom:386.071500px;}
.y8a{bottom:386.380500px;}
.y1b{bottom:388.312500px;}
.yba{bottom:390.876000px;}
.y3c{bottom:394.972500px;}
.ye4{bottom:396.480000px;}
.y62{bottom:404.004000px;}
.y89{bottom:404.313000px;}
.y1a{bottom:406.245000px;}
.y73{bottom:408.283930px;}
.yb9{bottom:408.810000px;}
.ye3{bottom:411.507000px;}
.y3b{bottom:412.906500px;}
.y71{bottom:415.589660px;}
.y77{bottom:416.258322px;}
.y61{bottom:421.936500px;}
.y88{bottom:422.245500px;}
.y7a{bottom:422.249561px;}
.y19{bottom:424.177500px;}
.yb8{bottom:426.742500px;}
.y70{bottom:427.248980px;}
.ye2{bottom:427.945500px;}
.y3a{bottom:430.839000px;}
.y72{bottom:432.916381px;}
.y78{bottom:439.325218px;}
.y60{bottom:439.869000px;}
.y87{bottom:440.178000px;}
.y18{bottom:442.110000px;}
.ye1{bottom:444.384000px;}
.yb7{bottom:444.675000px;}
.y39{bottom:448.771500px;}
.y6f{bottom:450.080844px;}
.y86{bottom:458.110500px;}
.ye0{bottom:459.411000px;}
.y6e{bottom:459.796944px;}
.y17{bottom:460.044000px;}
.yb6{bottom:462.607500px;}
.y38{bottom:466.704000px;}
.y5f{bottom:470.929500px;}
.ydf{bottom:475.849500px;}
.y16{bottom:477.976500px;}
.yb5{bottom:480.540000px;}
.y37{bottom:484.636500px;}
.y5e{bottom:488.863500px;}
.yde{bottom:492.288000px;}
.y85{bottom:495.784500px;}
.y15{bottom:495.909000px;}
.yb4{bottom:498.472500px;}
.y36{bottom:502.569000px;}
.y5d{bottom:506.796000px;}
.ydd{bottom:507.315000px;}
.y84{bottom:512.223000px;}
.y14{bottom:513.841500px;}
.yb3{bottom:516.406500px;}
.y35{bottom:520.503000px;}
.ydc{bottom:523.753500px;}
.y5c{bottom:524.728500px;}
.y83{bottom:528.661500px;}
.y13{bottom:531.774000px;}
.yb2{bottom:534.339000px;}
.y34{bottom:538.435500px;}
.ydb{bottom:538.780500px;}
.y5b{bottom:542.661000px;}
.y6d{bottom:543.036000px;}
.y12{bottom:549.708000px;}
.yda{bottom:555.219000px;}
.y33{bottom:556.368000px;}
.y5a{bottom:560.593500px;}
.yb1{bottom:566.943000px;}
.yd9{bottom:571.657500px;}
.y32{bottom:574.300500px;}
.y59{bottom:578.526000px;}
.y11{bottom:584.496000px;}
.yb0{bottom:584.875500px;}
.yd8{bottom:588.094500px;}
.y31{bottom:592.233000px;}
.y58{bottom:596.460000px;}
.yaf{bottom:602.809500px;}
.yd7{bottom:604.533000px;}
.y30{bottom:610.165500px;}
.y57{bottom:614.392500px;}
.yd6{bottom:619.560000px;}
.yae{bottom:620.742000px;}
.y2f{bottom:628.099500px;}
.y56{bottom:632.325000px;}
.y10{bottom:633.897000px;}
.yd5{bottom:635.998500px;}
.yad{bottom:638.674500px;}
.y2e{bottom:646.032000px;}
.y55{bottom:650.257500px;}
.yd4{bottom:652.437000px;}
.yac{bottom:656.607000px;}
.y2d{bottom:663.964500px;}
.yf{bottom:666.504000px;}
.yd3{bottom:667.464000px;}
.y54{bottom:668.190000px;}
.yab{bottom:674.539500px;}
.y2c{bottom:681.897000px;}
.ye{bottom:682.942500px;}
.yd2{bottom:683.902500px;}
.yaa{bottom:692.473500px;}
.yd1{bottom:698.929500px;}
.y53{bottom:699.250500px;}
.yd{bottom:699.381000px;}
.y2b{bottom:699.829500px;}
.ya9{bottom:710.406000px;}
.yd0{bottom:713.956500px;}
.yc{bottom:715.819500px;}
.y52{bottom:717.183000px;}
.y2a{bottom:717.762000px;}
.ycf{bottom:728.983500px;}
.yb{bottom:732.258000px;}
.y51{bottom:735.117000px;}
.y29{bottom:735.696000px;}
.ya8{bottom:743.010000px;}
.yce{bottom:744.010500px;}
.ya{bottom:748.696500px;}
.y50{bottom:753.049500px;}
.ycd{bottom:759.037500px;}
.ya7{bottom:760.942500px;}
.y9{bottom:765.135000px;}
.y28{bottom:769.707000px;}
.y4f{bottom:770.982000px;}
.ycc{bottom:774.064500px;}
.y8{bottom:781.573500px;}
.y4e{bottom:788.914500px;}
.ya6{bottom:794.313000px;}
.y7{bottom:798.010500px;}
.ycb{bottom:801.378000px;}
.y4d{bottom:806.847000px;}
.y90{bottom:808.687500px;}
.y4c{bottom:824.779500px;}
.y4b{bottom:842.713500px;}
.yca{bottom:843.553500px;}
.y6{bottom:856.257000px;}
.y4a{bottom:860.646000px;}
.yc9{bottom:861.486000px;}
.y5{bottom:872.695500px;}
.yc8{bottom:879.418500px;}
.y4{bottom:889.134000px;}
.y49{bottom:891.706500px;}
.yc7{bottom:897.351000px;}
.y48{bottom:909.639000px;}
.yc6{bottom:915.285000px;}
.y3{bottom:920.455500px;}
.y47{bottom:927.571500px;}
.yc5{bottom:933.217500px;}
.y46{bottom:945.504000px;}
.yc4{bottom:951.150000px;}
.y45{bottom:963.436500px;}
.yc3{bottom:969.082500px;}
.y2{bottom:972.403500px;}
.y44{bottom:981.370500px;}
.y1{bottom:999.303000px;}
.y27{bottom:1038.157500px;}
.h9{height:21.080051px;}
.h8{height:21.608606px;}
.hc{height:22.011303px;}
.hb{height:25.155775px;}
.h7{height:27.010758px;}
.h5{height:31.382100px;}
.h3{height:40.348800px;}
.h2{height:44.831700px;}
.h4{height:50.211840px;}
.h1{height:60.254040px;}
.ha{height:205.557974px;}
.h6{height:471.214333px;}
.h0{height:1188.000000px;}
.w1{width:415.001836px;}
.w2{width:492.816793px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1f{left:4.050374px;}
.x1c{left:5.351919px;}
.xd{left:8.873714px;}
.x18{left:18.623820px;}
.x10{left:22.245594px;}
.x20{left:24.439220px;}
.x19{left:29.959011px;}
.x1e{left:41.001312px;}
.xe{left:43.179320px;}
.x27{left:80.901380px;}
.x15{left:82.489106px;}
.x17{left:94.732752px;}
.x12{left:97.937511px;}
.x2a{left:101.820489px;}
.x23{left:107.457690px;}
.x14{left:117.143131px;}
.x11{left:130.323993px;}
.x2b{left:144.312031px;}
.x22{left:164.657217px;}
.xf{left:195.665737px;}
.x5{left:202.147500px;}
.x2e{left:209.058000px;}
.x1d{left:212.812500px;}
.x8{left:217.090500px;}
.x16{left:218.498572px;}
.x3{left:223.948500px;}
.x24{left:225.616990px;}
.x4{left:227.584500px;}
.x28{left:241.388892px;}
.x7{left:244.666500px;}
.x29{left:250.214225px;}
.xb{left:251.716500px;}
.x26{left:255.197648px;}
.x1{left:269.091000px;}
.x6{left:316.917000px;}
.x2d{left:318.194541px;}
.x1b{left:321.765363px;}
.x25{left:345.039056px;}
.x1a{left:354.172832px;}
.xc{left:363.834910px;}
.x9{left:374.407500px;}
.x2{left:388.779000px;}
.x13{left:393.647792px;}
.x2c{left:397.954636px;}
.x21{left:450.730073px;}
.xa{left:713.976000px;}
@media print{
.v1{vertical-align:-2.877693pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.006435pt;}
.ls3{letter-spacing:-0.003455pt;}
.ls7{letter-spacing:-0.003217pt;}
.ls9{letter-spacing:-0.002815pt;}
.ls4{letter-spacing:-0.002764pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000891pt;}
.ls5{letter-spacing:0.002764pt;}
.ls6{letter-spacing:0.003217pt;}
.ls2{letter-spacing:0.003455pt;}
.ws62{word-spacing:-2.654054pt;}
.ws57{word-spacing:-2.592933pt;}
.ws80{word-spacing:-2.433531pt;}
.ws7f{word-spacing:-2.327263pt;}
.ws64{word-spacing:-2.319309pt;}
.ws94{word-spacing:-2.274129pt;}
.ws82{word-spacing:-2.061594pt;}
.ws3a{word-spacing:-1.902192pt;}
.wsb{word-spacing:-1.362893pt;}
.ws6b{word-spacing:-1.105184pt;}
.ws67{word-spacing:-0.892649pt;}
.ws47{word-spacing:-0.786381pt;}
.ws92{word-spacing:-0.680113pt;}
.ws4f{word-spacing:-0.573846pt;}
.ws4d{word-spacing:-0.571255pt;}
.wsa5{word-spacing:-0.549939pt;}
.ws49{word-spacing:-0.308176pt;}
.ws69{word-spacing:-0.255043pt;}
.ws68{word-spacing:-0.095641pt;}
.ws8b{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws8c{word-spacing:-0.003217pt;}
.ws71{word-spacing:-0.002764pt;}
.ws25{word-spacing:0.000000pt;}
.ws70{word-spacing:0.002764pt;}
.ws8f{word-spacing:0.002815pt;}
.ws8d{word-spacing:0.003217pt;}
.ws8e{word-spacing:0.006435pt;}
.ws1c{word-spacing:0.010627pt;}
.ws44{word-spacing:0.223162pt;}
.ws30{word-spacing:0.276296pt;}
.ws45{word-spacing:0.435698pt;}
.ws9e{word-spacing:0.645581pt;}
.ws42{word-spacing:0.701367pt;}
.ws2b{word-spacing:0.754501pt;}
.ws5c{word-spacing:0.860769pt;}
.ws66{word-spacing:1.179572pt;}
.ws16{word-spacing:1.285840pt;}
.ws13{word-spacing:1.338973pt;}
.ws50{word-spacing:1.392107pt;}
.wsc{word-spacing:1.410714pt;}
.ws37{word-spacing:1.445241pt;}
.ws91{word-spacing:1.498375pt;}
.ws32{word-spacing:1.657777pt;}
.ws8{word-spacing:1.697638pt;}
.ws52{word-spacing:1.710911pt;}
.wsa1{word-spacing:1.745459pt;}
.ws3d{word-spacing:1.764044pt;}
.ws9d{word-spacing:1.841101pt;}
.ws21{word-spacing:1.976580pt;}
.ws9c{word-spacing:2.080205pt;}
.ws9a{word-spacing:2.175846pt;}
.ws6e{word-spacing:2.189115pt;}
.ws2d{word-spacing:2.242249pt;}
.ws24{word-spacing:2.291126pt;}
.ws55{word-spacing:2.324267pt;}
.ws56{word-spacing:2.348517pt;}
.wsd{word-spacing:2.462771pt;}
.wsa6{word-spacing:2.510592pt;}
.ws3{word-spacing:2.558413pt;}
.ws5b{word-spacing:2.614186pt;}
.ws27{word-spacing:2.701875pt;}
.ws2{word-spacing:2.749696pt;}
.ws77{word-spacing:2.826722pt;}
.ws1{word-spacing:2.932989pt;}
.ws87{word-spacing:3.039257pt;}
.ws2c{word-spacing:3.092391pt;}
.ws9f{word-spacing:3.132262pt;}
.ws20{word-spacing:3.145525pt;}
.ws89{word-spacing:3.198659pt;}
.ws48{word-spacing:3.304927pt;}
.ws78{word-spacing:3.411194pt;}
.ws14{word-spacing:3.570596pt;}
.ws5d{word-spacing:3.623730pt;}
.ws19{word-spacing:3.676864pt;}
.ws1f{word-spacing:3.729997pt;}
.ws6{word-spacing:3.753933pt;}
.ws15{word-spacing:3.783131pt;}
.ws59{word-spacing:3.836265pt;}
.ws6d{word-spacing:3.889399pt;}
.ws74{word-spacing:3.942533pt;}
.ws33{word-spacing:4.048801pt;}
.ws7a{word-spacing:4.101935pt;}
.ws63{word-spacing:4.184320pt;}
.ws40{word-spacing:4.208202pt;}
.ws7c{word-spacing:4.314470pt;}
.ws79{word-spacing:4.367604pt;}
.ws65{word-spacing:4.420738pt;}
.ws76{word-spacing:4.633273pt;}
.ws7d{word-spacing:4.686407pt;}
.ws1d{word-spacing:4.739541pt;}
.ws36{word-spacing:4.792675pt;}
.ws93{word-spacing:4.845809pt;}
.ws12{word-spacing:5.005210pt;}
.ws5f{word-spacing:5.058344pt;}
.ws88{word-spacing:5.164612pt;}
.ws17{word-spacing:5.324013pt;}
.ws6a{word-spacing:5.377147pt;}
.ws7{word-spacing:5.475482pt;}
.ws4b{word-spacing:5.589683pt;}
.ws96{word-spacing:5.666765pt;}
.ws41{word-spacing:6.014754pt;}
.ws7e{word-spacing:6.121021pt;}
.ws2e{word-spacing:6.174155pt;}
.ws39{word-spacing:6.280423pt;}
.wsa{word-spacing:6.384077pt;}
.ws58{word-spacing:6.386691pt;}
.wsa4{word-spacing:6.431898pt;}
.wsa2{word-spacing:6.527539pt;}
.ws84{word-spacing:6.652360pt;}
.ws97{word-spacing:6.766643pt;}
.ws9{word-spacing:6.862285pt;}
.ws1a{word-spacing:6.864896pt;}
.ws46{word-spacing:7.024297pt;}
.ws6c{word-spacing:7.077431pt;}
.ws60{word-spacing:7.130565pt;}
.ws3c{word-spacing:7.183699pt;}
.ws31{word-spacing:7.236833pt;}
.ws8a{word-spacing:7.396234pt;}
.ws53{word-spacing:7.449368pt;}
.ws35{word-spacing:7.502502pt;}
.ws2a{word-spacing:7.555636pt;}
.ws28{word-spacing:7.661904pt;}
.ws51{word-spacing:7.715037pt;}
.ws2f{word-spacing:7.768171pt;}
.ws98{word-spacing:7.818701pt;}
.ws22{word-spacing:7.907359pt;}
.ws1b{word-spacing:7.927573pt;}
.ws90{word-spacing:7.980707pt;}
.ws23{word-spacing:8.018940pt;}
.ws5a{word-spacing:8.033841pt;}
.ws3f{word-spacing:8.140108pt;}
.ws10{word-spacing:8.193242pt;}
.ws83{word-spacing:8.405778pt;}
.ws34{word-spacing:8.512045pt;}
.ws9b{word-spacing:8.583834pt;}
.ws99{word-spacing:8.679475pt;}
.wsa0{word-spacing:9.014221pt;}
.ws3e{word-spacing:9.309053pt;}
.ws26{word-spacing:9.372877pt;}
.ws6f{word-spacing:9.680991pt;}
.ws81{word-spacing:9.840392pt;}
.ws11{word-spacing:10.106061pt;}
.ws29{word-spacing:10.212329pt;}
.ws85{word-spacing:10.849936pt;}
.wsa3{word-spacing:10.879232pt;}
.ws95{word-spacing:12.792064pt;}
.ws43{word-spacing:16.418365pt;}
.ws54{word-spacing:18.384318pt;}
.ws4e{word-spacing:19.847468pt;}
.ws7b{word-spacing:20.190869pt;}
.ws5e{word-spacing:20.881610pt;}
.ws1e{word-spacing:22.431832pt;}
.ws3b{word-spacing:22.847563pt;}
.ws38{word-spacing:23.846639pt;}
.ws18{word-spacing:24.024503pt;}
.wse{word-spacing:24.526256pt;}
.ws75{word-spacing:25.185453pt;}
.ws5{word-spacing:26.515067pt;}
.ws86{word-spacing:26.661439pt;}
.ws4c{word-spacing:26.696753pt;}
.ws0{word-spacing:28.615887pt;}
.ws4a{word-spacing:29.967298pt;}
.ws73{word-spacing:50.050139pt;}
.wsf{word-spacing:71.667439pt;}
.ws61{word-spacing:276.147971pt;}
.ws72{word-spacing:460.851389pt;}
._1a{margin-left:-860.506880pt;}
._1d{margin-left:-704.652877pt;}
._5{margin-left:-24.436448pt;}
._d{margin-left:-5.993540pt;}
._2{margin-left:-4.410111pt;}
._8{margin-left:-3.421811pt;}
._0{margin-left:-2.371905pt;}
._3{margin-left:-1.434614pt;}
._6{width:1.482426pt;}
._1{width:2.371905pt;}
._18{width:3.423991pt;}
._7{width:9.207055pt;}
._17{width:11.017081pt;}
._12{width:13.104946pt;}
._4{width:15.513036pt;}
._b{width:17.143120pt;}
._a{width:18.630868pt;}
._21{width:20.384286pt;}
._9{width:23.359782pt;}
._f{width:24.575513pt;}
._11{width:26.069572pt;}
._20{width:29.141406pt;}
._10{width:30.445706pt;}
._e{width:32.200640pt;}
._1f{width:36.138906pt;}
._16{width:48.303785pt;}
._15{width:59.844958pt;}
._c{width:71.731200pt;}
._14{width:87.901945pt;}
._13{width:110.522753pt;}
._1b{width:115.702892pt;}
._1c{width:389.618187pt;}
._19{width:465.510938pt;}
._1e{width:697.474131pt;}
.fs6{font-size:27.636907pt;}
.fs8{font-size:28.151947pt;}
.fs7{font-size:32.173653pt;}
.fs5{font-size:34.546133pt;}
.fs4{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:2.647961pt;}
.ya5{bottom:8.061511pt;}
.ya4{bottom:8.257569pt;}
.y7e{bottom:13.859909pt;}
.y9b{bottom:31.453768pt;}
.y92{bottom:34.740307pt;}
.ya3{bottom:42.621645pt;}
.y99{bottom:53.050333pt;}
.y93{bottom:56.140612pt;}
.y9c{bottom:63.673671pt;}
.y9a{bottom:74.449834pt;}
.y94{bottom:77.541722pt;}
.y82{bottom:86.583838pt;}
.y80{bottom:87.054874pt;}
.ya0{bottom:87.593978pt;}
.ya2{bottom:87.761281pt;}
.y95{bottom:98.942027pt;}
.y7d{bottom:99.558502pt;}
.y7f{bottom:99.649703pt;}
.y9f{bottom:108.456983pt;}
.ya1{bottom:108.498005pt;}
.y96{bottom:120.341529pt;}
.y9d{bottom:130.429175pt;}
.y97{bottom:141.741834pt;}
.y9e{bottom:149.861258pt;}
.y91{bottom:163.143748pt;}
.y6c{bottom:172.102667pt;}
.y26{bottom:172.104000pt;}
.y81{bottom:172.517344pt;}
.y98{bottom:176.031709pt;}
.yf0{bottom:182.102667pt;}
.y25{bottom:182.730667pt;}
.y74{bottom:186.174294pt;}
.y43{bottom:188.044000pt;}
.y24{bottom:193.357333pt;}
.yef{bottom:196.714667pt;}
.y42{bottom:203.984000pt;}
.yee{bottom:210.072000pt;}
.y6b{bottom:215.653333pt;}
.y23{bottom:217.645333pt;}
.yc2{bottom:219.924000pt;}
.yed{bottom:224.684000pt;}
.y6a{bottom:231.593333pt;}
.y41{bottom:233.536000pt;}
.y22{bottom:233.585333pt;}
.yc1{bottom:235.864000pt;}
.y8f{bottom:236.522667pt;}
.yec{bottom:239.296000pt;}
.y69{bottom:247.533333pt;}
.y40{bottom:249.476000pt;}
.y21{bottom:249.525333pt;}
.yc0{bottom:251.804000pt;}
.y7c{bottom:252.426869pt;}
.yeb{bottom:252.653333pt;}
.y76{bottom:255.428928pt;}
.y79{bottom:256.724408pt;}
.y7b{bottom:263.078306pt;}
.y68{bottom:263.473333pt;}
.y3f{bottom:265.416000pt;}
.y20{bottom:265.465333pt;}
.yea{bottom:267.265333pt;}
.ybf{bottom:267.745333pt;}
.y67{bottom:279.413333pt;}
.y8e{bottom:279.688000pt;}
.y1f{bottom:281.405333pt;}
.ye9{bottom:281.877333pt;}
.ybe{bottom:283.685333pt;}
.y3e{bottom:294.968000pt;}
.ye8{bottom:295.234667pt;}
.y66{bottom:295.353333pt;}
.y8d{bottom:295.628000pt;}
.y1e{bottom:297.345333pt;}
.ybd{bottom:299.625333pt;}
.ye7{bottom:309.846667pt;}
.y65{bottom:311.294667pt;}
.y8c{bottom:311.568000pt;}
.y1d{bottom:313.286667pt;}
.ybc{bottom:315.565333pt;}
.ye6{bottom:323.202667pt;}
.y64{bottom:327.234667pt;}
.y8b{bottom:327.508000pt;}
.y1c{bottom:329.226667pt;}
.ybb{bottom:331.505333pt;}
.y3d{bottom:335.146667pt;}
.ye5{bottom:337.814667pt;}
.y63{bottom:343.174667pt;}
.y8a{bottom:343.449333pt;}
.y1b{bottom:345.166667pt;}
.yba{bottom:347.445333pt;}
.y3c{bottom:351.086667pt;}
.ye4{bottom:352.426667pt;}
.y62{bottom:359.114667pt;}
.y89{bottom:359.389333pt;}
.y1a{bottom:361.106667pt;}
.y73{bottom:362.919049pt;}
.yb9{bottom:363.386667pt;}
.ye3{bottom:365.784000pt;}
.y3b{bottom:367.028000pt;}
.y71{bottom:369.413031pt;}
.y77{bottom:370.007397pt;}
.y61{bottom:375.054667pt;}
.y88{bottom:375.329333pt;}
.y7a{bottom:375.332943pt;}
.y19{bottom:377.046667pt;}
.yb8{bottom:379.326667pt;}
.y70{bottom:379.776871pt;}
.ye2{bottom:380.396000pt;}
.y3a{bottom:382.968000pt;}
.y72{bottom:384.814561pt;}
.y78{bottom:390.511305pt;}
.y60{bottom:390.994667pt;}
.y87{bottom:391.269333pt;}
.y18{bottom:392.986667pt;}
.ye1{bottom:395.008000pt;}
.yb7{bottom:395.266667pt;}
.y39{bottom:398.908000pt;}
.y6f{bottom:400.071861pt;}
.y86{bottom:407.209333pt;}
.ye0{bottom:408.365333pt;}
.y6e{bottom:408.708394pt;}
.y17{bottom:408.928000pt;}
.yb6{bottom:411.206667pt;}
.y38{bottom:414.848000pt;}
.y5f{bottom:418.604000pt;}
.ydf{bottom:422.977333pt;}
.y16{bottom:424.868000pt;}
.yb5{bottom:427.146667pt;}
.y37{bottom:430.788000pt;}
.y5e{bottom:434.545333pt;}
.yde{bottom:437.589333pt;}
.y85{bottom:440.697333pt;}
.y15{bottom:440.808000pt;}
.yb4{bottom:443.086667pt;}
.y36{bottom:446.728000pt;}
.y5d{bottom:450.485333pt;}
.ydd{bottom:450.946667pt;}
.y84{bottom:455.309333pt;}
.y14{bottom:456.748000pt;}
.yb3{bottom:459.028000pt;}
.y35{bottom:462.669333pt;}
.ydc{bottom:465.558667pt;}
.y5c{bottom:466.425333pt;}
.y83{bottom:469.921333pt;}
.y13{bottom:472.688000pt;}
.yb2{bottom:474.968000pt;}
.y34{bottom:478.609333pt;}
.ydb{bottom:478.916000pt;}
.y5b{bottom:482.365333pt;}
.y6d{bottom:482.698667pt;}
.y12{bottom:488.629333pt;}
.yda{bottom:493.528000pt;}
.y33{bottom:494.549333pt;}
.y5a{bottom:498.305333pt;}
.yb1{bottom:503.949333pt;}
.yd9{bottom:508.140000pt;}
.y32{bottom:510.489333pt;}
.y59{bottom:514.245333pt;}
.y11{bottom:519.552000pt;}
.yb0{bottom:519.889333pt;}
.yd8{bottom:522.750667pt;}
.y31{bottom:526.429333pt;}
.y58{bottom:530.186667pt;}
.yaf{bottom:535.830667pt;}
.yd7{bottom:537.362667pt;}
.y30{bottom:542.369333pt;}
.y57{bottom:546.126667pt;}
.yd6{bottom:550.720000pt;}
.yae{bottom:551.770667pt;}
.y2f{bottom:558.310667pt;}
.y56{bottom:562.066667pt;}
.y10{bottom:563.464000pt;}
.yd5{bottom:565.332000pt;}
.yad{bottom:567.710667pt;}
.y2e{bottom:574.250667pt;}
.y55{bottom:578.006667pt;}
.yd4{bottom:579.944000pt;}
.yac{bottom:583.650667pt;}
.y2d{bottom:590.190667pt;}
.yf{bottom:592.448000pt;}
.yd3{bottom:593.301333pt;}
.y54{bottom:593.946667pt;}
.yab{bottom:599.590667pt;}
.y2c{bottom:606.130667pt;}
.ye{bottom:607.060000pt;}
.yd2{bottom:607.913333pt;}
.yaa{bottom:615.532000pt;}
.yd1{bottom:621.270667pt;}
.y53{bottom:621.556000pt;}
.yd{bottom:621.672000pt;}
.y2b{bottom:622.070667pt;}
.ya9{bottom:631.472000pt;}
.yd0{bottom:634.628000pt;}
.yc{bottom:636.284000pt;}
.y52{bottom:637.496000pt;}
.y2a{bottom:638.010667pt;}
.ycf{bottom:647.985333pt;}
.yb{bottom:650.896000pt;}
.y51{bottom:653.437333pt;}
.y29{bottom:653.952000pt;}
.ya8{bottom:660.453333pt;}
.yce{bottom:661.342667pt;}
.ya{bottom:665.508000pt;}
.y50{bottom:669.377333pt;}
.ycd{bottom:674.700000pt;}
.ya7{bottom:676.393333pt;}
.y9{bottom:680.120000pt;}
.y28{bottom:684.184000pt;}
.y4f{bottom:685.317333pt;}
.ycc{bottom:688.057333pt;}
.y8{bottom:694.732000pt;}
.y4e{bottom:701.257333pt;}
.ya6{bottom:706.056000pt;}
.y7{bottom:709.342667pt;}
.ycb{bottom:712.336000pt;}
.y4d{bottom:717.197333pt;}
.y90{bottom:718.833333pt;}
.y4c{bottom:733.137333pt;}
.y4b{bottom:749.078667pt;}
.yca{bottom:749.825333pt;}
.y6{bottom:761.117333pt;}
.y4a{bottom:765.018667pt;}
.yc9{bottom:765.765333pt;}
.y5{bottom:775.729333pt;}
.yc8{bottom:781.705333pt;}
.y4{bottom:790.341333pt;}
.y49{bottom:792.628000pt;}
.yc7{bottom:797.645333pt;}
.y48{bottom:808.568000pt;}
.yc6{bottom:813.586667pt;}
.y3{bottom:818.182667pt;}
.y47{bottom:824.508000pt;}
.yc5{bottom:829.526667pt;}
.y46{bottom:840.448000pt;}
.yc4{bottom:845.466667pt;}
.y45{bottom:856.388000pt;}
.yc3{bottom:861.406667pt;}
.y2{bottom:864.358667pt;}
.y44{bottom:872.329333pt;}
.y1{bottom:888.269333pt;}
.y27{bottom:922.806667pt;}
.h9{height:18.737823pt;}
.h8{height:19.207650pt;}
.hc{height:19.565603pt;}
.hb{height:22.360689pt;}
.h7{height:24.009563pt;}
.h5{height:27.895200pt;}
.h3{height:35.865600pt;}
.h2{height:39.850400pt;}
.h4{height:44.632747pt;}
.h1{height:53.559147pt;}
.ha{height:182.718199pt;}
.h6{height:418.857185pt;}
.h0{height:1056.000000pt;}
.w1{width:368.890521pt;}
.w2{width:438.059372pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:3.600332pt;}
.x1c{left:4.757262pt;}
.xd{left:7.887746pt;}
.x18{left:16.554507pt;}
.x10{left:19.773861pt;}
.x20{left:21.723751pt;}
.x19{left:26.630232pt;}
.x1e{left:36.445611pt;}
.xe{left:38.381618pt;}
.x27{left:71.912338pt;}
.x15{left:73.323650pt;}
.x17{left:84.206891pt;}
.x12{left:87.055565pt;}
.x2a{left:90.507101pt;}
.x23{left:95.517946pt;}
.x14{left:104.127228pt;}
.x11{left:115.843549pt;}
.x2b{left:128.277361pt;}
.x22{left:146.361971pt;}
.xf{left:173.925099pt;}
.x5{left:179.686667pt;}
.x2e{left:185.829333pt;}
.x1d{left:189.166667pt;}
.x8{left:192.969333pt;}
.x16{left:194.220953pt;}
.x3{left:199.065333pt;}
.x24{left:200.548435pt;}
.x4{left:202.297333pt;}
.x28{left:214.567904pt;}
.x7{left:217.481333pt;}
.x29{left:222.412645pt;}
.xb{left:223.748000pt;}
.x26{left:226.842354pt;}
.x1{left:239.192000pt;}
.x6{left:281.704000pt;}
.x2d{left:282.839592pt;}
.x1b{left:286.013656pt;}
.x25{left:306.701383pt;}
.x1a{left:314.820295pt;}
.xc{left:323.408809pt;}
.x9{left:332.806667pt;}
.x2{left:345.581333pt;}
.x13{left:349.909148pt;}
.x2c{left:353.737454pt;}
.x21{left:400.648953pt;}
.xa{left:634.645333pt;}
}




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