
    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_b5b6fdd670e433b70c041ba5.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_efbf4e338b7da70a69687b45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_8748050590e43b64dee92378.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_da1b3f7c103753795614fa7e.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_82185e726d10502d2ab5183c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_30dcac0168ad3162d47fc178.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_777d6b45fc79fd4dfaceb319.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.753418;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_9916ec73fcaf4483b60fa480.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9420a9281b3a187c8e0d7228.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_62e7cd228dd68ec50000b6ae.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e02af3423c153a58914e211f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f95afe27cdb3d79b8fb1e095.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_95d32a80fc0559de72154f1b.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_399db7bd9c1d83bb83205e81.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_bc0780e41d3360e02d1c93a4.woff2')format("woff");}.fff{font-family:fff;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;}
.m6{transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249512,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m1{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);}
.v1{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.034519px;}
.ls2{letter-spacing:0.062743px;}
.ls8{letter-spacing:0.063491px;}
.ls7{letter-spacing:0.068862px;}
.ls6{letter-spacing:0.068906px;}
.ls1{letter-spacing:0.203595px;}
.ls3{letter-spacing:15.355431px;}
.lsc{letter-spacing:71.033252px;}
.lsa{letter-spacing:71.033792px;}
.lsb{letter-spacing:71.034152px;}
.ls9{letter-spacing:71.036252px;}
.lsd{letter-spacing:71.036372px;}
.lse{letter-spacing:71.038412px;}
.ls0{letter-spacing:1507.140957px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(227,108,10);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-32.462730px;}
.wsa{word-spacing:-18.068855px;}
.ws9{word-spacing:-17.999993px;}
.wsc{word-spacing:-16.623484px;}
.wsb{word-spacing:-16.559993px;}
.ws5{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws2{word-spacing:-14.939994px;}
.ws4{word-spacing:-14.374074px;}
.ws3{word-spacing:-13.505755px;}
.ws7{word-spacing:-13.499995px;}
.ws1{word-spacing:-9.719996px;}
.ws8{word-spacing:0.000000px;}
._2{margin-left:-8.589990px;}
._1{margin-left:-4.191630px;}
._6{margin-left:-2.277897px;}
._3{margin-left:-1.237776px;}
._0{width:1.152887px;}
._5{width:2.172492px;}
._8{width:3.273049px;}
._11{width:4.317162px;}
._e{width:5.369599px;}
._f{width:6.479317px;}
._18{width:7.519013px;}
._10{width:8.800872px;}
._c{width:10.740663px;}
._b{width:12.104067px;}
._19{width:14.044576px;}
._d{width:15.284113px;}
._7{width:16.516687px;}
._4{width:17.645285px;}
._32{width:18.661464px;}
._15{width:19.774706px;}
._12{width:21.077296px;}
._a{width:22.562802px;}
._9{width:23.848704px;}
._1a{width:25.318838px;}
._14{width:26.623673px;}
._13{width:27.710626px;}
._1b{width:28.928805px;}
._28{width:30.733663px;}
._39{width:32.104811px;}
._1f{width:33.589564px;}
._1d{width:34.900620px;}
._1c{width:35.926614px;}
._1e{width:36.932099px;}
._17{width:39.707331px;}
._16{width:40.758535px;}
._22{width:44.314118px;}
._2a{width:46.099911px;}
._37{width:51.247088px;}
._38{width:52.568593px;}
._31{width:55.339984px;}
._36{width:56.467334px;}
._34{width:58.500424px;}
._33{width:59.553237px;}
._2d{width:61.675009px;}
._2c{width:62.929010px;}
._27{width:64.662505px;}
._30{width:67.620170px;}
._26{width:70.390069px;}
._35{width:81.134309px;}
._21{width:83.439033px;}
._2f{width:102.614599px;}
._2e{width:174.530358px;}
._23{width:190.822463px;}
._20{width:265.773865px;}
._2b{width:279.131117px;}
._29{width:298.822493px;}
._25{width:336.334389px;}
._24{width:378.895821px;}
.fc10{color:rgb(33,33,33);}
.fce{color:rgb(0,101,153);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(0,112,192);}
.fc11{color:rgb(34,34,34);}
.fcf{color:rgb(43,50,34);}
.fcc{color:rgb(0,101,204);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc8{color:rgb(227,108,10);}
.fcd{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs6{font-size:30.239988px;}
.fs5{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.y0{bottom:0.000000px;}
.y52{bottom:2.699955px;}
.y17{bottom:2.879674px;}
.y1f{bottom:2.879693px;}
.y23{bottom:2.879699px;}
.y27{bottom:2.879706px;}
.y2b{bottom:2.879712px;}
.ye8{bottom:3.959690px;}
.yec{bottom:3.959715px;}
.yf0{bottom:3.959740px;}
.yf4{bottom:3.959766px;}
.yf8{bottom:3.959791px;}
.yfd{bottom:3.959824px;}
.y32{bottom:4.319736px;}
.yba{bottom:4.319750px;}
.ya2{bottom:4.319927px;}
.y33{bottom:4.499736px;}
.y40{bottom:4.499751px;}
.ya{bottom:4.499980px;}
.yb{bottom:28.259989px;}
.y9{bottom:46.440000px;}
.y7{bottom:50.939980px;}
.y8{bottom:53.279979px;}
.y79{bottom:106.019958px;}
.y51{bottom:109.080000px;}
.y106{bottom:112.679955px;}
.y122{bottom:115.019954px;}
.yb8{bottom:116.099954px;}
.y98{bottom:116.639953px;}
.y5{bottom:122.039951px;}
.yc8{bottom:122.579951px;}
.ycd{bottom:132.299947px;}
.y121{bottom:133.919946px;}
.y14c{bottom:135.359946px;}
.y78{bottom:136.979945px;}
.y105{bottom:143.819942px;}
.y50{bottom:144.179942px;}
.yb7{bottom:147.059941px;}
.y97{bottom:147.599941px;}
.y73{bottom:152.099939px;}
.y3e{bottom:152.639939px;}
.y120{bottom:152.999939px;}
.y87{bottom:153.179939px;}
.yc7{bottom:153.719939px;}
.ya3{bottom:156.599937px;}
.ycc{bottom:163.259935px;}
.y14b{bottom:163.799934px;}
.y92{bottom:168.119933px;}
.y11f{bottom:171.899931px;}
.y163{bottom:172.259931px;}
.y104{bottom:174.779930px;}
.y57{bottom:176.399929px;}
.yb6{bottom:178.199929px;}
.y96{bottom:178.739929px;}
.ya1{bottom:179.280000px;}
.y72{bottom:183.059927px;}
.ydf{bottom:184.139926px;}
.yc6{bottom:184.679926px;}
.y11e{bottom:190.979924px;}
.y14a{bottom:192.239923px;}
.yd6{bottom:193.139923px;}
.ycb{bottom:194.219922px;}
.y56{bottom:194.399922px;}
.y86{bottom:199.079920px;}
.y103{bottom:205.919918px;}
.yb5{bottom:209.159916px;}
.y95{bottom:209.699916px;}
.y11d{bottom:209.879916px;}
.y55{bottom:212.219915px;}
.y71{bottom:214.199914px;}
.yde{bottom:215.279914px;}
.yc5{bottom:215.819914px;}
.y162{bottom:216.899913px;}
.y149{bottom:220.679912px;}
.y11c{bottom:228.959908px;}
.y54{bottom:230.039908px;}
.y85{bottom:230.219908px;}
.y102{bottom:236.879905px;}
.yd5{bottom:239.219904px;}
.yb4{bottom:240.299904px;}
.y70{bottom:245.159902px;}
.y161{bottom:245.339902px;}
.yca{bottom:246.419901px;}
.y11b{bottom:247.859901px;}
.y53{bottom:248.939900px;}
.y148{bottom:249.119900px;}
.y94{bottom:255.779898px;}
.y84{bottom:261.179896px;}
.yc4{bottom:261.899895px;}
.y11a{bottom:266.759893px;}
.yd4{bottom:270.179892px;}
.yb3{bottom:271.259891px;}
.yc9{bottom:273.239891px;}
.y160{bottom:273.779890px;}
.y6f{bottom:276.299889px;}
.y147{bottom:277.739889px;}
.y93{bottom:282.779887px;}
.y101{bottom:282.959887px;}
.y4f{bottom:283.319887px;}
.y3d{bottom:284.039886px;}
.y119{bottom:285.839886px;}
.y91{bottom:292.319883px;}
.y15f{bottom:295.739882px;}
.yd3{bottom:301.319879px;}
.y118{bottom:304.739878px;}
.y146{bottom:306.179878px;}
.y4e{bottom:306.899877px;}
.y6e{bottom:307.259877px;}
.yc3{bottom:307.799877px;}
.yb2{bottom:317.339873px;}
.y15e{bottom:317.519873px;}
.ydd{bottom:323.279871px;}
.y117{bottom:323.819870px;}
.yd2{bottom:332.279867px;}
.y145{bottom:334.619866px;}
.y100{bottom:334.979866px;}
.y6d{bottom:338.399865px;}
.yc2{bottom:338.939864px;}
.y15d{bottom:339.299864px;}
.y116{bottom:342.719863px;}
.y4d{bottom:344.879862px;}
.ydc{bottom:354.419858px;}
.y15c{bottom:361.079856px;}
.y115{bottom:361.619855px;}
.y144{bottom:363.059855px;}
.yb1{bottom:363.419855px;}
.yff{bottom:366.119854px;}
.y4c{bottom:368.459853px;}
.y6c{bottom:369.359852px;}
.yc1{bottom:369.899852px;}
.y15b{bottom:380.339848px;}
.y114{bottom:380.699848px;}
.y3c{bottom:382.319847px;}
.ydb{bottom:385.379846px;}
.y143{bottom:391.499843px;}
.y4b{bottom:391.679843px;}
.yb0{bottom:394.379842px;}
.yfe{bottom:397.079841px;}
.y15a{bottom:399.239840px;}
.y113{bottom:399.599840px;}
.y83{bottom:400.499840px;}
.yc0{bottom:401.039840px;}
.y142{bottom:410.579836px;}
.y4a{bottom:414.899834px;}
.y6b{bottom:415.439834px;}
.yda{bottom:416.519833px;}
.y159{bottom:418.319833px;}
.yaf{bottom:425.519830px;}
.y112{bottom:427.859829px;}
.y3b{bottom:428.399829px;}
.y141{bottom:429.659828px;}
.y82{bottom:431.459827px;}
.ybf{bottom:431.999827px;}
.yfc{bottom:435.600000px;}
.y158{bottom:437.219825px;}
.y49{bottom:438.299825px;}
.y3a{bottom:446.039822px;}
.y6a{bottom:446.399821px;}
.y140{bottom:448.559821px;}
.y111{bottom:456.299817px;}
.yae{bottom:456.479817px;}
.y157{bottom:458.819816px;}
.yfb{bottom:460.259816px;}
.y48{bottom:461.519815px;}
.y81{bottom:462.599815px;}
.y39{bottom:463.499815px;}
.y13f{bottom:467.639813px;}
.y110{bottom:475.559810px;}
.y69{bottom:477.539809px;}
.y38{bottom:479.879808px;}
.y156{bottom:480.599808px;}
.yfa{bottom:480.959808px;}
.ybe{bottom:484.019806px;}
.y47{bottom:484.739806px;}
.y13e{bottom:486.539805px;}
.yad{bottom:487.619805px;}
.y90{bottom:493.559803px;}
.y10f{bottom:494.459802px;}
.yf9{bottom:501.659799px;}
.y155{bottom:502.559799px;}
.y13d{bottom:505.439798px;}
.y46{bottom:508.139797px;}
.y68{bottom:508.499797px;}
.y10e{bottom:513.539795px;}
.ybd{bottom:515.159794px;}
.yac{bottom:518.579793px;}
.yf7{bottom:519.120000px;}
.y154{bottom:524.339790px;}
.y13c{bottom:524.519790px;}
.y8f{bottom:524.699790px;}
.y37{bottom:524.879790px;}
.y45{bottom:531.359787px;}
.y10d{bottom:532.439787px;}
.y67{bottom:539.639784px;}
.y13b{bottom:543.419783px;}
.yf6{bottom:543.779782px;}
.ybc{bottom:546.119782px;}
.yab{bottom:549.719780px;}
.y10c{bottom:551.339779px;}
.y44{bottom:554.759778px;}
.y8e{bottom:555.659778px;}
.y13a{bottom:562.499775px;}
.yf5{bottom:564.479774px;}
.y36{bottom:567.359773px;}
.y66{bottom:570.599772px;}
.y43{bottom:577.979769px;}
.y10b{bottom:579.779768px;}
.yd1{bottom:580.679768px;}
.y139{bottom:581.399767px;}
.yf3{bottom:581.940000px;}
.y35{bottom:582.839767px;}
.yd9{bottom:586.799765px;}
.yaa{bottom:595.799762px;}
.ybb{bottom:598.319761px;}
.y138{bottom:600.479760px;}
.y42{bottom:601.199760px;}
.y65{bottom:601.739759px;}
.yf2{bottom:606.599757px;}
.y10a{bottom:608.219757px;}
.y3f{bottom:617.040000px;}
.yd8{bottom:617.759753px;}
.y34{bottom:618.299753px;}
.y137{bottom:619.379752px;}
.yb9{bottom:621.000000px;}
.y41{bottom:624.599750px;}
.ya9{bottom:626.759749px;}
.yf1{bottom:627.299749px;}
.y64{bottom:632.699747px;}
.y109{bottom:636.659745px;}
.y136{bottom:638.279745px;}
.yef{bottom:644.940000px;}
.yd7{bottom:648.899740px;}
.y31{bottom:655.200000px;}
.y135{bottom:657.359737px;}
.ya8{bottom:657.899737px;}
.y63{bottom:663.839734px;}
.y108{bottom:665.099734px;}
.yee{bottom:669.599732px;}
.y134{bottom:676.259729px;}
.y77{bottom:678.779728px;}
.ya7{bottom:688.859724px;}
.y2c{bottom:689.579724px;}
.yed{bottom:690.299724px;}
.y62{bottom:694.799722px;}
.y133{bottom:695.339722px;}
.yeb{bottom:707.760000px;}
.y76{bottom:709.919716px;}
.y132{bottom:714.239714px;}
.y2a{bottom:717.660000px;}
.ya6{bottom:719.999712px;}
.y29{bottom:720.539712px;}
.y28{bottom:725.039710px;}
.y61{bottom:725.939710px;}
.yea{bottom:732.419707px;}
.y131{bottom:733.139707px;}
.y26{bottom:733.320000px;}
.ya0{bottom:734.939706px;}
.y25{bottom:736.199706px;}
.y24{bottom:740.699704px;}
.y75{bottom:740.879704px;}
.y22{bottom:749.340000px;}
.ya5{bottom:750.959700px;}
.y21{bottom:752.219699px;}
.ye9{bottom:753.119699px;}
.y107{bottom:755.999698px;}
.y20{bottom:756.719697px;}
.y8d{bottom:756.899697px;}
.y1e{bottom:765.180000px;}
.y9f{bottom:765.899694px;}
.y1d{bottom:768.059693px;}
.ye7{bottom:770.580000px;}
.y130{bottom:771.119692px;}
.y60{bottom:772.019691px;}
.y1c{bottom:772.559691px;}
.ya4{bottom:781.919687px;}
.y1b{bottom:783.899686px;}
.y80{bottom:786.959685px;}
.y8c{bottom:788.039685px;}
.y1a{bottom:788.399685px;}
.y12f{bottom:790.199684px;}
.ye6{bottom:795.239682px;}
.y9e{bottom:797.039681px;}
.y19{bottom:799.739680px;}
.y5f{bottom:802.979679px;}
.y18{bottom:804.239678px;}
.y12e{bottom:809.099676px;}
.y16{bottom:812.700000px;}
.yd0{bottom:813.059675px;}
.y15{bottom:815.579674px;}
.ye5{bottom:815.939674px;}
.y7f{bottom:817.919673px;}
.y8b{bottom:818.999672px;}
.y14{bottom:820.079672px;}
.y9d{bottom:827.999669px;}
.y13{bottom:831.419667px;}
.y5e{bottom:834.119666px;}
.y12{bottom:835.919666px;}
.ye4{bottom:837.359665px;}
.ycf{bottom:844.019662px;}
.y12d{bottom:847.079661px;}
.y7e{bottom:849.059660px;}
.y8a{bottom:850.139660px;}
.ye3{bottom:858.059657px;}
.y9c{bottom:859.139656px;}
.y10{bottom:863.639655px;}
.y5d{bottom:865.079654px;}
.y153{bottom:865.799654px;}
.y12c{bottom:865.979654px;}
.y11{bottom:868.859652px;}
.yce{bottom:875.159650px;}
.ye2{bottom:878.759648px;}
.y7d{bottom:880.019648px;}
.y89{bottom:881.099648px;}
.y12b{bottom:885.059646px;}
.ye{bottom:889.559644px;}
.y9b{bottom:890.099644px;}
.y152{bottom:894.239642px;}
.yf{bottom:894.779642px;}
.y5c{bottom:896.219642px;}
.ye1{bottom:899.459640px;}
.y12a{bottom:903.959638px;}
.y7c{bottom:911.159636px;}
.y88{bottom:912.239635px;}
.yd{bottom:917.819633px;}
.y9a{bottom:921.239632px;}
.y151{bottom:922.679631px;}
.y129{bottom:922.859631px;}
.y5b{bottom:927.179629px;}
.y128{bottom:941.939623px;}
.y7b{bottom:942.119623px;}
.yc{bottom:948.959620px;}
.y150{bottom:951.299619px;}
.ye0{bottom:952.379619px;}
.y5a{bottom:958.319617px;}
.y127{bottom:960.839616px;}
.y7a{bottom:973.259611px;}
.y14f{bottom:979.739608px;}
.y126{bottom:979.919608px;}
.y2f{bottom:982.439607px;}
.y59{bottom:989.279604px;}
.y125{bottom:998.819600px;}
.y2e{bottom:1003.499599px;}
.y74{bottom:1004.219598px;}
.y14e{bottom:1008.179597px;}
.y124{bottom:1017.719593px;}
.y99{bottom:1035.179586px;}
.y58{bottom:1035.359586px;}
.y14d{bottom:1036.619585px;}
.y123{bottom:1036.799585px;}
.y2d{bottom:1051.199580px;}
.y30{bottom:1060.919576px;}
.y4{bottom:1074.599570px;}
.y6{bottom:1104.479558px;}
.y3{bottom:1108.799556px;}
.y2{bottom:1128.599549px;}
.y1{bottom:1148.399541px;}
.hc{height:13.680000px;}
.h1a{height:14.220000px;}
.h11{height:20.160000px;}
.h5{height:20.340000px;}
.h1d{height:20.520000px;}
.ha{height:20.996710px;}
.he{height:21.011476px;}
.h9{height:26.350302px;}
.h18{height:32.788112px;}
.hb{height:33.494752px;}
.hd{height:33.518307px;}
.h14{height:33.706744px;}
.h19{height:34.071666px;}
.h4{height:34.625377px;}
.h1b{height:35.519400px;}
.h16{height:36.624009px;}
.h3{height:36.703110px;}
.h17{height:37.520493px;}
.h15{height:39.339828px;}
.h8{height:40.501390px;}
.hf{height:40.793187px;}
.h1{height:41.522679px;}
.h6{height:42.894123px;}
.h12{height:44.149201px;}
.h13{height:45.022482px;}
.h1f{height:46.025138px;}
.h10{height:46.283888px;}
.h2{height:47.545293px;}
.h1e{height:48.256856px;}
.h7{height:48.796855px;}
.h1c{height:50.027324px;}
.h0{height:1188.000000px;}
.w5{width:0.360000px;}
.w8{width:3.600000px;}
.w1{width:5.040000px;}
.wd{width:6.300000px;}
.wb{width:8.100000px;}
.wa{width:8.280000px;}
.w11{width:9.000000px;}
.w16{width:32.940000px;}
.w9{width:33.660000px;}
.w7{width:58.500000px;}
.wc{width:70.380000px;}
.w12{width:87.660000px;}
.w15{width:91.080000px;}
.wf{width:117.000000px;}
.w4{width:122.760000px;}
.w13{width:129.420000px;}
.we{width:142.920000px;}
.w14{width:165.420000px;}
.w10{width:205.920000px;}
.w2{width:219.780000px;}
.w6{width:223.920000px;}
.w3{width:392.760000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x38{left:82.619967px;}
.x36{left:84.599966px;}
.x33{left:98.639961px;}
.x3a{left:99.719960px;}
.x35{left:104.579890px;}
.x34{left:106.019958px;}
.x1{left:107.999957px;}
.x9{left:124.739950px;}
.x39{left:131.219948px;}
.x4{left:133.199947px;}
.x4d{left:134.999946px;}
.x7{left:139.139944px;}
.x37{left:141.299943px;}
.x2f{left:166.140000px;}
.x30{left:169.740000px;}
.x19{left:199.799920px;}
.x1a{left:203.573919px;}
.x1e{left:208.073917px;}
.x23{left:210.419916px;}
.x24{left:214.193914px;}
.x20{left:221.579911px;}
.x21{left:225.353910px;}
.x3b{left:226.439909px;}
.x2b{left:234.359906px;}
.x26{left:241.919903px;}
.x40{left:243.899902px;}
.x27{left:245.699902px;}
.x31{left:248.580000px;}
.x2a{left:250.739900px;}
.x1b{left:255.779898px;}
.xa{left:256.859897px;}
.x1c{left:259.553896px;}
.xb{left:269.099892px;}
.x3e{left:275.579890px;}
.x3d{left:276.840000px;}
.x44{left:296.819296px;}
.x2{left:302.579879px;}
.x29{left:304.199878px;}
.x42{left:317.159873px;}
.x32{left:340.020000px;}
.x14{left:350.999278px;}
.x8{left:363.419660px;}
.xc{left:385.379846px;}
.xd{left:390.239844px;}
.x5{left:399.779840px;}
.x45{left:413.819301px;}
.x2c{left:415.259834px;}
.x15{left:421.559831px;}
.x16{left:428.939828px;}
.xe{left:509.399796px;}
.x2d{left:511.379795px;}
.xf{left:514.259794px;}
.x46{left:520.199234px;}
.x1f{left:525.240000px;}
.x17{left:558.359777px;}
.x18{left:563.219775px;}
.x3c{left:611.279755px;}
.x10{left:629.639748px;}
.x11{left:634.499746px;}
.x47{left:637.019135px;}
.x4c{left:669.960000px;}
.x3{left:686.159726px;}
.x2e{left:687.960279px;}
.x28{left:694.080000px;}
.x1d{left:698.220000px;}
.x49{left:724.680000px;}
.x4b{left:728.100000px;}
.x12{left:745.739702px;}
.x13{left:750.599700px;}
.x4a{left:766.440000px;}
.x3f{left:775.080000px;}
.x22{left:795.240000px;}
.x41{left:801.000000px;}
.x43{left:803.159882px;}
.x6{left:804.600000px;}
.x48{left:842.940000px;}
.x25{left:917.640000px;}
@media print{
.v1{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.030684pt;}
.ls2{letter-spacing:0.055772pt;}
.ls8{letter-spacing:0.056436pt;}
.ls7{letter-spacing:0.061211pt;}
.ls6{letter-spacing:0.061250pt;}
.ls1{letter-spacing:0.180973pt;}
.ls3{letter-spacing:13.649272pt;}
.lsc{letter-spacing:63.140668pt;}
.lsa{letter-spacing:63.141148pt;}
.lsb{letter-spacing:63.141468pt;}
.ls9{letter-spacing:63.143335pt;}
.lsd{letter-spacing:63.143441pt;}
.lse{letter-spacing:63.145255pt;}
.ls0{letter-spacing:1339.680851pt;}
.ws6{word-spacing:-28.855760pt;}
.wsa{word-spacing:-16.061204pt;}
.ws9{word-spacing:-15.999994pt;}
.wsc{word-spacing:-14.776430pt;}
.wsb{word-spacing:-14.719994pt;}
.ws5{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws2{word-spacing:-13.279995pt;}
.ws4{word-spacing:-12.776955pt;}
.ws3{word-spacing:-12.005115pt;}
.ws7{word-spacing:-11.999995pt;}
.ws1{word-spacing:-8.639997pt;}
.ws8{word-spacing:0.000000pt;}
._2{margin-left:-7.635546pt;}
._1{margin-left:-3.725894pt;}
._6{margin-left:-2.024797pt;}
._3{margin-left:-1.100245pt;}
._0{width:1.024788pt;}
._5{width:1.931104pt;}
._8{width:2.909377pt;}
._11{width:3.837477pt;}
._e{width:4.772977pt;}
._f{width:5.759393pt;}
._18{width:6.683567pt;}
._10{width:7.822997pt;}
._c{width:9.547256pt;}
._b{width:10.759170pt;}
._19{width:12.484068pt;}
._d{width:13.585879pt;}
._7{width:14.681500pt;}
._4{width:15.684698pt;}
._32{width:16.587968pt;}
._15{width:17.577516pt;}
._12{width:18.735374pt;}
._a{width:20.055824pt;}
._9{width:21.198848pt;}
._1a{width:22.505634pt;}
._14{width:23.665487pt;}
._13{width:24.631668pt;}
._1b{width:25.714493pt;}
._28{width:27.318812pt;}
._39{width:28.537610pt;}
._1f{width:29.857390pt;}
._1d{width:31.022773pt;}
._1c{width:31.934768pt;}
._1e{width:32.828533pt;}
._17{width:35.295405pt;}
._16{width:36.229809pt;}
._22{width:39.390327pt;}
._2a{width:40.977699pt;}
._37{width:45.552967pt;}
._38{width:46.727638pt;}
._31{width:49.191097pt;}
._36{width:50.193186pt;}
._34{width:52.000377pt;}
._33{width:52.936211pt;}
._2d{width:54.822230pt;}
._2c{width:55.936898pt;}
._27{width:57.477782pt;}
._30{width:60.106817pt;}
._26{width:62.568950pt;}
._35{width:72.119386pt;}
._21{width:74.168029pt;}
._2f{width:91.212977pt;}
._2e{width:155.138096pt;}
._23{width:169.619967pt;}
._20{width:236.243436pt;}
._2b{width:248.116549pt;}
._29{width:265.619994pt;}
._25{width:298.963902pt;}
._24{width:336.796285pt;}
.fs6{font-size:26.879989pt;}
.fs5{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:2.399960pt;}
.y17{bottom:2.559710pt;}
.y1f{bottom:2.559727pt;}
.y23{bottom:2.559733pt;}
.y27{bottom:2.559738pt;}
.y2b{bottom:2.559744pt;}
.ye8{bottom:3.519725pt;}
.yec{bottom:3.519747pt;}
.yf0{bottom:3.519769pt;}
.yf4{bottom:3.519792pt;}
.yf8{bottom:3.519814pt;}
.yfd{bottom:3.519844pt;}
.y32{bottom:3.839766pt;}
.yba{bottom:3.839778pt;}
.ya2{bottom:3.839935pt;}
.y33{bottom:3.999765pt;}
.y40{bottom:3.999779pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:25.119990pt;}
.y9{bottom:41.280000pt;}
.y7{bottom:45.279982pt;}
.y8{bottom:47.359981pt;}
.y79{bottom:94.239962pt;}
.y51{bottom:96.960000pt;}
.y106{bottom:100.159960pt;}
.y122{bottom:102.239959pt;}
.yb8{bottom:103.199959pt;}
.y98{bottom:103.679959pt;}
.y5{bottom:108.479957pt;}
.yc8{bottom:108.959956pt;}
.ycd{bottom:117.599953pt;}
.y121{bottom:119.039952pt;}
.y14c{bottom:120.319952pt;}
.y78{bottom:121.759951pt;}
.y105{bottom:127.839949pt;}
.y50{bottom:128.159949pt;}
.yb7{bottom:130.719948pt;}
.y97{bottom:131.199948pt;}
.y73{bottom:135.199946pt;}
.y3e{bottom:135.679946pt;}
.y120{bottom:135.999946pt;}
.y87{bottom:136.159946pt;}
.yc7{bottom:136.639945pt;}
.ya3{bottom:139.199944pt;}
.ycc{bottom:145.119942pt;}
.y14b{bottom:145.599942pt;}
.y92{bottom:149.439940pt;}
.y11f{bottom:152.799939pt;}
.y163{bottom:153.119939pt;}
.y104{bottom:155.359938pt;}
.y57{bottom:156.799937pt;}
.yb6{bottom:158.399937pt;}
.y96{bottom:158.879936pt;}
.ya1{bottom:159.360000pt;}
.y72{bottom:162.719935pt;}
.ydf{bottom:163.679935pt;}
.yc6{bottom:164.159934pt;}
.y11e{bottom:169.759932pt;}
.y14a{bottom:170.879932pt;}
.yd6{bottom:171.679931pt;}
.ycb{bottom:172.639931pt;}
.y56{bottom:172.799931pt;}
.y86{bottom:176.959929pt;}
.y103{bottom:183.039927pt;}
.yb5{bottom:185.919926pt;}
.y95{bottom:186.399925pt;}
.y11d{bottom:186.559925pt;}
.y55{bottom:188.639925pt;}
.y71{bottom:190.399924pt;}
.yde{bottom:191.359923pt;}
.yc5{bottom:191.839923pt;}
.y162{bottom:192.799923pt;}
.y149{bottom:196.159922pt;}
.y11c{bottom:203.519919pt;}
.y54{bottom:204.479918pt;}
.y85{bottom:204.639918pt;}
.y102{bottom:210.559916pt;}
.yd5{bottom:212.639915pt;}
.yb4{bottom:213.599915pt;}
.y70{bottom:217.919913pt;}
.y161{bottom:218.079913pt;}
.yca{bottom:219.039912pt;}
.y11b{bottom:220.319912pt;}
.y53{bottom:221.279911pt;}
.y148{bottom:221.439911pt;}
.y94{bottom:227.359909pt;}
.y84{bottom:232.159907pt;}
.yc4{bottom:232.799907pt;}
.y11a{bottom:237.119905pt;}
.yd4{bottom:240.159904pt;}
.yb3{bottom:241.119904pt;}
.yc9{bottom:242.879903pt;}
.y160{bottom:243.359903pt;}
.y6f{bottom:245.599902pt;}
.y147{bottom:246.879901pt;}
.y93{bottom:251.359899pt;}
.y101{bottom:251.519899pt;}
.y4f{bottom:251.839899pt;}
.y3d{bottom:252.479899pt;}
.y119{bottom:254.079898pt;}
.y91{bottom:259.839896pt;}
.y15f{bottom:262.879895pt;}
.yd3{bottom:267.839893pt;}
.y118{bottom:270.879892pt;}
.y146{bottom:272.159891pt;}
.y4e{bottom:272.799891pt;}
.y6e{bottom:273.119891pt;}
.yc3{bottom:273.599891pt;}
.yb2{bottom:282.079887pt;}
.y15e{bottom:282.239887pt;}
.ydd{bottom:287.359885pt;}
.y117{bottom:287.839885pt;}
.yd2{bottom:295.359882pt;}
.y145{bottom:297.439881pt;}
.y100{bottom:297.759881pt;}
.y6d{bottom:300.799880pt;}
.yc2{bottom:301.279879pt;}
.y15d{bottom:301.599879pt;}
.y116{bottom:304.639878pt;}
.y4d{bottom:306.559877pt;}
.ydc{bottom:315.039874pt;}
.y15c{bottom:320.959872pt;}
.y115{bottom:321.439871pt;}
.y144{bottom:322.719871pt;}
.yb1{bottom:323.039871pt;}
.yff{bottom:325.439870pt;}
.y4c{bottom:327.519869pt;}
.y6c{bottom:328.319869pt;}
.yc1{bottom:328.799868pt;}
.y15b{bottom:338.079865pt;}
.y114{bottom:338.399865pt;}
.y3c{bottom:339.839864pt;}
.ydb{bottom:342.559863pt;}
.y143{bottom:347.999861pt;}
.y4b{bottom:348.159861pt;}
.yb0{bottom:350.559860pt;}
.yfe{bottom:352.959859pt;}
.y15a{bottom:354.879858pt;}
.y113{bottom:355.199858pt;}
.y83{bottom:355.999858pt;}
.yc0{bottom:356.479857pt;}
.y142{bottom:364.959854pt;}
.y4a{bottom:368.799852pt;}
.y6b{bottom:369.279852pt;}
.yda{bottom:370.239852pt;}
.y159{bottom:371.839851pt;}
.yaf{bottom:378.239849pt;}
.y112{bottom:380.319848pt;}
.y3b{bottom:380.799848pt;}
.y141{bottom:381.919847pt;}
.y82{bottom:383.519847pt;}
.ybf{bottom:383.999846pt;}
.yfc{bottom:387.200000pt;}
.y158{bottom:388.639845pt;}
.y49{bottom:389.599844pt;}
.y3a{bottom:396.479841pt;}
.y6a{bottom:396.799841pt;}
.y140{bottom:398.719841pt;}
.y111{bottom:405.599838pt;}
.yae{bottom:405.759838pt;}
.y157{bottom:407.839837pt;}
.yfb{bottom:409.119836pt;}
.y48{bottom:410.239836pt;}
.y81{bottom:411.199836pt;}
.y39{bottom:411.999835pt;}
.y13f{bottom:415.679834pt;}
.y110{bottom:422.719831pt;}
.y69{bottom:424.479830pt;}
.y38{bottom:426.559829pt;}
.y156{bottom:427.199829pt;}
.yfa{bottom:427.519829pt;}
.ybe{bottom:430.239828pt;}
.y47{bottom:430.879828pt;}
.y13e{bottom:432.479827pt;}
.yad{bottom:433.439827pt;}
.y90{bottom:438.719825pt;}
.y10f{bottom:439.519824pt;}
.yf9{bottom:445.919822pt;}
.y155{bottom:446.719821pt;}
.y13d{bottom:449.279820pt;}
.y46{bottom:451.679819pt;}
.y68{bottom:451.999819pt;}
.y10e{bottom:456.479817pt;}
.ybd{bottom:457.919817pt;}
.yac{bottom:460.959816pt;}
.yf7{bottom:461.440000pt;}
.y154{bottom:466.079814pt;}
.y13c{bottom:466.239814pt;}
.y8f{bottom:466.399813pt;}
.y37{bottom:466.559813pt;}
.y45{bottom:472.319811pt;}
.y10d{bottom:473.279811pt;}
.y67{bottom:479.679808pt;}
.y13b{bottom:483.039807pt;}
.yf6{bottom:483.359807pt;}
.ybc{bottom:485.439806pt;}
.yab{bottom:488.639805pt;}
.y10c{bottom:490.079804pt;}
.y44{bottom:493.119803pt;}
.y8e{bottom:493.919802pt;}
.y13a{bottom:499.999800pt;}
.yf5{bottom:501.759799pt;}
.y36{bottom:504.319798pt;}
.y66{bottom:507.199797pt;}
.y43{bottom:513.759794pt;}
.y10b{bottom:515.359794pt;}
.yd1{bottom:516.159794pt;}
.y139{bottom:516.799793pt;}
.yf3{bottom:517.280000pt;}
.y35{bottom:518.079793pt;}
.yd9{bottom:521.599791pt;}
.yaa{bottom:529.599788pt;}
.ybb{bottom:531.839787pt;}
.y138{bottom:533.759786pt;}
.y42{bottom:534.399786pt;}
.y65{bottom:534.879786pt;}
.yf2{bottom:539.199784pt;}
.y10a{bottom:540.639784pt;}
.y3f{bottom:548.480000pt;}
.yd8{bottom:549.119780pt;}
.y34{bottom:549.599780pt;}
.y137{bottom:550.559780pt;}
.yb9{bottom:552.000000pt;}
.y41{bottom:555.199778pt;}
.ya9{bottom:557.119777pt;}
.yf1{bottom:557.599777pt;}
.y64{bottom:562.399775pt;}
.y109{bottom:565.919774pt;}
.y136{bottom:567.359773pt;}
.yef{bottom:573.280000pt;}
.yd7{bottom:576.799769pt;}
.y31{bottom:582.400000pt;}
.y135{bottom:584.319766pt;}
.ya8{bottom:584.799766pt;}
.y63{bottom:590.079764pt;}
.y108{bottom:591.199764pt;}
.yee{bottom:595.199762pt;}
.y134{bottom:601.119760pt;}
.y77{bottom:603.359759pt;}
.ya7{bottom:612.319755pt;}
.y2c{bottom:612.959755pt;}
.yed{bottom:613.599755pt;}
.y62{bottom:617.599753pt;}
.y133{bottom:618.079753pt;}
.yeb{bottom:629.120000pt;}
.y76{bottom:631.039748pt;}
.y132{bottom:634.879746pt;}
.y2a{bottom:637.920000pt;}
.ya6{bottom:639.999744pt;}
.y29{bottom:640.479744pt;}
.y28{bottom:644.479742pt;}
.y61{bottom:645.279742pt;}
.yea{bottom:651.039740pt;}
.y131{bottom:651.679739pt;}
.y26{bottom:651.840000pt;}
.ya0{bottom:653.279739pt;}
.y25{bottom:654.399738pt;}
.y24{bottom:658.399737pt;}
.y75{bottom:658.559737pt;}
.y22{bottom:666.080000pt;}
.ya5{bottom:667.519733pt;}
.y21{bottom:668.639733pt;}
.ye9{bottom:669.439732pt;}
.y107{bottom:671.999731pt;}
.y20{bottom:672.639731pt;}
.y8d{bottom:672.799731pt;}
.y1e{bottom:680.160000pt;}
.y9f{bottom:680.799728pt;}
.y1d{bottom:682.719727pt;}
.ye7{bottom:684.960000pt;}
.y130{bottom:685.439726pt;}
.y60{bottom:686.239726pt;}
.y1c{bottom:686.719725pt;}
.ya4{bottom:695.039722pt;}
.y1b{bottom:696.799721pt;}
.y80{bottom:699.519720pt;}
.y8c{bottom:700.479720pt;}
.y1a{bottom:700.799720pt;}
.y12f{bottom:702.399719pt;}
.ye6{bottom:706.879717pt;}
.y9e{bottom:708.479717pt;}
.y19{bottom:710.879716pt;}
.y5f{bottom:713.759714pt;}
.y18{bottom:714.879714pt;}
.y12e{bottom:719.199712pt;}
.y16{bottom:722.400000pt;}
.yd0{bottom:722.719711pt;}
.y15{bottom:724.959710pt;}
.ye5{bottom:725.279710pt;}
.y7f{bottom:727.039709pt;}
.y8b{bottom:727.999709pt;}
.y14{bottom:728.959708pt;}
.y9d{bottom:735.999706pt;}
.y13{bottom:739.039704pt;}
.y5e{bottom:741.439703pt;}
.y12{bottom:743.039703pt;}
.ye4{bottom:744.319702pt;}
.ycf{bottom:750.239700pt;}
.y12d{bottom:752.959699pt;}
.y7e{bottom:754.719698pt;}
.y8a{bottom:755.679698pt;}
.ye3{bottom:762.719695pt;}
.y9c{bottom:763.679695pt;}
.y10{bottom:767.679693pt;}
.y5d{bottom:768.959692pt;}
.y153{bottom:769.599692pt;}
.y12c{bottom:769.759692pt;}
.y11{bottom:772.319691pt;}
.yce{bottom:777.919689pt;}
.ye2{bottom:781.119688pt;}
.y7d{bottom:782.239687pt;}
.y89{bottom:783.199687pt;}
.y12b{bottom:786.719685pt;}
.ye{bottom:790.719684pt;}
.y9b{bottom:791.199684pt;}
.y152{bottom:794.879682pt;}
.yf{bottom:795.359682pt;}
.y5c{bottom:796.639681pt;}
.ye1{bottom:799.519680pt;}
.y12a{bottom:803.519679pt;}
.y7c{bottom:809.919676pt;}
.y88{bottom:810.879676pt;}
.yd{bottom:815.839674pt;}
.y9a{bottom:818.879672pt;}
.y151{bottom:820.159672pt;}
.y129{bottom:820.319672pt;}
.y5b{bottom:824.159670pt;}
.y128{bottom:837.279665pt;}
.y7b{bottom:837.439665pt;}
.yc{bottom:843.519663pt;}
.y150{bottom:845.599662pt;}
.ye0{bottom:846.559661pt;}
.y5a{bottom:851.839659pt;}
.y127{bottom:854.079658pt;}
.y7a{bottom:865.119654pt;}
.y14f{bottom:870.879652pt;}
.y126{bottom:871.039652pt;}
.y2f{bottom:873.279651pt;}
.y59{bottom:879.359648pt;}
.y125{bottom:887.839645pt;}
.y2e{bottom:891.999643pt;}
.y74{bottom:892.639643pt;}
.y14e{bottom:896.159642pt;}
.y124{bottom:904.639638pt;}
.y99{bottom:920.159632pt;}
.y58{bottom:920.319632pt;}
.y14d{bottom:921.439631pt;}
.y123{bottom:921.599631pt;}
.y2d{bottom:934.399626pt;}
.y30{bottom:943.039623pt;}
.y4{bottom:955.199618pt;}
.y6{bottom:981.759607pt;}
.y3{bottom:985.599606pt;}
.y2{bottom:1003.199599pt;}
.y1{bottom:1020.799592pt;}
.hc{height:12.160000pt;}
.h1a{height:12.640000pt;}
.h11{height:17.920000pt;}
.h5{height:18.080000pt;}
.h1d{height:18.240000pt;}
.ha{height:18.663743pt;}
.he{height:18.676868pt;}
.h9{height:23.422491pt;}
.h18{height:29.144988pt;}
.hb{height:29.773113pt;}
.hd{height:29.794051pt;}
.h14{height:29.961551pt;}
.h19{height:30.285925pt;}
.h4{height:30.778113pt;}
.h1b{height:31.572800pt;}
.h16{height:32.554674pt;}
.h3{height:32.624987pt;}
.h17{height:33.351549pt;}
.h15{height:34.968736pt;}
.h8{height:36.001236pt;}
.hf{height:36.260610pt;}
.h1{height:36.909048pt;}
.h6{height:38.128110pt;}
.h12{height:39.243734pt;}
.h13{height:40.019984pt;}
.h1f{height:40.911234pt;}
.h10{height:41.141234pt;}
.h2{height:42.262483pt;}
.h1e{height:42.894983pt;}
.h7{height:43.374983pt;}
.h1c{height:44.468732pt;}
.h0{height:1056.000000pt;}
.w5{width:0.320000pt;}
.w8{width:3.200000pt;}
.w1{width:4.480000pt;}
.wd{width:5.600000pt;}
.wb{width:7.200000pt;}
.wa{width:7.360000pt;}
.w11{width:8.000000pt;}
.w16{width:29.280000pt;}
.w9{width:29.920000pt;}
.w7{width:52.000000pt;}
.wc{width:62.560000pt;}
.w12{width:77.920000pt;}
.w15{width:80.960000pt;}
.wf{width:104.000000pt;}
.w4{width:109.120000pt;}
.w13{width:115.040000pt;}
.we{width:127.040000pt;}
.w14{width:147.040000pt;}
.w10{width:183.040000pt;}
.w2{width:195.360000pt;}
.w6{width:199.040000pt;}
.w3{width:349.120000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x38{left:73.439971pt;}
.x36{left:75.199970pt;}
.x33{left:87.679965pt;}
.x3a{left:88.639965pt;}
.x35{left:92.959902pt;}
.x34{left:94.239962pt;}
.x1{left:95.999962pt;}
.x9{left:110.879956pt;}
.x39{left:116.639953pt;}
.x4{left:118.399953pt;}
.x4d{left:119.999952pt;}
.x7{left:123.679951pt;}
.x37{left:125.599950pt;}
.x2f{left:147.680000pt;}
.x30{left:150.880000pt;}
.x19{left:177.599929pt;}
.x1a{left:180.954594pt;}
.x1e{left:184.954593pt;}
.x23{left:187.039925pt;}
.x24{left:190.394591pt;}
.x20{left:196.959921pt;}
.x21{left:200.314587pt;}
.x3b{left:201.279919pt;}
.x2b{left:208.319917pt;}
.x26{left:215.039914pt;}
.x40{left:216.799913pt;}
.x27{left:218.399913pt;}
.x31{left:220.960000pt;}
.x2a{left:222.879911pt;}
.x1b{left:227.359909pt;}
.xa{left:228.319909pt;}
.x1c{left:230.714574pt;}
.xb{left:239.199904pt;}
.x3e{left:244.959902pt;}
.x3d{left:246.080000pt;}
.x44{left:263.839374pt;}
.x2{left:268.959892pt;}
.x29{left:270.399892pt;}
.x42{left:281.919887pt;}
.x32{left:302.240000pt;}
.x14{left:311.999358pt;}
.x8{left:323.039698pt;}
.xc{left:342.559863pt;}
.xd{left:346.879861pt;}
.x5{left:355.359858pt;}
.x45{left:367.839379pt;}
.x2c{left:369.119852pt;}
.x15{left:374.719850pt;}
.x16{left:381.279847pt;}
.xe{left:452.799819pt;}
.x2d{left:454.559818pt;}
.xf{left:457.119817pt;}
.x46{left:462.399319pt;}
.x1f{left:466.880000pt;}
.x17{left:496.319801pt;}
.x18{left:500.639800pt;}
.x3c{left:543.359783pt;}
.x10{left:559.679776pt;}
.x11{left:563.999774pt;}
.x47{left:566.239231pt;}
.x4c{left:595.520000pt;}
.x3{left:609.919756pt;}
.x2e{left:611.520248pt;}
.x28{left:616.960000pt;}
.x1d{left:620.640000pt;}
.x49{left:644.160000pt;}
.x4b{left:647.200000pt;}
.x12{left:662.879735pt;}
.x13{left:667.199733pt;}
.x4a{left:681.280000pt;}
.x3f{left:688.960000pt;}
.x22{left:706.880000pt;}
.x41{left:712.000000pt;}
.x43{left:713.919895pt;}
.x6{left:715.200000pt;}
.x48{left:749.280000pt;}
.x25{left:815.680000pt;}
}




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