
    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_524f6c05a645f24752a1b483.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_71e71410ef9059d4a4b72fb6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_784af8b0e15cffe282079c39.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_db942a941e337621059665b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_f224fc7acb0eadd24d2351d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.774414;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_26cfa06b04ebded0dfc9ea4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;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_104b9443812eac9a5d52a321.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;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_b1c9f7bd5852b87d60472778.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_a372eef21a2b434ab5221b68.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_17a49795c76242afe7f03e1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.866699;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_7741fa661194030c3eeb361d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_05352c5793c0e69f3f4ddfe2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.856934;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:ffd;src:url('chunks/assets/font_8f68d7c43cc3a01031328b0a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;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;}
.m5{transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.439999px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.063403px;}
.lsb{letter-spacing:0.063491px;}
.ls4{letter-spacing:0.188076px;}
.ls6{letter-spacing:0.209208px;}
.ls0{letter-spacing:0.209232px;}
.ls3{letter-spacing:0.216936px;}
.ls5{letter-spacing:0.218754px;}
.lsa{letter-spacing:0.326492px;}
.ls8{letter-spacing:62.070395px;}
.ls7{letter-spacing:182.540807px;}
.ls1{letter-spacing:1819.351372px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(227,108,10),0 0.015em rgb(227,108,10),0.015em 0 rgb(227,108,10),0 -0.015em  rgb(227,108,10);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-32.399987px;}
.ws8{word-spacing:-16.886485px;}
.ws9{word-spacing:-16.623484px;}
.ws0{word-spacing:-16.623396px;}
.ws3{word-spacing:-16.559993px;}
.ws1{word-spacing:-16.374233px;}
.ws5{word-spacing:-15.011994px;}
.ws2{word-spacing:-14.939994px;}
.ws4{word-spacing:-14.374074px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-82.109418px;}
._1b{margin-left:-4.763335px;}
._3{margin-left:-3.529766px;}
._2{margin-left:-2.492333px;}
._1{margin-left:-1.194806px;}
._0{width:1.152887px;}
._8{width:2.380947px;}
._7{width:3.996582px;}
._6{width:5.240966px;}
._a{width:6.619272px;}
._9{width:7.733612px;}
._d{width:9.709230px;}
._b{width:10.878795px;}
._18{width:12.434683px;}
._c{width:13.904710px;}
._16{width:14.918489px;}
._e{width:16.190503px;}
._f{width:17.542803px;}
._10{width:18.550971px;}
._12{width:19.696501px;}
._17{width:20.723639px;}
._13{width:22.042151px;}
._19{width:23.989238px;}
._15{width:25.868880px;}
._14{width:26.876986px;}
._1a{width:27.982489px;}
._1c{width:30.426601px;}
._11{width:39.065671px;}
._5{width:266.942456px;}
.fc11{color:rgb(0,101,204);}
.fc10{color:rgb(51,51,51);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcd{color:rgb(227,108,10);}
.fc3{color:rgb(31,73,124);}
.fc9{color:rgb(153,142,164);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc7{color:rgb(205,196,214);}
.fc8{color:rgb(225,216,236);}
.fcf{color:rgb(44,62,80);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(180,172,188);}
.fca{color:rgb(243,238,248);}
.fc12{color:transparent;}
.fce{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fcc{color:rgb(112,48,160);}
.fs3{font-size:48.239981px;}
.fs5{font-size:51.119980px;}
.fs1{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs2{font-size:66.239974px;}
.fs4{font-size:95.759962px;}
.y54{bottom:-0.540058px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.360000px;}
.y28{bottom:2.699752px;}
.y4e{bottom:2.699961px;}
.y3{bottom:3.599537px;}
.y57{bottom:3.599542px;}
.y23{bottom:3.599604px;}
.yfd{bottom:3.599717px;}
.y101{bottom:3.599736px;}
.y103{bottom:3.599746px;}
.yff{bottom:3.779727px;}
.y105{bottom:3.779755px;}
.y1e{bottom:3.959604px;}
.yb{bottom:3.959980px;}
.y25{bottom:4.319743px;}
.yc{bottom:28.259989px;}
.ya{bottom:46.260000px;}
.y8{bottom:50.219980px;}
.y9{bottom:51.839979px;}
.y4d{bottom:94.500000px;}
.y8c{bottom:109.799956px;}
.y4c{bottom:111.779955px;}
.yfb{bottom:111.959955px;}
.ybe{bottom:113.039955px;}
.y11f{bottom:115.919954px;}
.yea{bottom:118.979952px;}
.ye7{bottom:121.679951px;}
.y8b{bottom:128.699949px;}
.yfa{bottom:130.859948px;}
.ybd{bottom:132.119947px;}
.ye9{bottom:134.279946px;}
.y11e{bottom:134.999946px;}
.ye6{bottom:140.759944px;}
.y53{bottom:144.720000px;}
.y32{bottom:146.159942px;}
.y8a{bottom:147.599941px;}
.yf9{bottom:149.759940px;}
.ybc{bottom:151.019940px;}
.y11d{bottom:153.899938px;}
.y52{bottom:159.659936px;}
.y89{bottom:166.679933px;}
.yf8{bottom:168.839932px;}
.ybb{bottom:170.099932px;}
.y11c{bottom:172.799931px;}
.y51{bottom:175.139930px;}
.ye5{bottom:178.739929px;}
.y88{bottom:185.579926px;}
.yf7{bottom:187.739925px;}
.yba{bottom:188.999924px;}
.y50{bottom:190.799924px;}
.y11b{bottom:191.879923px;}
.ye4{bottom:197.639921px;}
.y87{bottom:204.659918px;}
.yf6{bottom:206.819917px;}
.y4f{bottom:206.999917px;}
.yb9{bottom:207.899917px;}
.y11a{bottom:210.779916px;}
.ye3{bottom:216.539913px;}
.y86{bottom:223.559911px;}
.yf5{bottom:225.719910px;}
.yb8{bottom:226.979909px;}
.y119{bottom:229.859908px;}
.ye2{bottom:235.619906px;}
.y85{bottom:242.639903px;}
.y4b{bottom:243.719903px;}
.yf4{bottom:244.619902px;}
.yb7{bottom:245.879902px;}
.y118{bottom:248.759900px;}
.ye1{bottom:254.519898px;}
.y4a{bottom:257.579897px;}
.y84{bottom:261.539895px;}
.yf3{bottom:263.699895px;}
.yb6{bottom:264.959894px;}
.y117{bottom:267.659893px;}
.ye0{bottom:273.599891px;}
.y31{bottom:274.499890px;}
.y83{bottom:280.439888px;}
.y49{bottom:280.619888px;}
.yf2{bottom:282.599887px;}
.yb5{bottom:283.859886px;}
.y116{bottom:286.739885px;}
.ydf{bottom:292.499883px;}
.y82{bottom:299.519880px;}
.yf1{bottom:301.679879px;}
.yb4{bottom:302.759879px;}
.y48{bottom:303.479879px;}
.y115{bottom:305.639878px;}
.yde{bottom:311.399875px;}
.y47{bottom:317.339873px;}
.y81{bottom:318.419873px;}
.yf0{bottom:320.579872px;}
.yb3{bottom:321.839871px;}
.y114{bottom:324.719870px;}
.ydd{bottom:330.479868px;}
.y80{bottom:337.499865px;}
.yef{bottom:339.479864px;}
.y46{bottom:340.199864px;}
.yb2{bottom:340.739864px;}
.y113{bottom:343.619863px;}
.ydc{bottom:349.379860px;}
.y7f{bottom:356.399857px;}
.yee{bottom:358.559857px;}
.yb1{bottom:359.819856px;}
.y45{bottom:361.799855px;}
.y112{bottom:362.699855px;}
.ydb{bottom:368.459853px;}
.y7e{bottom:375.299850px;}
.y44{bottom:375.659850px;}
.yed{bottom:377.459849px;}
.yb0{bottom:378.719849px;}
.y30{bottom:379.439848px;}
.y111{bottom:381.599847px;}
.yda{bottom:387.359845px;}
.y43{bottom:389.339844px;}
.y7d{bottom:394.379842px;}
.yec{bottom:396.539841px;}
.yaf{bottom:397.619841px;}
.y110{bottom:400.499840px;}
.y42{bottom:403.199839px;}
.yd9{bottom:406.259837px;}
.yeb{bottom:411.839835px;}
.y7c{bottom:413.279835px;}
.yae{bottom:416.699833px;}
.y41{bottom:417.059833px;}
.y10f{bottom:419.579832px;}
.yd8{bottom:425.339830px;}
.y40{bottom:430.739828px;}
.y2f{bottom:432.179827px;}
.y7b{bottom:432.359827px;}
.yad{bottom:435.599826px;}
.y10e{bottom:438.479825px;}
.ye8{bottom:444.059822px;}
.yd7{bottom:444.239822px;}
.y2e{bottom:447.479821px;}
.y7a{bottom:451.259819px;}
.y3f{bottom:452.339819px;}
.yac{bottom:454.679818px;}
.y10d{bottom:457.559817px;}
.y2d{bottom:462.779815px;}
.yd6{bottom:463.319815px;}
.y3e{bottom:466.199814px;}
.y79{bottom:470.159812px;}
.yab{bottom:473.579811px;}
.y10c{bottom:476.459809px;}
.y2c{bottom:476.819809px;}
.y3d{bottom:480.059808px;}
.yd5{bottom:482.219807px;}
.y78{bottom:489.239804px;}
.yaa{bottom:492.659803px;}
.y3c{bottom:493.739803px;}
.y10b{bottom:495.359802px;}
.yd4{bottom:501.119800px;}
.y3b{bottom:507.599797px;}
.y77{bottom:508.139797px;}
.ya9{bottom:511.559795px;}
.y10a{bottom:514.439794px;}
.yd3{bottom:520.199792px;}
.y3a{bottom:521.459791px;}
.y76{bottom:527.219789px;}
.y2b{bottom:528.299789px;}
.ya8{bottom:530.459788px;}
.y109{bottom:533.339787px;}
.yd2{bottom:539.099784px;}
.y39{bottom:543.059783px;}
.y75{bottom:546.119782px;}
.ya7{bottom:549.539780px;}
.y108{bottom:552.419779px;}
.y38{bottom:556.739777px;}
.yd1{bottom:558.179777px;}
.y74{bottom:565.019774px;}
.ya6{bottom:568.439773px;}
.y37{bottom:570.599772px;}
.y107{bottom:571.319771px;}
.yd0{bottom:577.079769px;}
.y2a{bottom:579.959768px;}
.y73{bottom:584.099766px;}
.y36{bottom:584.459766px;}
.ya5{bottom:587.519765px;}
.y106{bottom:590.219764px;}
.y29{bottom:595.439762px;}
.ycf{bottom:595.979762px;}
.y35{bottom:598.139761px;}
.y72{bottom:602.999759px;}
.ya4{bottom:606.419757px;}
.y104{bottom:608.940000px;}
.y34{bottom:611.999755px;}
.yce{bottom:615.059754px;}
.y33{bottom:615.779754px;}
.y27{bottom:617.040000px;}
.y71{bottom:622.079751px;}
.ya3{bottom:625.319750px;}
.y102{bottom:632.520000px;}
.ycd{bottom:633.959746px;}
.y24{bottom:637.560000px;}
.y70{bottom:640.979744px;}
.y26{bottom:642.059743px;}
.ya2{bottom:644.399742px;}
.ycc{bottom:653.039739px;}
.y100{bottom:655.920000px;}
.y6f{bottom:659.879736px;}
.ya1{bottom:663.299735px;}
.ycb{bottom:671.939731px;}
.y1c{bottom:672.299731px;}
.y6e{bottom:678.959728px;}
.yfe{bottom:679.320000px;}
.ya0{bottom:682.379727px;}
.yca{bottom:691.019724px;}
.y1b{bottom:691.739723px;}
.y6d{bottom:697.859721px;}
.y9f{bottom:701.279719px;}
.yfc{bottom:702.900000px;}
.y1a{bottom:709.019716px;}
.yc9{bottom:709.919716px;}
.y6c{bottom:716.939713px;}
.y9e{bottom:720.179712px;}
.y19{bottom:726.659709px;}
.yc8{bottom:728.819708px;}
.y6b{bottom:735.839706px;}
.y9d{bottom:739.259704px;}
.y18{bottom:746.099702px;}
.yc7{bottom:747.899701px;}
.y6a{bottom:754.919698px;}
.y9c{bottom:758.159697px;}
.y17{bottom:763.379695px;}
.yc6{bottom:766.799693px;}
.y69{bottom:773.819690px;}
.y9b{bottom:777.239689px;}
.y16{bottom:781.199688px;}
.yc5{bottom:785.879686px;}
.y68{bottom:792.719683px;}
.y9a{bottom:796.139682px;}
.y15{bottom:800.639680px;}
.yc4{bottom:804.779678px;}
.y67{bottom:811.799675px;}
.y99{bottom:815.039674px;}
.y14{bottom:817.919673px;}
.yc3{bottom:823.679671px;}
.y66{bottom:830.699668px;}
.y98{bottom:834.119666px;}
.y13{bottom:835.559666px;}
.yc2{bottom:842.759663px;}
.y65{bottom:849.779660px;}
.y97{bottom:853.019659px;}
.y12{bottom:854.999658px;}
.yc1{bottom:861.659655px;}
.y64{bottom:868.679653px;}
.y96{bottom:872.099651px;}
.y11{bottom:872.279651px;}
.yc0{bottom:880.739648px;}
.y63{bottom:887.579645px;}
.y10{bottom:890.099644px;}
.y95{bottom:890.999644px;}
.ybf{bottom:899.639640px;}
.y62{bottom:906.659637px;}
.yf{bottom:909.539636px;}
.y94{bottom:918.539633px;}
.y61{bottom:925.559630px;}
.ye{bottom:926.819629px;}
.y93{bottom:937.619625px;}
.y60{bottom:944.639622px;}
.yd{bottom:955.079618px;}
.y92{bottom:956.519617px;}
.y5f{bottom:963.539615px;}
.y91{bottom:975.599610px;}
.y5e{bottom:982.439607px;}
.y1d{bottom:986.400000px;}
.y90{bottom:994.499602px;}
.y5d{bottom:1001.519599px;}
.y22{bottom:1009.079596px;}
.y8f{bottom:1013.399595px;}
.y5c{bottom:1020.419592px;}
.y21{bottom:1027.979589px;}
.y8e{bottom:1032.479587px;}
.y5b{bottom:1042.019583px;}
.y8d{bottom:1051.379579px;}
.y20{bottom:1055.879578px;}
.y1f{bottom:1074.959570px;}
.y5a{bottom:1106.279557px;}
.y59{bottom:1109.699556px;}
.y7{bottom:1119.059552px;}
.y5{bottom:1122.479551px;}
.y58{bottom:1126.979549px;}
.y4{bottom:1139.759544px;}
.y56{bottom:1140.660000px;}
.y55{bottom:1144.259542px;}
.y2{bottom:1153.440000px;}
.y1{bottom:1157.039537px;}
.h19{height:11.520000px;}
.h3{height:13.680000px;}
.h11{height:14.040000px;}
.h17{height:14.220000px;}
.h2{height:16.920000px;}
.hd{height:18.360000px;}
.h1c{height:18.540000px;}
.h7{height:18.720000px;}
.he{height:20.160000px;}
.h15{height:32.693893px;}
.h6{height:33.518307px;}
.h12{height:33.706744px;}
.h16{height:34.071666px;}
.h18{height:35.519400px;}
.h4{height:36.597642px;}
.h14{height:36.624009px;}
.h1a{height:37.520493px;}
.h13{height:39.339828px;}
.h8{height:39.830258px;}
.ha{height:40.501390px;}
.h1{height:41.522679px;}
.hf{height:44.149201px;}
.hb{height:44.207209px;}
.hc{height:44.893107px;}
.h5{height:46.025138px;}
.h10{height:47.465137px;}
.h1b{height:48.224512px;}
.h9{height:64.899818px;}
.h0{height:1188.000000px;}
.w14{width:1.080000px;}
.wf{width:3.420000px;}
.wa{width:3.600000px;}
.w6{width:5.400000px;}
.w10{width:6.120000px;}
.we{width:6.300000px;}
.w2{width:6.840000px;}
.wd{width:7.020000px;}
.w3{width:7.380000px;}
.w4{width:8.100000px;}
.w8{width:8.280000px;}
.w17{width:8.640000px;}
.w1c{width:16.560000px;}
.w12{width:21.780000px;}
.w16{width:24.840000px;}
.w7{width:33.120000px;}
.wb{width:33.660000px;}
.w1d{width:39.780000px;}
.w18{width:48.060000px;}
.w1f{width:53.280000px;}
.w9{width:58.500000px;}
.w1a{width:61.560000px;}
.w5{width:72.900000px;}
.w11{width:97.740000px;}
.w13{width:113.220000px;}
.wc{width:113.760000px;}
.w1b{width:138.780000px;}
.w19{width:141.120000px;}
.w1e{width:153.540000px;}
.w15{width:168.480000px;}
.w1{width:238.140000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:75.239970px;}
.x28{left:79.199968px;}
.x34{left:84.059966px;}
.x37{left:85.139966px;}
.x26{left:89.279964px;}
.x33{left:90.719964px;}
.x4b{left:91.979963px;}
.x2f{left:97.199961px;}
.x54{left:98.639961px;}
.x5{left:101.699959px;}
.x23{left:103.320000px;}
.x2a{left:104.399958px;}
.x25{left:106.559957px;}
.x1{left:107.999957px;}
.x1f{left:112.320000px;}
.x31{left:114.839954px;}
.xa{left:116.639953px;}
.x3f{left:118.440000px;}
.x15{left:122.759951px;}
.x12{left:126.719949px;}
.x30{left:130.859948px;}
.x53{left:134.997506px;}
.x4c{left:137.879945px;}
.x27{left:145.979942px;}
.x29{left:152.099939px;}
.xd{left:169.739932px;}
.x20{left:170.820000px;}
.x21{left:174.420000px;}
.x22{left:208.079917px;}
.x24{left:217.080000px;}
.x8{left:230.939908px;}
.x16{left:235.440000px;}
.x40{left:237.960000px;}
.xb{left:245.699594px;}
.x4a{left:250.379900px;}
.x2b{left:257.759837px;}
.x44{left:259.560000px;}
.x17{left:261.359895px;}
.x52{left:268.919892px;}
.x51{left:270.179892px;}
.x48{left:271.980000px;}
.xe{left:273.600261px;}
.x10{left:275.579437px;}
.x2d{left:277.379889px;}
.x2e{left:280.619888px;}
.x2c{left:284.399886px;}
.x1a{left:287.279885px;}
.x3c{left:298.259881px;}
.x3d{left:303.839878px;}
.x13{left:313.739654px;}
.x46{left:314.820000px;}
.x41{left:323.100000px;}
.x4d{left:327.779869px;}
.x42{left:331.560000px;}
.x3a{left:334.979866px;}
.x3b{left:340.559864px;}
.x49{left:351.720000px;}
.x45{left:360.000000px;}
.x47{left:363.060000px;}
.x6{left:370.799852px;}
.x4e{left:374.939850px;}
.x4f{left:378.539849px;}
.x43{left:379.620000px;}
.x50{left:383.219847px;}
.xc{left:397.619841px;}
.x19{left:399.779840px;}
.x18{left:403.199479px;}
.x9{left:409.139836px;}
.x3e{left:411.119836px;}
.xf{left:422.279831px;}
.x14{left:425.159830px;}
.x11{left:427.679829px;}
.x36{left:444.779822px;}
.x39{left:462.419815px;}
.x1b{left:482.040000px;}
.x1c{left:487.440000px;}
.x1d{left:520.560000px;}
.x35{left:660.960349px;}
.x2{left:679.860000px;}
.x3{left:684.359726px;}
.x1e{left:694.439722px;}
.x38{left:713.520089px;}
.x32{left:741.239704px;}
.x7{left:853.740000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.279999pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.056358pt;}
.lsb{letter-spacing:0.056436pt;}
.ls4{letter-spacing:0.167179pt;}
.ls6{letter-spacing:0.185962pt;}
.ls0{letter-spacing:0.185984pt;}
.ls3{letter-spacing:0.192832pt;}
.ls5{letter-spacing:0.194448pt;}
.lsa{letter-spacing:0.290215pt;}
.ls8{letter-spacing:55.173685pt;}
.ls7{letter-spacing:162.258495pt;}
.ls1{letter-spacing:1617.201220pt;}
.ws6{word-spacing:-28.799988pt;}
.ws8{word-spacing:-15.010209pt;}
.ws9{word-spacing:-14.776430pt;}
.ws0{word-spacing:-14.776352pt;}
.ws3{word-spacing:-14.719994pt;}
.ws1{word-spacing:-14.554874pt;}
.ws5{word-spacing:-13.343995pt;}
.ws2{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.776955pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-72.986149pt;}
._1b{margin-left:-4.234075pt;}
._3{margin-left:-3.137570pt;}
._2{margin-left:-2.215407pt;}
._1{margin-left:-1.062050pt;}
._0{width:1.024788pt;}
._8{width:2.116397pt;}
._7{width:3.552517pt;}
._6{width:4.658636pt;}
._a{width:5.883798pt;}
._9{width:6.874322pt;}
._d{width:8.630427pt;}
._b{width:9.670040pt;}
._18{width:11.053052pt;}
._c{width:12.359743pt;}
._16{width:13.260879pt;}
._e{width:14.391559pt;}
._f{width:15.593603pt;}
._10{width:16.489752pt;}
._12{width:17.508001pt;}
._17{width:18.421013pt;}
._13{width:19.593023pt;}
._19{width:21.323767pt;}
._15{width:22.994560pt;}
._14{width:23.890654pt;}
._1a{width:24.873324pt;}
._1c{width:27.045868pt;}
._11{width:34.725041pt;}
._5{width:237.282183pt;}
.fs3{font-size:42.879983pt;}
.fs5{font-size:45.439982pt;}
.fs1{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs2{font-size:58.879976pt;}
.fs4{font-size:85.119966pt;}
.y54{bottom:-0.480051pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.320000pt;}
.y28{bottom:2.399780pt;}
.y4e{bottom:2.399965pt;}
.y3{bottom:3.199589pt;}
.y57{bottom:3.199593pt;}
.y23{bottom:3.199648pt;}
.yfd{bottom:3.199749pt;}
.y101{bottom:3.199766pt;}
.y103{bottom:3.199774pt;}
.yff{bottom:3.359757pt;}
.y105{bottom:3.359782pt;}
.y1e{bottom:3.519648pt;}
.yb{bottom:3.519982pt;}
.y25{bottom:3.839772pt;}
.yc{bottom:25.119990pt;}
.ya{bottom:41.120000pt;}
.y8{bottom:44.639982pt;}
.y9{bottom:46.079982pt;}
.y4d{bottom:84.000000pt;}
.y8c{bottom:97.599961pt;}
.y4c{bottom:99.359960pt;}
.yfb{bottom:99.519960pt;}
.ybe{bottom:100.479960pt;}
.y11f{bottom:103.039959pt;}
.yea{bottom:105.759958pt;}
.ye7{bottom:108.159957pt;}
.y8b{bottom:114.399954pt;}
.yfa{bottom:116.319953pt;}
.ybd{bottom:117.439953pt;}
.ye9{bottom:119.359952pt;}
.y11e{bottom:119.999952pt;}
.ye6{bottom:125.119950pt;}
.y53{bottom:128.640000pt;}
.y32{bottom:129.919948pt;}
.y8a{bottom:131.199948pt;}
.yf9{bottom:133.119947pt;}
.ybc{bottom:134.239946pt;}
.y11d{bottom:136.799945pt;}
.y52{bottom:141.919943pt;}
.y89{bottom:148.159941pt;}
.yf8{bottom:150.079940pt;}
.ybb{bottom:151.199940pt;}
.y11c{bottom:153.599939pt;}
.y51{bottom:155.679938pt;}
.ye5{bottom:158.879936pt;}
.y88{bottom:164.959934pt;}
.yf7{bottom:166.879933pt;}
.yba{bottom:167.999933pt;}
.y50{bottom:169.599932pt;}
.y11b{bottom:170.559932pt;}
.ye4{bottom:175.679930pt;}
.y87{bottom:181.919927pt;}
.yf6{bottom:183.839926pt;}
.y4f{bottom:183.999926pt;}
.yb9{bottom:184.799926pt;}
.y11a{bottom:187.359925pt;}
.ye3{bottom:192.479923pt;}
.y86{bottom:198.719921pt;}
.yf5{bottom:200.639920pt;}
.yb8{bottom:201.759919pt;}
.y119{bottom:204.319918pt;}
.ye2{bottom:209.439916pt;}
.y85{bottom:215.679914pt;}
.y4b{bottom:216.639913pt;}
.yf4{bottom:217.439913pt;}
.yb7{bottom:218.559913pt;}
.y118{bottom:221.119912pt;}
.ye1{bottom:226.239910pt;}
.y4a{bottom:228.959908pt;}
.y84{bottom:232.479907pt;}
.yf3{bottom:234.399906pt;}
.yb6{bottom:235.519906pt;}
.y117{bottom:237.919905pt;}
.ye0{bottom:243.199903pt;}
.y31{bottom:243.999902pt;}
.y83{bottom:249.279900pt;}
.y49{bottom:249.439900pt;}
.yf2{bottom:251.199900pt;}
.yb5{bottom:252.319899pt;}
.y116{bottom:254.879898pt;}
.ydf{bottom:259.999896pt;}
.y82{bottom:266.239894pt;}
.yf1{bottom:268.159893pt;}
.yb4{bottom:269.119892pt;}
.y48{bottom:269.759892pt;}
.y115{bottom:271.679891pt;}
.yde{bottom:276.799889pt;}
.y47{bottom:282.079887pt;}
.y81{bottom:283.039887pt;}
.yf0{bottom:284.959886pt;}
.yb3{bottom:286.079886pt;}
.y114{bottom:288.639885pt;}
.ydd{bottom:293.759882pt;}
.y80{bottom:299.999880pt;}
.yef{bottom:301.759879pt;}
.y46{bottom:302.399879pt;}
.yb2{bottom:302.879879pt;}
.y113{bottom:305.439878pt;}
.ydc{bottom:310.559876pt;}
.y7f{bottom:316.799873pt;}
.yee{bottom:318.719873pt;}
.yb1{bottom:319.839872pt;}
.y45{bottom:321.599871pt;}
.y112{bottom:322.399871pt;}
.ydb{bottom:327.519869pt;}
.y7e{bottom:333.599867pt;}
.y44{bottom:333.919866pt;}
.yed{bottom:335.519866pt;}
.yb0{bottom:336.639865pt;}
.y30{bottom:337.279865pt;}
.y111{bottom:339.199864pt;}
.yda{bottom:344.319862pt;}
.y43{bottom:346.079862pt;}
.y7d{bottom:350.559860pt;}
.yec{bottom:352.479859pt;}
.yaf{bottom:353.439859pt;}
.y110{bottom:355.999858pt;}
.y42{bottom:358.399857pt;}
.yd9{bottom:361.119856pt;}
.yeb{bottom:366.079854pt;}
.y7c{bottom:367.359853pt;}
.yae{bottom:370.399852pt;}
.y41{bottom:370.719852pt;}
.y10f{bottom:372.959851pt;}
.yd8{bottom:378.079849pt;}
.y40{bottom:382.879847pt;}
.y2f{bottom:384.159846pt;}
.y7b{bottom:384.319846pt;}
.yad{bottom:387.199845pt;}
.y10e{bottom:389.759844pt;}
.ye8{bottom:394.719842pt;}
.yd7{bottom:394.879842pt;}
.y2e{bottom:397.759841pt;}
.y7a{bottom:401.119840pt;}
.y3f{bottom:402.079839pt;}
.yac{bottom:404.159838pt;}
.y10d{bottom:406.719837pt;}
.y2d{bottom:411.359835pt;}
.yd6{bottom:411.839835pt;}
.y3e{bottom:414.399834pt;}
.y79{bottom:417.919833pt;}
.yab{bottom:420.959832pt;}
.y10c{bottom:423.519831pt;}
.y2c{bottom:423.839830pt;}
.y3d{bottom:426.719829pt;}
.yd5{bottom:428.639829pt;}
.y78{bottom:434.879826pt;}
.yaa{bottom:437.919825pt;}
.y3c{bottom:438.879824pt;}
.y10b{bottom:440.319824pt;}
.yd4{bottom:445.439822pt;}
.y3b{bottom:451.199820pt;}
.y77{bottom:451.679819pt;}
.ya9{bottom:454.719818pt;}
.y10a{bottom:457.279817pt;}
.yd3{bottom:462.399815pt;}
.y3a{bottom:463.519815pt;}
.y76{bottom:468.639813pt;}
.y2b{bottom:469.599812pt;}
.ya8{bottom:471.519811pt;}
.y109{bottom:474.079810pt;}
.yd2{bottom:479.199808pt;}
.y39{bottom:482.719807pt;}
.y75{bottom:485.439806pt;}
.ya7{bottom:488.479805pt;}
.y108{bottom:491.039804pt;}
.y38{bottom:494.879802pt;}
.yd1{bottom:496.159802pt;}
.y74{bottom:502.239799pt;}
.ya6{bottom:505.279798pt;}
.y37{bottom:507.199797pt;}
.y107{bottom:507.839797pt;}
.yd0{bottom:512.959795pt;}
.y2a{bottom:515.519794pt;}
.y73{bottom:519.199792pt;}
.y36{bottom:519.519792pt;}
.ya5{bottom:522.239791pt;}
.y106{bottom:524.639790pt;}
.y29{bottom:529.279788pt;}
.ycf{bottom:529.759788pt;}
.y35{bottom:531.679787pt;}
.y72{bottom:535.999786pt;}
.ya4{bottom:539.039784pt;}
.y104{bottom:541.280000pt;}
.y34{bottom:543.999782pt;}
.yce{bottom:546.719781pt;}
.y33{bottom:547.359781pt;}
.y27{bottom:548.480000pt;}
.y71{bottom:552.959779pt;}
.ya3{bottom:555.839778pt;}
.y102{bottom:562.240000pt;}
.ycd{bottom:563.519775pt;}
.y24{bottom:566.720000pt;}
.y70{bottom:569.759772pt;}
.y26{bottom:570.719772pt;}
.ya2{bottom:572.799771pt;}
.ycc{bottom:580.479768pt;}
.y100{bottom:583.040000pt;}
.y6f{bottom:586.559765pt;}
.ya1{bottom:589.599764pt;}
.ycb{bottom:597.279761pt;}
.y1c{bottom:597.599761pt;}
.y6e{bottom:603.519759pt;}
.yfe{bottom:603.840000pt;}
.ya0{bottom:606.559757pt;}
.yca{bottom:614.239754pt;}
.y1b{bottom:614.879754pt;}
.y6d{bottom:620.319752pt;}
.y9f{bottom:623.359751pt;}
.yfc{bottom:624.800000pt;}
.y1a{bottom:630.239748pt;}
.yc9{bottom:631.039748pt;}
.y6c{bottom:637.279745pt;}
.y9e{bottom:640.159744pt;}
.y19{bottom:645.919742pt;}
.yc8{bottom:647.839741pt;}
.y6b{bottom:654.079738pt;}
.y9d{bottom:657.119737pt;}
.y18{bottom:663.199735pt;}
.yc7{bottom:664.799734pt;}
.y6a{bottom:671.039732pt;}
.y9c{bottom:673.919730pt;}
.y17{bottom:678.559729pt;}
.yc6{bottom:681.599727pt;}
.y69{bottom:687.839725pt;}
.y9b{bottom:690.879724pt;}
.y16{bottom:694.399722pt;}
.yc5{bottom:698.559721pt;}
.y68{bottom:704.639718pt;}
.y9a{bottom:707.679717pt;}
.y15{bottom:711.679715pt;}
.yc4{bottom:715.359714pt;}
.y67{bottom:721.599711pt;}
.y99{bottom:724.479710pt;}
.y14{bottom:727.039709pt;}
.yc3{bottom:732.159707pt;}
.y66{bottom:738.399705pt;}
.y98{bottom:741.439703pt;}
.y13{bottom:742.719703pt;}
.yc2{bottom:749.119700pt;}
.y65{bottom:755.359698pt;}
.y97{bottom:758.239697pt;}
.y12{bottom:759.999696pt;}
.yc1{bottom:765.919694pt;}
.y64{bottom:772.159691pt;}
.y96{bottom:775.199690pt;}
.y11{bottom:775.359690pt;}
.yc0{bottom:782.879687pt;}
.y63{bottom:788.959684pt;}
.y10{bottom:791.199684pt;}
.y95{bottom:791.999683pt;}
.ybf{bottom:799.679680pt;}
.y62{bottom:805.919678pt;}
.yf{bottom:808.479677pt;}
.y94{bottom:816.479673pt;}
.y61{bottom:822.719671pt;}
.ye{bottom:823.839670pt;}
.y93{bottom:833.439667pt;}
.y60{bottom:839.679664pt;}
.yd{bottom:848.959660pt;}
.y92{bottom:850.239660pt;}
.y5f{bottom:856.479657pt;}
.y91{bottom:867.199653pt;}
.y5e{bottom:873.279651pt;}
.y1d{bottom:876.800000pt;}
.y90{bottom:883.999646pt;}
.y5d{bottom:890.239644pt;}
.y22{bottom:896.959641pt;}
.y8f{bottom:900.799640pt;}
.y5c{bottom:907.039637pt;}
.y21{bottom:913.759634pt;}
.y8e{bottom:917.759633pt;}
.y5b{bottom:926.239630pt;}
.y8d{bottom:934.559626pt;}
.y20{bottom:938.559625pt;}
.y1f{bottom:955.519618pt;}
.y5a{bottom:983.359607pt;}
.y59{bottom:986.399605pt;}
.y7{bottom:994.719602pt;}
.y5{bottom:997.759601pt;}
.y58{bottom:1001.759599pt;}
.y4{bottom:1013.119595pt;}
.y56{bottom:1013.920000pt;}
.y55{bottom:1017.119593pt;}
.y2{bottom:1025.280000pt;}
.y1{bottom:1028.479589pt;}
.h19{height:10.240000pt;}
.h3{height:12.160000pt;}
.h11{height:12.480000pt;}
.h17{height:12.640000pt;}
.h2{height:15.040000pt;}
.hd{height:16.320000pt;}
.h1c{height:16.480000pt;}
.h7{height:16.640000pt;}
.he{height:17.920000pt;}
.h15{height:29.061238pt;}
.h6{height:29.794051pt;}
.h12{height:29.961551pt;}
.h16{height:30.285925pt;}
.h18{height:31.572800pt;}
.h4{height:32.531237pt;}
.h14{height:32.554674pt;}
.h1a{height:33.351549pt;}
.h13{height:34.968736pt;}
.h8{height:35.404673pt;}
.ha{height:36.001236pt;}
.h1{height:36.909048pt;}
.hf{height:39.243734pt;}
.hb{height:39.295297pt;}
.hc{height:39.904984pt;}
.h5{height:40.911234pt;}
.h10{height:42.191233pt;}
.h1b{height:42.866233pt;}
.h9{height:57.688727pt;}
.h0{height:1056.000000pt;}
.w14{width:0.960000pt;}
.wf{width:3.040000pt;}
.wa{width:3.200000pt;}
.w6{width:4.800000pt;}
.w10{width:5.440000pt;}
.we{width:5.600000pt;}
.w2{width:6.080000pt;}
.wd{width:6.240000pt;}
.w3{width:6.560000pt;}
.w4{width:7.200000pt;}
.w8{width:7.360000pt;}
.w17{width:7.680000pt;}
.w1c{width:14.720000pt;}
.w12{width:19.360000pt;}
.w16{width:22.080000pt;}
.w7{width:29.440000pt;}
.wb{width:29.920000pt;}
.w1d{width:35.360000pt;}
.w18{width:42.720000pt;}
.w1f{width:47.360000pt;}
.w9{width:52.000000pt;}
.w1a{width:54.720000pt;}
.w5{width:64.800000pt;}
.w11{width:86.880000pt;}
.w13{width:100.640000pt;}
.wc{width:101.120000pt;}
.w1b{width:123.360000pt;}
.w19{width:125.440000pt;}
.w1e{width:136.480000pt;}
.w15{width:149.760000pt;}
.w1{width:211.680000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:66.879973pt;}
.x28{left:70.399972pt;}
.x34{left:74.719970pt;}
.x37{left:75.679970pt;}
.x26{left:79.359968pt;}
.x33{left:80.639968pt;}
.x4b{left:81.759967pt;}
.x2f{left:86.399965pt;}
.x54{left:87.679965pt;}
.x5{left:90.399964pt;}
.x23{left:91.840000pt;}
.x2a{left:92.799963pt;}
.x25{left:94.719962pt;}
.x1{left:95.999962pt;}
.x1f{left:99.840000pt;}
.x31{left:102.079959pt;}
.xa{left:103.679959pt;}
.x3f{left:105.280000pt;}
.x15{left:109.119956pt;}
.x12{left:112.639955pt;}
.x30{left:116.319953pt;}
.x53{left:119.997783pt;}
.x4c{left:122.559951pt;}
.x27{left:129.759948pt;}
.x29{left:135.199946pt;}
.xd{left:150.879940pt;}
.x20{left:151.840000pt;}
.x21{left:155.040000pt;}
.x22{left:184.959926pt;}
.x24{left:192.960000pt;}
.x8{left:205.279918pt;}
.x16{left:209.280000pt;}
.x40{left:211.520000pt;}
.xb{left:218.399639pt;}
.x4a{left:222.559911pt;}
.x2b{left:229.119855pt;}
.x44{left:230.720000pt;}
.x17{left:232.319907pt;}
.x52{left:239.039904pt;}
.x51{left:240.159904pt;}
.x48{left:241.760000pt;}
.xe{left:243.200232pt;}
.x10{left:244.959499pt;}
.x2d{left:246.559901pt;}
.x2e{left:249.439900pt;}
.x2c{left:252.799899pt;}
.x1a{left:255.359898pt;}
.x3c{left:265.119894pt;}
.x3d{left:270.079892pt;}
.x13{left:278.879692pt;}
.x46{left:279.840000pt;}
.x41{left:287.200000pt;}
.x4d{left:291.359883pt;}
.x42{left:294.720000pt;}
.x3a{left:297.759881pt;}
.x3b{left:302.719879pt;}
.x49{left:312.640000pt;}
.x45{left:320.000000pt;}
.x47{left:322.720000pt;}
.x6{left:329.599868pt;}
.x4e{left:333.279867pt;}
.x4f{left:336.479865pt;}
.x43{left:337.440000pt;}
.x50{left:340.639864pt;}
.xc{left:353.439859pt;}
.x19{left:355.359858pt;}
.x18{left:358.399537pt;}
.x9{left:363.679855pt;}
.x3e{left:365.439854pt;}
.xf{left:375.359850pt;}
.x14{left:377.919849pt;}
.x11{left:380.159848pt;}
.x36{left:395.359842pt;}
.x39{left:411.039836pt;}
.x1b{left:428.480000pt;}
.x1c{left:433.280000pt;}
.x1d{left:462.720000pt;}
.x35{left:587.520311pt;}
.x2{left:604.320000pt;}
.x3{left:608.319757pt;}
.x1e{left:617.279753pt;}
.x38{left:634.240079pt;}
.x32{left:658.879736pt;}
.x7{left:758.880000pt;}
}




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