
    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_92b94ed0f28b973f1c2dcfb5.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_d5e35ebab304c3a1d8b253ab.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_f1985aa11809370283e8522b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_056a35feac3b85c7803d4bed.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2621411138c09949d06e16ed.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d606dbb4fe2a96e299fc0a61.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_30dcac0168ad3162d47fc178.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e02af3423c153a58914e211f.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_7f3f8fce47ad20b2be87b71a.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_eb70db53f8277b1ca25e52f5.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_b83636c3e066d9172f2d821d.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_7e436ce58b41cc0b1ec97697.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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;}
.m7{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);}
.m6{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);}
.m5{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);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.034431px;}
.ls7{letter-spacing:0.034440px;}
.ls8{letter-spacing:0.034446px;}
.ls6{letter-spacing:0.034519px;}
.lsc{letter-spacing:0.068862px;}
.lsa{letter-spacing:0.182590px;}
.ls1{letter-spacing:0.203595px;}
.ls2{letter-spacing:0.203640px;}
.ls3{letter-spacing:0.274574px;}
.ls1b{letter-spacing:0.321180px;}
.ls17{letter-spacing:0.321196px;}
.ls5{letter-spacing:34.087306px;}
.ls11{letter-spacing:57.890240px;}
.ls1c{letter-spacing:57.890373px;}
.ls15{letter-spacing:57.891765px;}
.ls14{letter-spacing:57.891997px;}
.ls19{letter-spacing:57.892485px;}
.lsf{letter-spacing:57.892726px;}
.ls16{letter-spacing:57.893460px;}
.lsd{letter-spacing:57.893467px;}
.ls12{letter-spacing:57.893951px;}
.ls18{letter-spacing:57.894708px;}
.ls1a{letter-spacing:57.894921px;}
.ls10{letter-spacing:57.895120px;}
.lse{letter-spacing:71.036252px;}
.ls13{letter-spacing:73.921650px;}
.ls9{letter-spacing:88.190365px;}
.ls0{letter-spacing:1771.165931px;}
.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;}
}
.ws4{word-spacing:-32.399987px;}
.wsa{word-spacing:-18.182583px;}
.wsb{word-spacing:-18.068855px;}
.ws9{word-spacing:-17.999993px;}
.wsc{word-spacing:-17.614073px;}
.ws7{word-spacing:-16.613273px;}
.wsd{word-spacing:-16.559993px;}
.wse{word-spacing:-15.291430px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws6{word-spacing:-13.505755px;}
.ws2{word-spacing:-12.059995px;}
.ws1{word-spacing:-9.719996px;}
.ws8{word-spacing:0.000000px;}
._1e{margin-left:-13.761320px;}
._2{margin-left:-4.703611px;}
._1{margin-left:-2.974798px;}
._3{margin-left:-1.391001px;}
._0{width:1.152887px;}
._5{width:2.462259px;}
._4{width:3.607252px;}
._19{width:4.884226px;}
._17{width:6.110017px;}
._b{width:7.231773px;}
._7{width:8.588938px;}
._6{width:9.634289px;}
._a{width:10.858822px;}
._11{width:12.278950px;}
._10{width:13.750521px;}
._d{width:14.910900px;}
._1a{width:16.281965px;}
._22{width:17.837518px;}
._16{width:19.365551px;}
._18{width:20.478576px;}
._1d{width:21.528480px;}
._15{width:22.562476px;}
._12{width:23.707293px;}
._9{width:25.459204px;}
._8{width:26.529254px;}
._c{width:28.253976px;}
._13{width:31.628629px;}
._14{width:32.658006px;}
._26{width:34.638204px;}
._1c{width:39.532709px;}
._1b{width:40.938006px;}
._f{width:42.562802px;}
._e{width:43.616806px;}
._28{width:63.201666px;}
._27{width:64.816116px;}
._25{width:96.848013px;}
._24{width:97.999428px;}
._1f{width:101.054909px;}
._23{width:127.096211px;}
._20{width:159.932803px;}
._21{width:161.161921px;}
._29{width:461.496566px;}
.fc14{color:rgb(0,101,153);}
.fc10{color:rgb(33,33,33);}
.fc13{color:rgb(43,50,34);}
.fc11{color:rgb(34,34,34);}
.fcd{color:rgb(0,101,204);}
.fcf{color:rgb(2,113,177);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcb{color:rgb(51,51,51);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,0);}
.fca{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(0,112,192);}
.fc12{color:rgb(238,0,0);}
.fc5{color:rgb(54,95,145);}
.fc8{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc7{color:rgb(0,0,255);}
.fc9{color:rgb(0,32,96);}
.fs7{font-size:30.239988px;}
.fs6{font-size:38.879984px;}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs8{font-size:63.359975px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y5{bottom:-14.759994px;}
.y0{bottom:0.000000px;}
.y60{bottom:2.339918px;}
.y17{bottom:2.879675px;}
.y1b{bottom:2.879681px;}
.y1f{bottom:2.879687px;}
.y23{bottom:2.879693px;}
.y27{bottom:2.879699px;}
.y2e{bottom:2.879717px;}
.y90{bottom:4.319628px;}
.yf9{bottom:4.319704px;}
.y118{bottom:4.319776px;}
.ydd{bottom:4.319791px;}
.yd2{bottom:4.319829px;}
.yea{bottom:4.319906px;}
.y59{bottom:4.499575px;}
.y53{bottom:4.499611px;}
.y31{bottom:4.499736px;}
.y40{bottom:4.499751px;}
.ya{bottom:4.499980px;}
.yb{bottom:27.899989px;}
.y9{bottom:45.720000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.839979px;}
.y154{bottom:133.199947px;}
.y10b{bottom:136.439945px;}
.y144{bottom:141.659943px;}
.y7d{bottom:145.979942px;}
.ybb{bottom:147.959941px;}
.yda{bottom:150.119940px;}
.y153{bottom:152.099939px;}
.y115{bottom:152.999939px;}
.ya6{bottom:154.079938px;}
.y124{bottom:156.239938px;}
.yec{bottom:165.779934px;}
.y3e{bottom:166.859933px;}
.y10a{bottom:167.579933px;}
.y51{bottom:170.459932px;}
.y152{bottom:170.999932px;}
.y143{bottom:172.799931px;}
.y7c{bottom:176.939929px;}
.ye7{bottom:178.739929px;}
.yba{bottom:179.099928px;}
.yd9{bottom:181.079928px;}
.y17d{bottom:181.439927px;}
.y114{bottom:183.959926px;}
.y135{bottom:185.039926px;}
.ya5{bottom:185.219926px;}
.y123{bottom:187.379925px;}
.y151{bottom:192.419923px;}
.y109{bottom:198.539921px;}
.y17c{bottom:201.419919px;}
.y3d{bottom:201.779919px;}
.y5f{bottom:203.580000px;}
.y142{bottom:203.759918px;}
.y7b{bottom:208.079917px;}
.yeb{bottom:208.799916px;}
.ye6{bottom:209.879916px;}
.yce{bottom:210.059916px;}
.yd8{bottom:212.219915px;}
.y150{bottom:212.579915px;}
.y113{bottom:215.099914px;}
.y134{bottom:215.999914px;}
.y122{bottom:218.339913px;}
.yb9{bottom:222.119911px;}
.y17b{bottom:222.659911px;}
.y5e{bottom:223.199911px;}
.yf7{bottom:227.159909px;}
.ya4{bottom:228.239909px;}
.y108{bottom:229.679908px;}
.ye9{bottom:231.480000px;}
.y14f{bottom:233.819906px;}
.y141{bottom:234.899906px;}
.ye8{bottom:235.799906px;}
.y8e{bottom:239.039904px;}
.y5d{bottom:240.479904px;}
.ye5{bottom:240.839904px;}
.ycd{bottom:241.199904px;}
.y17a{bottom:242.819903px;}
.yd7{bottom:243.179903px;}
.y112{bottom:246.059902px;}
.y133{bottom:247.139901px;}
.y121{bottom:249.479900px;}
.y7a{bottom:251.099900px;}
.y14e{bottom:253.979898px;}
.y5c{bottom:257.759897px;}
.yf6{bottom:258.119897px;}
.y107{bottom:260.639896px;}
.y179{bottom:264.059894px;}
.yb8{bottom:265.139894px;}
.y8d{bottom:270.179892px;}
.ya3{bottom:271.259891px;}
.ye4{bottom:271.799891px;}
.ycc{bottom:272.159891px;}
.y14d{bottom:274.139890px;}
.yd6{bottom:274.319890px;}
.y5b{bottom:275.039890px;}
.y140{bottom:277.919889px;}
.y132{bottom:278.099889px;}
.y120{bottom:280.439888px;}
.y79{bottom:282.059887px;}
.y178{bottom:284.219886px;}
.yf5{bottom:289.259884px;}
.y106{bottom:291.779883px;}
.y5a{bottom:292.859883px;}
.yb7{bottom:296.279881px;}
.y8c{bottom:301.139880px;}
.ya2{bottom:302.219879px;}
.y177{bottom:304.379878px;}
.yd5{bottom:305.279878px;}
.y131{bottom:309.239876px;}
.y78{bottom:313.199875px;}
.y14c{bottom:313.559875px;}
.ye3{bottom:314.999874px;}
.ycb{bottom:315.179874px;}
.yf4{bottom:320.219872px;}
.y13f{bottom:320.939872px;}
.y11f{bottom:323.459871px;}
.y176{bottom:325.619870px;}
.yb6{bottom:327.239869px;}
.y8b{bottom:332.279867px;}
.ya1{bottom:333.359867px;}
.y14b{bottom:334.259866px;}
.y105{bottom:334.799866px;}
.y130{bottom:340.199864px;}
.y77{bottom:344.159862px;}
.y19e{bottom:345.239862px;}
.y175{bottom:345.779862px;}
.ye2{bottom:345.959862px;}
.yf3{bottom:351.179860px;}
.y13e{bottom:351.899859px;}
.y50{bottom:353.339859px;}
.y14a{bottom:355.499858px;}
.yd4{bottom:357.299857px;}
.yca{bottom:358.379857px;}
.y8a{bottom:363.239855px;}
.ya0{bottom:364.319854px;}
.y174{bottom:365.939854px;}
.y11e{bottom:366.479853px;}
.yb5{bottom:370.259852px;}
.y4f{bottom:370.619852px;}
.y12f{bottom:371.339851px;}
.y76{bottom:375.299850px;}
.y149{bottom:375.479850px;}
.ye1{bottom:377.099849px;}
.y104{bottom:377.819849px;}
.yf2{bottom:382.319847px;}
.y13d{bottom:383.039847px;}
.y19d{bottom:386.639845px;}
.y173{bottom:387.179845px;}
.yc9{bottom:389.339844px;}
.y3c{bottom:392.219843px;}
.y111{bottom:394.379842px;}
.y148{bottom:395.639842px;}
.y11d{bottom:397.619841px;}
.y4e{bottom:399.779840px;}
.yd3{bottom:400.499840px;}
.yb4{bottom:401.399839px;}
.y12e{bottom:402.299839px;}
.y75{bottom:406.259837px;}
.y19c{bottom:406.619837px;}
.y9f{bottom:407.339837px;}
.ye0{bottom:408.059837px;}
.y103{bottom:408.779836px;}
.yf1{bottom:413.279835px;}
.y13c{bottom:413.999834px;}
.y147{bottom:416.879833px;}
.y4d{bottom:417.059833px;}
.yc8{bottom:420.479832px;}
.yd1{bottom:423.000000px;}
.y110{bottom:425.339830px;}
.y172{bottom:427.499829px;}
.y19b{bottom:427.859829px;}
.y11c{bottom:428.579829px;}
.yb3{bottom:432.359827px;}
.y4c{bottom:434.339826px;}
.y3b{bottom:437.039825px;}
.y74{bottom:437.399825px;}
.y102{bottom:439.919824px;}
.yf0{bottom:444.419822px;}
.y13b{bottom:445.139822px;}
.y12d{bottom:445.319822px;}
.y171{bottom:447.659821px;}
.y19a{bottom:448.019821px;}
.y9e{bottom:450.539820px;}
.ydf{bottom:451.079820px;}
.yc7{bottom:451.439819px;}
.y4b{bottom:451.619819px;}
.y3a{bottom:453.599819px;}
.y10f{bottom:456.479817px;}
.y146{bottom:458.279817px;}
.y11b{bottom:459.719816px;}
.yb2{bottom:463.499815px;}
.y170{bottom:467.639813px;}
.y199{bottom:468.179813px;}
.y73{bottom:468.359813px;}
.y4a{bottom:468.719813px;}
.y39{bottom:470.159812px;}
.y101{bottom:470.879812px;}
.yef{bottom:475.379810px;}
.y13a{bottom:476.099810px;}
.y145{bottom:478.439809px;}
.y9d{bottom:481.499807px;}
.yc6{bottom:482.579807px;}
.y38{bottom:485.459806px;}
.y49{bottom:485.999806px;}
.y10e{bottom:487.439805px;}
.y12c{bottom:488.339805px;}
.y16f{bottom:488.879804px;}
.y11a{bottom:490.679804px;}
.yde{bottom:494.099802px;}
.yb1{bottom:494.459802px;}
.y89{bottom:499.499800px;}
.y100{bottom:502.019799px;}
.y48{bottom:503.279799px;}
.yee{bottom:506.519797px;}
.y139{bottom:507.239797px;}
.y198{bottom:508.499797px;}
.y16e{bottom:509.039796px;}
.y72{bottom:511.379795px;}
.y9c{bottom:512.639795px;}
.ydc{bottom:516.960000px;}
.y10d{bottom:518.579793px;}
.y12b{bottom:519.479792px;}
.y47{bottom:520.559792px;}
.ydb{bottom:521.279791px;}
.yc5{bottom:525.599790px;}
.y197{bottom:528.659789px;}
.y37{bottom:529.199788px;}
.y88{bottom:530.459788px;}
.yff{bottom:532.979787px;}
.y119{bottom:533.699787px;}
.yb0{bottom:537.479785px;}
.y46{bottom:537.839785px;}
.y71{bottom:542.519783px;}
.y9b{bottom:543.599783px;}
.y10c{bottom:549.539780px;}
.y196{bottom:549.899780px;}
.y138{bottom:550.259780px;}
.y12a{bottom:550.439780px;}
.y45{bottom:555.119778px;}
.y117{bottom:556.380000px;}
.y116{bottom:560.699776px;}
.y87{bottom:561.599775px;}
.yfe{bottom:564.119774px;}
.yc4{bottom:568.619773px;}
.y195{bottom:570.059772px;}
.y16d{bottom:570.599772px;}
.y44{bottom:572.219771px;}
.y36{bottom:572.939771px;}
.y70{bottom:573.479771px;}
.y9a{bottom:574.739770px;}
.yaf{bottom:580.679768px;}
.y129{bottom:581.579767px;}
.y43{bottom:589.499764px;}
.y35{bottom:589.679764px;}
.y194{bottom:590.219764px;}
.y16c{bottom:591.839763px;}
.y86{bottom:592.559763px;}
.y137{bottom:593.279763px;}
.yfd{bottom:595.079762px;}
.yc3{bottom:599.579760px;}
.y6f{bottom:604.619758px;}
.y99{bottom:605.699758px;}
.y42{bottom:606.779757px;}
.y193{bottom:611.459755px;}
.yae{bottom:611.639755px;}
.y16b{bottom:611.999755px;}
.y128{bottom:612.539755px;}
.y3f{bottom:617.940000px;}
.y85{bottom:623.699751px;}
.y41{bottom:624.059750px;}
.y34{bottom:625.139750px;}
.yfc{bottom:626.219750px;}
.yc2{bottom:630.719748px;}
.y192{bottom:631.619747px;}
.y136{bottom:632.339747px;}
.y16a{bottom:633.239747px;}
.y6e{bottom:635.579746px;}
.yad{bottom:642.779743px;}
.y127{bottom:643.679743px;}
.y98{bottom:648.719741px;}
.y191{bottom:651.599739px;}
.y169{bottom:653.399739px;}
.y84{bottom:654.659738px;}
.y33{bottom:656.099738px;}
.y30{bottom:656.100000px;}
.y32{bottom:660.599736px;}
.y6d{bottom:666.719733px;}
.yfb{bottom:669.239732px;}
.y190{bottom:672.839731px;}
.y168{bottom:673.559731px;}
.yc1{bottom:673.739731px;}
.yac{bottom:685.799726px;}
.y126{bottom:686.699725px;}
.y97{bottom:691.739723px;}
.y2f{bottom:692.819723px;}
.y18f{bottom:692.999723px;}
.y167{bottom:694.799722px;}
.y6c{bottom:697.679721px;}
.y2d{bottom:704.520000px;}
.y2c{bottom:707.399717px;}
.y2b{bottom:711.899715px;}
.yfa{bottom:712.259715px;}
.y18e{bottom:714.239714px;}
.y166{bottom:714.959714px;}
.yab{bottom:716.759713px;}
.y2a{bottom:722.339711px;}
.y96{bottom:722.879711px;}
.y125{bottom:725.759710px;}
.y6b{bottom:728.819708px;}
.y18d{bottom:734.399706px;}
.yf8{bottom:734.940000px;}
.y165{bottom:736.199706px;}
.y29{bottom:737.279705px;}
.y83{bottom:740.699704px;}
.y28{bottom:741.779703px;}
.yaa{bottom:747.899701px;}
.y26{bottom:749.340000px;}
.y25{bottom:752.219699px;}
.y95{bottom:753.839698px;}
.y18c{bottom:754.559698px;}
.y164{bottom:756.179698px;}
.y24{bottom:756.719697px;}
.y6a{bottom:759.779696px;}
.y22{bottom:764.100000px;}
.y21{bottom:766.979693px;}
.y20{bottom:771.479691px;}
.y82{bottom:771.839691px;}
.y18b{bottom:775.799690px;}
.y163{bottom:777.419689px;}
.yc0{bottom:778.859688px;}
.y1e{bottom:779.040000px;}
.y1d{bottom:781.919687px;}
.y94{bottom:784.979686px;}
.y1c{bottom:786.419685px;}
.ya9{bottom:790.919684px;}
.y1a{bottom:793.980000px;}
.y18a{bottom:795.959682px;}
.y19{bottom:796.859681px;}
.y162{bottom:797.579681px;}
.y18{bottom:801.359679px;}
.y69{bottom:802.799679px;}
.y16{bottom:808.920000px;}
.yed{bottom:809.999676px;}
.y15{bottom:811.799675px;}
.y93{bottom:815.939674px;}
.y14{bottom:816.299673px;}
.y189{bottom:817.199673px;}
.y161{bottom:819.359672px;}
.ya8{bottom:821.879671px;}
.y13{bottom:826.559669px;}
.y12{bottom:831.059668px;}
.y68{bottom:833.939666px;}
.y188{bottom:837.359665px;}
.y160{bottom:839.879664px;}
.yd0{bottom:845.999662px;}
.ybf{bottom:853.019659px;}
.y11{bottom:855.539658px;}
.y187{bottom:857.519657px;}
.y92{bottom:858.959656px;}
.y15f{bottom:860.399656px;}
.y67{bottom:864.899654px;}
.yf{bottom:876.779649px;}
.ycf{bottom:876.959649px;}
.y186{bottom:878.759648px;}
.y15e{bottom:880.739648px;}
.y10{bottom:881.999647px;}
.ybe{bottom:883.979646px;}
.yd{bottom:895.499642px;}
.y66{bottom:896.039642px;}
.y185{bottom:898.919640px;}
.ye{bottom:900.719640px;}
.y15d{bottom:901.259639px;}
.y91{bottom:902.159639px;}
.ya7{bottom:908.099637px;}
.ybd{bottom:915.119634px;}
.y184{bottom:919.079632px;}
.y15c{bottom:921.239632px;}
.y8f{bottom:924.840000px;}
.y65{bottom:926.999629px;}
.yc{bottom:932.039627px;}
.y81{bottom:939.059624px;}
.y183{bottom:940.139624px;}
.y15b{bottom:941.399623px;}
.ybc{bottom:946.079622px;}
.y64{bottom:958.139617px;}
.y182{bottom:960.299616px;}
.y15a{bottom:962.639615px;}
.y52{bottom:968.940000px;}
.y80{bottom:970.199612px;}
.y57{bottom:977.399609px;}
.y181{bottom:980.459608px;}
.y159{bottom:982.799607px;}
.y63{bottom:989.099604px;}
.y56{bottom:997.199601px;}
.y7f{bottom:1001.159600px;}
.y180{bottom:1001.699599px;}
.y158{bottom:1004.039598px;}
.y62{bottom:1020.239592px;}
.y17f{bottom:1022.939591px;}
.y157{bottom:1024.199590px;}
.y7e{bottom:1032.299587px;}
.y55{bottom:1036.259585px;}
.y17e{bottom:1043.099583px;}
.y156{bottom:1045.439582px;}
.y58{bottom:1056.780000px;}
.y54{bottom:1059.839576px;}
.y61{bottom:1063.259575px;}
.y155{bottom:1064.519574px;}
.y6{bottom:1092.059563px;}
.y4{bottom:1095.119562px;}
.y3{bottom:1126.799549px;}
.y2{bottom:1144.079542px;}
.y1{bottom:1161.179536px;}
.h3{height:1.080000px;}
.he{height:13.680000px;}
.h19{height:15.660000px;}
.h1a{height:16.560000px;}
.h11{height:20.160000px;}
.h6{height:20.340000px;}
.h1c{height:20.520000px;}
.hf{height:20.996710px;}
.hc{height:21.011476px;}
.hb{height:26.350302px;}
.h10{height:33.494752px;}
.hd{height:33.518307px;}
.h5{height:34.625377px;}
.h15{height:36.624009px;}
.h13{height:38.759750px;}
.h4{height:39.207992px;}
.h14{height:39.339828px;}
.ha{height:40.501390px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h17{height:43.390178px;}
.h18{height:43.536076px;}
.h20{height:46.025138px;}
.h2{height:47.545293px;}
.h12{height:48.095137px;}
.h1f{height:48.256856px;}
.h1e{height:48.796855px;}
.h9{height:50.027324px;}
.h16{height:52.277323px;}
.h1b{height:52.417948px;}
.h1d{height:52.453104px;}
.h8{height:57.092321px;}
.h0{height:1188.000000px;}
.we{width:2.700000px;}
.wf{width:3.600000px;}
.wa{width:3.780000px;}
.w11{width:5.040000px;}
.w2{width:6.840000px;}
.wd{width:8.100000px;}
.wc{width:8.280000px;}
.w14{width:8.820000px;}
.w1{width:9.720000px;}
.w5{width:10.980000px;}
.w8{width:26.100000px;}
.wb{width:32.760000px;}
.w9{width:55.620000px;}
.w12{width:68.400000px;}
.w10{width:91.620000px;}
.w1a{width:136.260000px;}
.w18{width:156.420000px;}
.w17{width:162.900000px;}
.w4{width:181.800000px;}
.w19{width:194.760000px;}
.w16{width:212.760000px;}
.w15{width:223.920000px;}
.w3{width:252.540000px;}
.w6{width:255.420000px;}
.w13{width:293.580000px;}
.w7{width:412.560000px;}
.w0{width:918.000000px;}
.x42{left:-4.680261px;}
.x0{left:0.000000px;}
.x4{left:79.199968px;}
.x5{left:105.299958px;}
.x1{left:107.999957px;}
.x37{left:110.519956px;}
.x49{left:120.419989px;}
.x35{left:121.499951px;}
.x8{left:123.479951px;}
.x3a{left:125.459950px;}
.x4b{left:126.719949px;}
.x36{left:128.879926px;}
.x9{left:130.679948px;}
.xa{left:135.179946px;}
.x2a{left:152.460701px;}
.x39{left:157.139937px;}
.x48{left:161.999903px;}
.x38{left:167.219933px;}
.x57{left:174.420325px;}
.x13{left:175.860217px;}
.x3b{left:181.439927px;}
.x2f{left:190.980000px;}
.x55{left:192.059419px;}
.x30{left:194.760000px;}
.x19{left:196.919921px;}
.x1a{left:200.699920px;}
.x28{left:204.299918px;}
.x4e{left:206.999917px;}
.x29{left:208.073917px;}
.x3c{left:216.540000px;}
.x25{left:221.579911px;}
.x54{left:223.559911px;}
.x26{left:225.353910px;}
.x31{left:227.519909px;}
.x32{left:230.400000px;}
.x21{left:241.919903px;}
.x22{left:245.699902px;}
.x1e{left:247.679901px;}
.x1f{left:251.459899px;}
.x3d{left:253.259899px;}
.x1b{left:255.419898px;}
.x1c{left:259.199896px;}
.xb{left:267.299893px;}
.x47{left:269.459892px;}
.x33{left:273.600000px;}
.x14{left:277.919889px;}
.xc{left:279.539888px;}
.x15{left:282.779887px;}
.x34{left:295.019882px;}
.x2b{left:296.099882px;}
.x2c{left:299.879880px;}
.x2{left:302.579879px;}
.x2e{left:303.659879px;}
.x3e{left:367.559822px;}
.x6{left:371.879851px;}
.x3f{left:383.759846px;}
.x43{left:396.180000px;}
.x16{left:401.939839px;}
.xd{left:405.899838px;}
.xe{left:410.759836px;}
.x51{left:459.000342px;}
.x44{left:469.620000px;}
.x40{left:480.599808px;}
.x27{left:505.440000px;}
.x17{left:566.099774px;}
.x18{left:570.959772px;}
.xf{left:581.399767px;}
.x10{left:586.259765px;}
.x41{left:657.900000px;}
.x24{left:662.580000px;}
.x1d{left:665.460000px;}
.x3{left:682.199727px;}
.x46{left:694.080000px;}
.x4a{left:705.240000px;}
.x52{left:723.240000px;}
.x4f{left:734.581545px;}
.x20{left:736.200000px;}
.x11{left:737.999705px;}
.x12{left:742.859703px;}
.x4c{left:750.600267px;}
.x4d{left:755.100000px;}
.x50{left:761.580000px;}
.x45{left:763.200000px;}
.x56{left:771.660174px;}
.x53{left:781.740000px;}
.x7{left:842.580000px;}
.x2d{left:891.900000px;}
.x23{left:907.020000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.030605pt;}
.ls7{letter-spacing:0.030613pt;}
.ls8{letter-spacing:0.030618pt;}
.ls6{letter-spacing:0.030684pt;}
.lsc{letter-spacing:0.061211pt;}
.lsa{letter-spacing:0.162302pt;}
.ls1{letter-spacing:0.180973pt;}
.ls2{letter-spacing:0.181013pt;}
.ls3{letter-spacing:0.244066pt;}
.ls1b{letter-spacing:0.285493pt;}
.ls17{letter-spacing:0.285507pt;}
.ls5{letter-spacing:30.299828pt;}
.ls11{letter-spacing:51.457991pt;}
.ls1c{letter-spacing:51.458109pt;}
.ls15{letter-spacing:51.459347pt;}
.ls14{letter-spacing:51.459553pt;}
.ls19{letter-spacing:51.459986pt;}
.lsf{letter-spacing:51.460201pt;}
.ls16{letter-spacing:51.460853pt;}
.lsd{letter-spacing:51.460859pt;}
.ls12{letter-spacing:51.461290pt;}
.ls18{letter-spacing:51.461963pt;}
.ls1a{letter-spacing:51.462152pt;}
.ls10{letter-spacing:51.462329pt;}
.lse{letter-spacing:63.143335pt;}
.ls13{letter-spacing:65.708134pt;}
.ls9{letter-spacing:78.391435pt;}
.ls0{letter-spacing:1574.369717pt;}
.ws4{word-spacing:-28.799988pt;}
.wsa{word-spacing:-16.162296pt;}
.wsb{word-spacing:-16.061204pt;}
.ws9{word-spacing:-15.999994pt;}
.wsc{word-spacing:-15.656954pt;}
.ws7{word-spacing:-14.767354pt;}
.wsd{word-spacing:-14.719994pt;}
.wse{word-spacing:-13.592382pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws6{word-spacing:-12.005115pt;}
.ws2{word-spacing:-10.719996pt;}
.ws1{word-spacing:-8.639997pt;}
.ws8{word-spacing:0.000000pt;}
._1e{margin-left:-12.232284pt;}
._2{margin-left:-4.180987pt;}
._1{margin-left:-2.644265pt;}
._3{margin-left:-1.236445pt;}
._0{width:1.024788pt;}
._5{width:2.188675pt;}
._4{width:3.206446pt;}
._19{width:4.341534pt;}
._17{width:5.431126pt;}
._b{width:6.428242pt;}
._7{width:7.634612pt;}
._6{width:8.563813pt;}
._a{width:9.652286pt;}
._11{width:10.914622pt;}
._10{width:12.222685pt;}
._d{width:13.254133pt;}
._1a{width:14.472858pt;}
._22{width:15.855572pt;}
._16{width:17.213823pt;}
._18{width:18.203179pt;}
._1d{width:19.136427pt;}
._15{width:20.055534pt;}
._12{width:21.073150pt;}
._9{width:22.630404pt;}
._8{width:23.581559pt;}
._c{width:25.114645pt;}
._13{width:28.114337pt;}
._14{width:29.029339pt;}
._26{width:30.789515pt;}
._1c{width:35.140186pt;}
._1b{width:36.389338pt;}
._f{width:37.833602pt;}
._e{width:38.770494pt;}
._28{width:56.179259pt;}
._27{width:57.614326pt;}
._25{width:86.087123pt;}
._24{width:87.110603pt;}
._1f{width:89.826586pt;}
._23{width:112.974410pt;}
._20{width:142.162492pt;}
._21{width:143.255041pt;}
._29{width:410.219170pt;}
.fs7{font-size:26.879989pt;}
.fs6{font-size:34.559986pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs8{font-size:56.319977pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y5{bottom:-13.119995pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:2.079927pt;}
.y17{bottom:2.559711pt;}
.y1b{bottom:2.559717pt;}
.y1f{bottom:2.559722pt;}
.y23{bottom:2.559727pt;}
.y27{bottom:2.559733pt;}
.y2e{bottom:2.559748pt;}
.y90{bottom:3.839670pt;}
.yf9{bottom:3.839737pt;}
.y118{bottom:3.839801pt;}
.ydd{bottom:3.839815pt;}
.yd2{bottom:3.839848pt;}
.yea{bottom:3.839916pt;}
.y59{bottom:3.999623pt;}
.y53{bottom:3.999654pt;}
.y31{bottom:3.999765pt;}
.y40{bottom:3.999779pt;}
.ya{bottom:3.999982pt;}
.yb{bottom:24.799990pt;}
.y9{bottom:40.640000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:46.079982pt;}
.y154{bottom:118.399953pt;}
.y10b{bottom:121.279951pt;}
.y144{bottom:125.919950pt;}
.y7d{bottom:129.759948pt;}
.ybb{bottom:131.519947pt;}
.yda{bottom:133.439947pt;}
.y153{bottom:135.199946pt;}
.y115{bottom:135.999946pt;}
.ya6{bottom:136.959945pt;}
.y124{bottom:138.879944pt;}
.yec{bottom:147.359941pt;}
.y3e{bottom:148.319941pt;}
.y10a{bottom:148.959940pt;}
.y51{bottom:151.519939pt;}
.y152{bottom:151.999939pt;}
.y143{bottom:153.599939pt;}
.y7c{bottom:157.279937pt;}
.ye7{bottom:158.879936pt;}
.yba{bottom:159.199936pt;}
.yd9{bottom:160.959936pt;}
.y17d{bottom:161.279935pt;}
.y114{bottom:163.519935pt;}
.y135{bottom:164.479934pt;}
.ya5{bottom:164.639934pt;}
.y123{bottom:166.559933pt;}
.y151{bottom:171.039932pt;}
.y109{bottom:176.479929pt;}
.y17c{bottom:179.039928pt;}
.y3d{bottom:179.359928pt;}
.y5f{bottom:180.960000pt;}
.y142{bottom:181.119928pt;}
.y7b{bottom:184.959926pt;}
.yeb{bottom:185.599926pt;}
.ye6{bottom:186.559925pt;}
.yce{bottom:186.719925pt;}
.yd8{bottom:188.639925pt;}
.y150{bottom:188.959924pt;}
.y113{bottom:191.199924pt;}
.y134{bottom:191.999923pt;}
.y122{bottom:194.079922pt;}
.yb9{bottom:197.439921pt;}
.y17b{bottom:197.919921pt;}
.y5e{bottom:198.399921pt;}
.yf7{bottom:201.919919pt;}
.ya4{bottom:202.879919pt;}
.y108{bottom:204.159918pt;}
.ye9{bottom:205.760000pt;}
.y14f{bottom:207.839917pt;}
.y141{bottom:208.799916pt;}
.ye8{bottom:209.599916pt;}
.y8e{bottom:212.479915pt;}
.y5d{bottom:213.759914pt;}
.ye5{bottom:214.079914pt;}
.ycd{bottom:214.399914pt;}
.y17a{bottom:215.839914pt;}
.yd7{bottom:216.159914pt;}
.y112{bottom:218.719913pt;}
.y133{bottom:219.679912pt;}
.y121{bottom:221.759911pt;}
.y7a{bottom:223.199911pt;}
.y14e{bottom:225.759910pt;}
.y5c{bottom:229.119908pt;}
.yf6{bottom:229.439908pt;}
.y107{bottom:231.679907pt;}
.y179{bottom:234.719906pt;}
.yb8{bottom:235.679906pt;}
.y8d{bottom:240.159904pt;}
.ya3{bottom:241.119904pt;}
.ye4{bottom:241.599903pt;}
.ycc{bottom:241.919903pt;}
.y14d{bottom:243.679903pt;}
.yd6{bottom:243.839902pt;}
.y5b{bottom:244.479902pt;}
.y140{bottom:247.039901pt;}
.y132{bottom:247.199901pt;}
.y120{bottom:249.279900pt;}
.y79{bottom:250.719900pt;}
.y178{bottom:252.639899pt;}
.yf5{bottom:257.119897pt;}
.y106{bottom:259.359896pt;}
.y5a{bottom:260.319896pt;}
.yb7{bottom:263.359895pt;}
.y8c{bottom:267.679893pt;}
.ya2{bottom:268.639893pt;}
.y177{bottom:270.559892pt;}
.yd5{bottom:271.359891pt;}
.y131{bottom:274.879890pt;}
.y78{bottom:278.399889pt;}
.y14c{bottom:278.719889pt;}
.ye3{bottom:279.999888pt;}
.ycb{bottom:280.159888pt;}
.yf4{bottom:284.639886pt;}
.y13f{bottom:285.279886pt;}
.y11f{bottom:287.519885pt;}
.y176{bottom:289.439884pt;}
.yb6{bottom:290.879884pt;}
.y8b{bottom:295.359882pt;}
.ya1{bottom:296.319881pt;}
.y14b{bottom:297.119881pt;}
.y105{bottom:297.599881pt;}
.y130{bottom:302.399879pt;}
.y77{bottom:305.919878pt;}
.y19e{bottom:306.879877pt;}
.y175{bottom:307.359877pt;}
.ye2{bottom:307.519877pt;}
.yf3{bottom:312.159875pt;}
.y13e{bottom:312.799875pt;}
.y50{bottom:314.079874pt;}
.y14a{bottom:315.999874pt;}
.yd4{bottom:317.599873pt;}
.yca{bottom:318.559873pt;}
.y8a{bottom:322.879871pt;}
.ya0{bottom:323.839870pt;}
.y174{bottom:325.279870pt;}
.y11e{bottom:325.759870pt;}
.yb5{bottom:329.119868pt;}
.y4f{bottom:329.439868pt;}
.y12f{bottom:330.079868pt;}
.y76{bottom:333.599867pt;}
.y149{bottom:333.759866pt;}
.ye1{bottom:335.199866pt;}
.y104{bottom:335.839866pt;}
.yf2{bottom:339.839864pt;}
.y13d{bottom:340.479864pt;}
.y19d{bottom:343.679863pt;}
.y173{bottom:344.159862pt;}
.yc9{bottom:346.079862pt;}
.y3c{bottom:348.639861pt;}
.y111{bottom:350.559860pt;}
.y148{bottom:351.679859pt;}
.y11d{bottom:353.439859pt;}
.y4e{bottom:355.359858pt;}
.yd3{bottom:355.999858pt;}
.yb4{bottom:356.799857pt;}
.y12e{bottom:357.599857pt;}
.y75{bottom:361.119856pt;}
.y19c{bottom:361.439855pt;}
.y9f{bottom:362.079855pt;}
.ye0{bottom:362.719855pt;}
.y103{bottom:363.359855pt;}
.yf1{bottom:367.359853pt;}
.y13c{bottom:367.999853pt;}
.y147{bottom:370.559852pt;}
.y4d{bottom:370.719852pt;}
.yc8{bottom:373.759850pt;}
.yd1{bottom:376.000000pt;}
.y110{bottom:378.079849pt;}
.y172{bottom:379.999848pt;}
.y19b{bottom:380.319848pt;}
.y11c{bottom:380.959848pt;}
.yb3{bottom:384.319846pt;}
.y4c{bottom:386.079846pt;}
.y3b{bottom:388.479845pt;}
.y74{bottom:388.799844pt;}
.y102{bottom:391.039844pt;}
.yf0{bottom:395.039842pt;}
.y13b{bottom:395.679842pt;}
.y12d{bottom:395.839842pt;}
.y171{bottom:397.919841pt;}
.y19a{bottom:398.239841pt;}
.y9e{bottom:400.479840pt;}
.ydf{bottom:400.959840pt;}
.yc7{bottom:401.279839pt;}
.y4b{bottom:401.439839pt;}
.y3a{bottom:403.199839pt;}
.y10f{bottom:405.759838pt;}
.y146{bottom:407.359837pt;}
.y11b{bottom:408.639837pt;}
.yb2{bottom:411.999835pt;}
.y170{bottom:415.679834pt;}
.y199{bottom:416.159834pt;}
.y73{bottom:416.319833pt;}
.y4a{bottom:416.639833pt;}
.y39{bottom:417.919833pt;}
.y101{bottom:418.559833pt;}
.yef{bottom:422.559831pt;}
.y13a{bottom:423.199831pt;}
.y145{bottom:425.279830pt;}
.y9d{bottom:427.999829pt;}
.yc6{bottom:428.959828pt;}
.y38{bottom:431.519827pt;}
.y49{bottom:431.999827pt;}
.y10e{bottom:433.279827pt;}
.y12c{bottom:434.079826pt;}
.y16f{bottom:434.559826pt;}
.y11a{bottom:436.159826pt;}
.yde{bottom:439.199824pt;}
.yb1{bottom:439.519824pt;}
.y89{bottom:443.999822pt;}
.y100{bottom:446.239822pt;}
.y48{bottom:447.359821pt;}
.yee{bottom:450.239820pt;}
.y139{bottom:450.879820pt;}
.y198{bottom:451.999819pt;}
.y16e{bottom:452.479819pt;}
.y72{bottom:454.559818pt;}
.y9c{bottom:455.679818pt;}
.ydc{bottom:459.520000pt;}
.y10d{bottom:460.959816pt;}
.y12b{bottom:461.759815pt;}
.y47{bottom:462.719815pt;}
.ydb{bottom:463.359815pt;}
.yc5{bottom:467.199813pt;}
.y197{bottom:469.919812pt;}
.y37{bottom:470.399812pt;}
.y88{bottom:471.519811pt;}
.yff{bottom:473.759810pt;}
.y119{bottom:474.399810pt;}
.yb0{bottom:477.759809pt;}
.y46{bottom:478.079809pt;}
.y71{bottom:482.239807pt;}
.y9b{bottom:483.199807pt;}
.y10c{bottom:488.479805pt;}
.y196{bottom:488.799804pt;}
.y138{bottom:489.119804pt;}
.y12a{bottom:489.279804pt;}
.y45{bottom:493.439803pt;}
.y117{bottom:494.560000pt;}
.y116{bottom:498.399801pt;}
.y87{bottom:499.199800pt;}
.yfe{bottom:501.439799pt;}
.yc4{bottom:505.439798pt;}
.y195{bottom:506.719797pt;}
.y16d{bottom:507.199797pt;}
.y44{bottom:508.639797pt;}
.y36{bottom:509.279796pt;}
.y70{bottom:509.759796pt;}
.y9a{bottom:510.879796pt;}
.yaf{bottom:516.159794pt;}
.y129{bottom:516.959793pt;}
.y43{bottom:523.999790pt;}
.y35{bottom:524.159790pt;}
.y194{bottom:524.639790pt;}
.y16c{bottom:526.079790pt;}
.y86{bottom:526.719789pt;}
.y137{bottom:527.359789pt;}
.yfd{bottom:528.959788pt;}
.yc3{bottom:532.959787pt;}
.y6f{bottom:537.439785pt;}
.y99{bottom:538.399785pt;}
.y42{bottom:539.359784pt;}
.y193{bottom:543.519783pt;}
.yae{bottom:543.679783pt;}
.y16b{bottom:543.999782pt;}
.y128{bottom:544.479782pt;}
.y3f{bottom:549.280000pt;}
.y85{bottom:554.399778pt;}
.y41{bottom:554.719778pt;}
.y34{bottom:555.679778pt;}
.yfc{bottom:556.639777pt;}
.yc2{bottom:560.639776pt;}
.y192{bottom:561.439775pt;}
.y136{bottom:562.079775pt;}
.y16a{bottom:562.879775pt;}
.y6e{bottom:564.959774pt;}
.yad{bottom:571.359771pt;}
.y127{bottom:572.159771pt;}
.y98{bottom:576.639769pt;}
.y191{bottom:579.199768pt;}
.y169{bottom:580.799768pt;}
.y84{bottom:581.919767pt;}
.y33{bottom:583.199767pt;}
.y30{bottom:583.200000pt;}
.y32{bottom:587.199765pt;}
.y6d{bottom:592.639763pt;}
.yfb{bottom:594.879762pt;}
.y190{bottom:598.079761pt;}
.y168{bottom:598.719761pt;}
.yc1{bottom:598.879760pt;}
.yac{bottom:609.599756pt;}
.y126{bottom:610.399756pt;}
.y97{bottom:614.879754pt;}
.y2f{bottom:615.839754pt;}
.y18f{bottom:615.999754pt;}
.y167{bottom:617.599753pt;}
.y6c{bottom:620.159752pt;}
.y2d{bottom:626.240000pt;}
.y2c{bottom:628.799748pt;}
.y2b{bottom:632.799747pt;}
.yfa{bottom:633.119747pt;}
.y18e{bottom:634.879746pt;}
.y166{bottom:635.519746pt;}
.yab{bottom:637.119745pt;}
.y2a{bottom:642.079743pt;}
.y96{bottom:642.559743pt;}
.y125{bottom:645.119742pt;}
.y6b{bottom:647.839741pt;}
.y18d{bottom:652.799739pt;}
.yf8{bottom:653.280000pt;}
.y165{bottom:654.399738pt;}
.y29{bottom:655.359738pt;}
.y83{bottom:658.399737pt;}
.y28{bottom:659.359736pt;}
.yaa{bottom:664.799734pt;}
.y26{bottom:666.080000pt;}
.y25{bottom:668.639733pt;}
.y95{bottom:670.079732pt;}
.y18c{bottom:670.719732pt;}
.y164{bottom:672.159731pt;}
.y24{bottom:672.639731pt;}
.y6a{bottom:675.359730pt;}
.y22{bottom:679.200000pt;}
.y21{bottom:681.759727pt;}
.y20{bottom:685.759726pt;}
.y82{bottom:686.079726pt;}
.y18b{bottom:689.599724pt;}
.y163{bottom:691.039724pt;}
.yc0{bottom:692.319723pt;}
.y1e{bottom:692.480000pt;}
.y1d{bottom:695.039722pt;}
.y94{bottom:697.759721pt;}
.y1c{bottom:699.039720pt;}
.ya9{bottom:703.039719pt;}
.y1a{bottom:705.760000pt;}
.y18a{bottom:707.519717pt;}
.y19{bottom:708.319717pt;}
.y162{bottom:708.959716pt;}
.y18{bottom:712.319715pt;}
.y69{bottom:713.599715pt;}
.y16{bottom:719.040000pt;}
.yed{bottom:719.999712pt;}
.y15{bottom:721.599711pt;}
.y93{bottom:725.279710pt;}
.y14{bottom:725.599710pt;}
.y189{bottom:726.399709pt;}
.y161{bottom:728.319709pt;}
.ya8{bottom:730.559708pt;}
.y13{bottom:734.719706pt;}
.y12{bottom:738.719705pt;}
.y68{bottom:741.279703pt;}
.y188{bottom:744.319702pt;}
.y160{bottom:746.559701pt;}
.yd0{bottom:751.999699pt;}
.ybf{bottom:758.239697pt;}
.y11{bottom:760.479696pt;}
.y187{bottom:762.239695pt;}
.y92{bottom:763.519695pt;}
.y15f{bottom:764.799694pt;}
.y67{bottom:768.799692pt;}
.yf{bottom:779.359688pt;}
.ycf{bottom:779.519688pt;}
.y186{bottom:781.119688pt;}
.y15e{bottom:782.879687pt;}
.y10{bottom:783.999686pt;}
.ybe{bottom:785.759686pt;}
.yd{bottom:795.999682pt;}
.y66{bottom:796.479681pt;}
.y185{bottom:799.039680pt;}
.ye{bottom:800.639680pt;}
.y15d{bottom:801.119680pt;}
.y91{bottom:801.919679pt;}
.ya7{bottom:807.199677pt;}
.ybd{bottom:813.439675pt;}
.y184{bottom:816.959673pt;}
.y15c{bottom:818.879672pt;}
.y8f{bottom:822.080000pt;}
.y65{bottom:823.999670pt;}
.yc{bottom:828.479669pt;}
.y81{bottom:834.719666pt;}
.y183{bottom:835.679666pt;}
.y15b{bottom:836.799665pt;}
.ybc{bottom:840.959664pt;}
.y64{bottom:851.679659pt;}
.y182{bottom:853.599659pt;}
.y15a{bottom:855.679658pt;}
.y52{bottom:861.280000pt;}
.y80{bottom:862.399655pt;}
.y57{bottom:868.799652pt;}
.y181{bottom:871.519651pt;}
.y159{bottom:873.599651pt;}
.y63{bottom:879.199648pt;}
.y56{bottom:886.399645pt;}
.y7f{bottom:889.919644pt;}
.y180{bottom:890.399644pt;}
.y158{bottom:892.479643pt;}
.y62{bottom:906.879637pt;}
.y17f{bottom:909.279636pt;}
.y157{bottom:910.399636pt;}
.y7e{bottom:917.599633pt;}
.y55{bottom:921.119632pt;}
.y17e{bottom:927.199629pt;}
.y156{bottom:929.279628pt;}
.y58{bottom:939.360000pt;}
.y54{bottom:942.079623pt;}
.y61{bottom:945.119622pt;}
.y155{bottom:946.239622pt;}
.y6{bottom:970.719612pt;}
.y4{bottom:973.439611pt;}
.y3{bottom:1001.599599pt;}
.y2{bottom:1016.959593pt;}
.y1{bottom:1032.159587pt;}
.h3{height:0.960000pt;}
.he{height:12.160000pt;}
.h19{height:13.920000pt;}
.h1a{height:14.720000pt;}
.h11{height:17.920000pt;}
.h6{height:18.080000pt;}
.h1c{height:18.240000pt;}
.hf{height:18.663743pt;}
.hc{height:18.676868pt;}
.hb{height:23.422491pt;}
.h10{height:29.773113pt;}
.hd{height:29.794051pt;}
.h5{height:30.778113pt;}
.h15{height:32.554674pt;}
.h13{height:34.453111pt;}
.h4{height:34.851549pt;}
.h14{height:34.968736pt;}
.ha{height:36.001236pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h17{height:38.569047pt;}
.h18{height:38.698735pt;}
.h20{height:40.911234pt;}
.h2{height:42.262483pt;}
.h12{height:42.751233pt;}
.h1f{height:42.894983pt;}
.h1e{height:43.374983pt;}
.h9{height:44.468732pt;}
.h16{height:46.468731pt;}
.h1b{height:46.593731pt;}
.h1d{height:46.624981pt;}
.h8{height:50.748730pt;}
.h0{height:1056.000000pt;}
.we{width:2.400000pt;}
.wf{width:3.200000pt;}
.wa{width:3.360000pt;}
.w11{width:4.480000pt;}
.w2{width:6.080000pt;}
.wd{width:7.200000pt;}
.wc{width:7.360000pt;}
.w14{width:7.840000pt;}
.w1{width:8.640000pt;}
.w5{width:9.760000pt;}
.w8{width:23.200000pt;}
.wb{width:29.120000pt;}
.w9{width:49.440000pt;}
.w12{width:60.800000pt;}
.w10{width:81.440000pt;}
.w1a{width:121.120000pt;}
.w18{width:139.040000pt;}
.w17{width:144.800000pt;}
.w4{width:161.600000pt;}
.w19{width:173.120000pt;}
.w16{width:189.120000pt;}
.w15{width:199.040000pt;}
.w3{width:224.480000pt;}
.w6{width:227.040000pt;}
.w13{width:260.960000pt;}
.w7{width:366.720000pt;}
.w0{width:816.000000pt;}
.x42{left:-4.160232pt;}
.x0{left:0.000000pt;}
.x4{left:70.399972pt;}
.x5{left:93.599963pt;}
.x1{left:95.999962pt;}
.x37{left:98.239961pt;}
.x49{left:107.039990pt;}
.x35{left:107.999957pt;}
.x8{left:109.759956pt;}
.x3a{left:111.519955pt;}
.x4b{left:112.639955pt;}
.x36{left:114.559934pt;}
.x9{left:116.159954pt;}
.xa{left:120.159952pt;}
.x2a{left:135.520623pt;}
.x39{left:139.679944pt;}
.x48{left:143.999914pt;}
.x38{left:148.639941pt;}
.x57{left:155.040288pt;}
.x13{left:156.320193pt;}
.x3b{left:161.279935pt;}
.x2f{left:169.760000pt;}
.x55{left:170.719484pt;}
.x30{left:173.120000pt;}
.x19{left:175.039930pt;}
.x1a{left:178.399929pt;}
.x28{left:181.599927pt;}
.x4e{left:183.999926pt;}
.x29{left:184.954593pt;}
.x3c{left:192.480000pt;}
.x25{left:196.959921pt;}
.x54{left:198.719921pt;}
.x26{left:200.314587pt;}
.x31{left:202.239919pt;}
.x32{left:204.800000pt;}
.x21{left:215.039914pt;}
.x22{left:218.399913pt;}
.x1e{left:220.159912pt;}
.x1f{left:223.519911pt;}
.x3d{left:225.119910pt;}
.x1b{left:227.039909pt;}
.x1c{left:230.399908pt;}
.xb{left:237.599905pt;}
.x47{left:239.519904pt;}
.x33{left:243.200000pt;}
.x14{left:247.039901pt;}
.xc{left:248.479901pt;}
.x15{left:251.359899pt;}
.x34{left:262.239895pt;}
.x2b{left:263.199895pt;}
.x2c{left:266.559893pt;}
.x2{left:268.959892pt;}
.x2e{left:269.919892pt;}
.x3e{left:326.719842pt;}
.x6{left:330.559868pt;}
.x3f{left:341.119864pt;}
.x43{left:352.160000pt;}
.x16{left:357.279857pt;}
.xd{left:360.799856pt;}
.xe{left:365.119854pt;}
.x51{left:408.000304pt;}
.x44{left:417.440000pt;}
.x40{left:427.199829pt;}
.x27{left:449.280000pt;}
.x17{left:503.199799pt;}
.x18{left:507.519797pt;}
.xf{left:516.799793pt;}
.x10{left:521.119792pt;}
.x41{left:584.800000pt;}
.x24{left:588.960000pt;}
.x1d{left:591.520000pt;}
.x3{left:606.399757pt;}
.x46{left:616.960000pt;}
.x4a{left:626.880000pt;}
.x52{left:642.880000pt;}
.x4f{left:652.961373pt;}
.x20{left:654.400000pt;}
.x11{left:655.999738pt;}
.x12{left:660.319736pt;}
.x4c{left:667.200238pt;}
.x4d{left:671.200000pt;}
.x50{left:676.960000pt;}
.x45{left:678.400000pt;}
.x56{left:685.920155pt;}
.x53{left:694.880000pt;}
.x7{left:748.960000pt;}
.x2d{left:792.800000pt;}
.x23{left:806.240000pt;}
}




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