
    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_dac7379dcba2b294c142b643.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_3ef0d4a9c41f782a65c7c498.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_cca66a393175f5c1276708c5.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_b13e412d821e6087d4138f7a.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_d880996b5d4459ce1df9ef07.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4f137a202588d3ef1c4bf973.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.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_fc4ff1d5999fc8a27c4cf36a.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_c399531aa150ac8b4ac7f314.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_146e5a81a0811ca4e2aafef2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b869dd377f61318ba17aa3ee.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018600px;}
.ls7{letter-spacing:0.021106px;}
.ls6{letter-spacing:0.021238px;}
.ls5{letter-spacing:0.021282px;}
.ls1{letter-spacing:0.158804px;}
.ls3{letter-spacing:13.157275px;}
.ls0{letter-spacing:1569.256500px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-32.418587px;}
.ws8{word-spacing:-18.021275px;}
.ws9{word-spacing:-18.021231px;}
.wsa{word-spacing:-18.021099px;}
.ws7{word-spacing:-17.999993px;}
.ws4{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-9.333160px;}
._e{margin-left:-5.683688px;}
._1{margin-left:-4.242803px;}
._a{margin-left:-2.730284px;}
._3{margin-left:-1.570800px;}
._0{width:1.003097px;}
._8{width:2.345947px;}
._9{width:3.413588px;}
._14{width:4.675044px;}
._4{width:5.991299px;}
._5{width:7.176303px;}
._d{width:8.792027px;}
._11{width:10.726343px;}
._c{width:12.079378px;}
._b{width:13.406520px;}
._15{width:14.837267px;}
._17{width:15.901057px;}
._10{width:17.201949px;}
._f{width:18.343292px;}
._16{width:19.355465px;}
._1c{width:20.954970px;}
._13{width:22.174800px;}
._1d{width:23.190782px;}
._7{width:24.265124px;}
._6{width:25.356512px;}
._12{width:27.315845px;}
._1a{width:29.073222px;}
._1b{width:30.169295px;}
._21{width:31.211146px;}
._1e{width:32.338789px;}
._1f{width:33.689865px;}
._20{width:34.724390px;}
._18{width:39.109726px;}
._19{width:40.239001px;}
.fcc{color:rgb(0,101,204);}
.fca{color:rgb(44,62,80);}
.fc9{color:rgb(0,32,96);}
.fc8{color:rgb(83,129,53);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(51,51,51);}
.fc7{color:rgb(0,176,80);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs7{font-size:81.359967px;}
.fs6{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.y6{bottom:-9.539991px;}
.y52{bottom:-7.560715px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y27{bottom:2.699067px;}
.y1b{bottom:3.238979px;}
.y20{bottom:3.958978px;}
.y25{bottom:4.319057px;}
.y22{bottom:4.498947px;}
.y24{bottom:4.499057px;}
.y33{bottom:4.499069px;}
.yb{bottom:4.500038px;}
.yc{bottom:33.240287px;}
.ya{bottom:51.060240px;}
.y8{bottom:55.560278px;}
.y9{bottom:57.000277px;}
.y7d{bottom:131.699947px;}
.yf3{bottom:131.879947px;}
.y19{bottom:133.679947px;}
.yb9{bottom:134.399946px;}
.y143{bottom:136.199946px;}
.y168{bottom:144.299942px;}
.y7c{bottom:152.399939px;}
.yf2{bottom:152.579939px;}
.y18{bottom:154.379938px;}
.yb8{bottom:155.099938px;}
.y115{bottom:156.359937px;}
.y142{bottom:156.899937px;}
.y97{bottom:163.019935px;}
.y167{bottom:164.999934px;}
.y7b{bottom:172.919931px;}
.y185{bottom:173.819930px;}
.y17{bottom:175.079930px;}
.yb7{bottom:175.799930px;}
.y114{bottom:177.059929px;}
.y141{bottom:177.599929px;}
.y96{bottom:183.719927px;}
.yf1{bottom:194.339922px;}
.y16{bottom:195.779922px;}
.yce{bottom:196.499921px;}
.y113{bottom:197.759921px;}
.y140{bottom:198.299921px;}
.y7a{bottom:202.619919px;}
.y95{bottom:204.419918px;}
.y166{bottom:207.299917px;}
.yf0{bottom:215.039914px;}
.y184{bottom:215.579914px;}
.y15{bottom:216.479913px;}
.yb6{bottom:217.559913px;}
.y112{bottom:218.459913px;}
.y13f{bottom:218.999912px;}
.y94{bottom:225.119910px;}
.y79{bottom:232.319907px;}
.yef{bottom:235.739906px;}
.y124{bottom:235.919906px;}
.y14{bottom:237.719905px;}
.ycd{bottom:238.259905px;}
.y13e{bottom:239.699904px;}
.y93{bottom:245.819902px;}
.y165{bottom:251.939899px;}
.y78{bottom:253.019899px;}
.yee{bottom:256.439897px;}
.y123{bottom:256.619897px;}
.y183{bottom:257.339897px;}
.ycc{bottom:258.959896px;}
.yb5{bottom:259.139896px;}
.y111{bottom:260.039896px;}
.y92{bottom:266.519893px;}
.y4c{bottom:270.659892px;}
.y164{bottom:272.639891px;}
.y77{bottom:273.719891px;}
.y122{bottom:277.319889px;}
.yb4{bottom:279.839888px;}
.y13d{bottom:281.459887px;}
.y91{bottom:287.219885px;}
.y163{bottom:293.339883px;}
.y76{bottom:294.419882px;}
.y51{bottom:294.960600px;}
.yed{bottom:298.019881px;}
.y182{bottom:298.919880px;}
.yb3{bottom:300.539880px;}
.y110{bottom:301.799879px;}
.y90{bottom:307.919877px;}
.y162{bottom:314.039874px;}
.y50{bottom:315.119874px;}
.y121{bottom:318.719873px;}
.y181{bottom:319.619872px;}
.y31{bottom:320.699872px;}
.yb2{bottom:321.239872px;}
.y10f{bottom:322.499871px;}
.y13c{bottom:323.039871px;}
.y4f{bottom:330.779868px;}
.y161{bottom:334.739866px;}
.y75{bottom:335.819866px;}
.y120{bottom:339.419864px;}
.yec{bottom:339.779864px;}
.yb1{bottom:341.939863px;}
.ycb{bottom:342.299863px;}
.y10e{bottom:343.199863px;}
.y13b{bottom:343.739863px;}
.y4e{bottom:346.259861px;}
.y8f{bottom:350.219860px;}
.y160{bottom:355.439858px;}
.y74{bottom:356.519857px;}
.y11f{bottom:360.119856px;}
.yeb{bottom:360.479856px;}
.y180{bottom:361.919855px;}
.y4d{bottom:362.459855px;}
.yb0{bottom:362.639855px;}
.y10d{bottom:363.899854px;}
.y13a{bottom:364.439854px;}
.y15f{bottom:376.139850px;}
.y73{bottom:377.219849px;}
.y11e{bottom:380.819848px;}
.yea{bottom:381.179848px;}
.yca{bottom:384.059846px;}
.y10c{bottom:384.599846px;}
.y139{bottom:385.139846px;}
.y4b{bottom:390.179844px;}
.y8e{bottom:394.859842px;}
.y15e{bottom:396.839841px;}
.y11d{bottom:401.519839px;}
.ye9{bottom:401.879839px;}
.yaf{bottom:404.399838px;}
.yc9{bottom:404.759838px;}
.y138{bottom:405.839838px;}
.y17f{bottom:406.559837px;}
.y72{bottom:407.639837px;}
.y4a{bottom:411.239836px;}
.y8d{bottom:411.599835px;}
.y15d{bottom:417.539833px;}
.y11c{bottom:422.219831px;}
.ye8{bottom:422.579831px;}
.yc8{bottom:425.459830px;}
.y10b{bottom:426.359829px;}
.y137{bottom:426.539829px;}
.y17e{bottom:427.259829px;}
.y15c{bottom:438.239825px;}
.ye7{bottom:443.279823px;}
.yae{bottom:446.159822px;}
.y49{bottom:446.519821px;}
.y10a{bottom:447.059821px;}
.y17d{bottom:447.959821px;}
.y71{bottom:452.099819px;}
.y15b{bottom:458.759816px;}
.y48{bottom:463.799814px;}
.y11b{bottom:463.979814px;}
.yc7{bottom:466.859813px;}
.y109{bottom:467.759813px;}
.y136{bottom:468.299813px;}
.y17c{bottom:468.659813px;}
.y70{bottom:472.799811px;}
.y15a{bottom:479.459808px;}
.ye6{bottom:484.859806px;}
.y30{bottom:487.199805px;}
.yad{bottom:487.739805px;}
.y108{bottom:488.459805px;}
.y135{bottom:488.999804px;}
.y17b{bottom:489.359804px;}
.y6f{bottom:493.499803px;}
.y159{bottom:500.159800px;}
.y47{bottom:501.959799px;}
.ye5{bottom:505.559798px;}
.y11a{bottom:506.279797px;}
.yac{bottom:508.439797px;}
.y107{bottom:509.159796px;}
.y134{bottom:509.699796px;}
.y17a{bottom:510.059796px;}
.y6e{bottom:514.199794px;}
.y46{bottom:519.239792px;}
.y158{bottom:520.859792px;}
.ye4{bottom:526.259789px;}
.yab{bottom:529.139788px;}
.y133{bottom:530.399788px;}
.y179{bottom:530.759788px;}
.y6d{bottom:534.899786px;}
.y45{bottom:536.519785px;}
.y157{bottom:541.559783px;}
.ye3{bottom:546.959781px;}
.yaa{bottom:549.839780px;}
.yc6{bottom:550.199780px;}
.y106{bottom:550.739780px;}
.y132{bottom:551.099780px;}
.y178{bottom:551.459779px;}
.y44{bottom:553.799778px;}
.y6c{bottom:555.599778px;}
.ye2{bottom:567.659773px;}
.ya9{bottom:570.539772px;}
.yc5{bottom:570.899772px;}
.y43{bottom:571.079772px;}
.y105{bottom:571.439771px;}
.y131{bottom:571.799771px;}
.y156{bottom:571.979771px;}
.y6b{bottom:576.299769px;}
.y42{bottom:588.179765px;}
.ye1{bottom:588.359765px;}
.yc4{bottom:591.599763px;}
.y2f{bottom:592.139763px;}
.y130{bottom:592.499763px;}
.y177{bottom:593.039763px;}
.y6a{bottom:596.999761px;}
.y41{bottom:605.459758px;}
.ya8{bottom:612.299755px;}
.y104{bottom:612.839755px;}
.y12f{bottom:613.199755px;}
.y176{bottom:613.739755px;}
.y155{bottom:616.439753px;}
.y69{bottom:618.239753px;}
.y40{bottom:622.739751px;}
.ye0{bottom:630.119748px;}
.ya7{bottom:632.999747px;}
.y103{bottom:633.539747px;}
.y175{bottom:634.439746px;}
.y154{bottom:637.139745px;}
.y3f{bottom:640.019744px;}
.y2e{bottom:644.879742px;}
.ydf{bottom:650.819740px;}
.ya6{bottom:653.699739px;}
.y119{bottom:654.599738px;}
.y12e{bottom:654.959738px;}
.y174{bottom:655.139738px;}
.y3e{bottom:657.299737px;}
.y153{bottom:657.839737px;}
.y2d{bottom:660.179736px;}
.y68{bottom:661.979735px;}
.yde{bottom:671.519731px;}
.y3d{bottom:674.399730px;}
.yc3{bottom:674.759730px;}
.y102{bottom:675.299730px;}
.y2c{bottom:675.479730px;}
.y173{bottom:675.839730px;}
.y152{bottom:678.539729px;}
.y67{bottom:682.679727px;}
.y2b{bottom:689.519724px;}
.y3c{bottom:691.679723px;}
.ydd{bottom:692.219723px;}
.ya5{bottom:695.099722px;}
.y101{bottom:695.999722px;}
.y12d{bottom:696.539721px;}
.y151{bottom:699.239720px;}
.y66{bottom:703.379719px;}
.y3b{bottom:708.959716px;}
.ydc{bottom:712.919715px;}
.yc2{bottom:716.339713px;}
.y100{bottom:716.699713px;}
.y12c{bottom:717.239713px;}
.y150{bottom:719.939712px;}
.y65{bottom:724.079710px;}
.y3a{bottom:726.239710px;}
.y8c{bottom:731.999707px;}
.ydb{bottom:733.619707px;}
.ya4{bottom:736.859705px;}
.yc1{bottom:737.039705px;}
.yff{bottom:737.399705px;}
.y12b{bottom:737.939705px;}
.y2a{bottom:740.999704px;}
.y39{bottom:743.519703px;}
.y64{bottom:744.779702px;}
.y14f{bottom:749.639700px;}
.y8b{bottom:752.699699px;}
.yda{bottom:754.319698px;}
.yc0{bottom:757.739697px;}
.y118{bottom:758.099697px;}
.y12a{bottom:758.639697px;}
.y172{bottom:758.999696px;}
.y38{bottom:760.799696px;}
.y63{bottom:765.479694px;}
.y8a{bottom:773.399691px;}
.y37{bottom:777.899689px;}
.ya3{bottom:778.439689px;}
.y117{bottom:778.799688px;}
.yfe{bottom:779.159688px;}
.y129{bottom:779.339688px;}
.y171{bottom:779.699688px;}
.y62{bottom:786.179686px;}
.y14e{bottom:791.399683px;}
.y29{bottom:792.479683px;}
.y89{bottom:794.099682px;}
.y36{bottom:795.179682px;}
.yd9{bottom:796.079682px;}
.ya2{bottom:799.139680px;}
.y128{bottom:800.039680px;}
.y170{bottom:800.399680px;}
.y61{bottom:807.239677px;}
.y28{bottom:808.139677px;}
.y14d{bottom:812.099675px;}
.y35{bottom:812.459675px;}
.y88{bottom:814.799674px;}
.yd8{bottom:816.779673px;}
.y116{bottom:820.379672px;}
.yfd{bottom:820.739672px;}
.y16f{bottom:821.099672px;}
.y32{bottom:823.620600px;}
.y34{bottom:829.739668px;}
.y26{bottom:829.740600px;}
.y14c{bottom:832.799667px;}
.y87{bottom:835.499666px;}
.yd7{bottom:837.479665px;}
.y60{bottom:839.099664px;}
.ya1{bottom:840.899664px;}
.yfc{bottom:841.439663px;}
.y16e{bottom:841.799663px;}
.y14b{bottom:853.499659px;}
.y23{bottom:854.040600px;}
.yd6{bottom:858.179657px;}
.y5f{bottom:859.799656px;}
.ya0{bottom:861.599655px;}
.yfb{bottom:862.139655px;}
.y16d{bottom:862.499655px;}
.y86{bottom:865.199654px;}
.y14a{bottom:874.199650px;}
.yd5{bottom:878.879648px;}
.y5e{bottom:880.499648px;}
.y9f{bottom:882.299647px;}
.ybf{bottom:882.479647px;}
.yfa{bottom:882.839647px;}
.y16c{bottom:883.199647px;}
.y13{bottom:885.899646px;}
.y149{bottom:894.899642px;}
.yd4{bottom:899.579640px;}
.y5d{bottom:901.199640px;}
.yf9{bottom:903.539639px;}
.y16b{bottom:903.899638px;}
.y12{bottom:905.879638px;}
.y85{bottom:906.779637px;}
.y148{bottom:915.599634px;}
.yd3{bottom:920.279632px;}
.y5c{bottom:921.899631px;}
.y11{bottom:923.159631px;}
.y9e{bottom:923.879630px;}
.ybe{bottom:924.239630px;}
.y16a{bottom:924.599630px;}
.y84{bottom:927.479629px;}
.y147{bottom:936.299625px;}
.y10{bottom:940.259624px;}
.yd2{bottom:940.979624px;}
.y5b{bottom:942.599623px;}
.y9d{bottom:944.579622px;}
.ybd{bottom:944.939622px;}
.yf8{bottom:945.299622px;}
.y83{bottom:948.179621px;}
.y146{bottom:956.999617px;}
.yf{bottom:958.259617px;}
.y5a{bottom:963.299615px;}
.y9c{bottom:965.279614px;}
.ybc{bottom:965.639614px;}
.yf7{bottom:965.999614px;}
.y169{bottom:966.179614px;}
.y82{bottom:968.879612px;}
.y145{bottom:977.699609px;}
.yd1{bottom:982.559607px;}
.y59{bottom:983.999606px;}
.ybb{bottom:986.339605px;}
.yf6{bottom:986.699605px;}
.y127{bottom:986.879605px;}
.ye{bottom:989.399604px;}
.y81{bottom:989.579604px;}
.y144{bottom:998.399601px;}
.y58{bottom:1005.239598px;}
.y9b{bottom:1007.039597px;}
.yf5{bottom:1007.399597px;}
.y126{bottom:1007.579597px;}
.y80{bottom:1010.279596px;}
.yd{bottom:1016.939593px;}
.yd0{bottom:1024.859590px;}
.y9a{bottom:1027.739589px;}
.yf4{bottom:1028.099589px;}
.y125{bottom:1028.279589px;}
.y7f{bottom:1030.979588px;}
.y99{bottom:1048.439581px;}
.yba{bottom:1048.799580px;}
.y57{bottom:1048.979580px;}
.y1a{bottom:1050.420600px;}
.y1f{bottom:1054.379578px;}
.y7e{bottom:1060.679576px;}
.ycf{bottom:1069.499572px;}
.y56{bottom:1069.679572px;}
.y1e{bottom:1072.739571px;}
.y98{bottom:1090.199564px;}
.y55{bottom:1090.379564px;}
.y1d{bottom:1101.719559px;}
.y54{bottom:1111.079556px;}
.y21{bottom:1127.280600px;}
.y1c{bottom:1127.459549px;}
.y53{bottom:1131.779547px;}
.y4{bottom:1153.019539px;}
.y7{bottom:1180.739528px;}
.y3{bottom:1184.699526px;}
.y2{bottom:1201.979519px;}
.y1{bottom:1219.259512px;}
.h18{height:5.220000px;}
.h3{height:6.300000px;}
.h12{height:14.040000px;}
.hc{height:19.080000px;}
.he{height:19.800000px;}
.hf{height:20.160000px;}
.h6{height:20.340000px;}
.h13{height:33.706744px;}
.h5{height:34.625377px;}
.h15{height:36.624009px;}
.h4{height:36.703110px;}
.h17{height:36.914048px;}
.h19{height:38.759750px;}
.h14{height:39.339828px;}
.h16{height:41.493499px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h10{height:44.149201px;}
.h11{height:45.281232px;}
.h2{height:47.545293px;}
.h9{height:48.796855px;}
.ha{height:50.027324px;}
.h1a{height:55.140447px;}
.hb{height:57.092321px;}
.hd{height:57.585914px;}
.h8{height:64.899818px;}
.h0{height:1263.000000px;}
.w7{width:3.600000px;}
.w3{width:5.400000px;}
.wc{width:7.020000px;}
.wd{width:7.920000px;}
.w9{width:8.100000px;}
.w4{width:8.280000px;}
.w2{width:9.720000px;}
.w5{width:18.720000px;}
.w8{width:33.660000px;}
.w6{width:58.320000px;}
.wa{width:70.200000px;}
.wb{width:113.580000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x21{left:64.259974px;}
.x1f{left:66.239974px;}
.x17{left:79.920000px;}
.x23{left:81.179968px;}
.x4{left:84.419966px;}
.x18{left:98.640000px;}
.x1{left:107.999957px;}
.x5{left:109.439956px;}
.x22{left:112.859955px;}
.x20{left:122.939951px;}
.x8{left:136.439945px;}
.x19{left:156.960000px;}
.x1a{left:160.560000px;}
.x1b{left:194.220000px;}
.x24{left:206.819927px;}
.x25{left:207.899917px;}
.x1c{left:227.160000px;}
.xf{left:240.840000px;}
.x1d{left:247.500000px;}
.x26{left:253.979898px;}
.x13{left:269.999135px;}
.x9{left:271.979918px;}
.xc{left:297.359880px;}
.x2{left:302.579879px;}
.x10{left:307.979877px;}
.x1e{left:317.520000px;}
.xd{left:333.539837px;}
.xb{left:339.839864px;}
.xa{left:368.459853px;}
.x14{left:370.799852px;}
.x6{left:376.019850px;}
.x11{left:377.459790px;}
.xe{left:446.399821px;}
.x12{left:549.539780px;}
.x15{left:578.340000px;}
.x3{left:659.339736px;}
.x27{left:661.320084px;}
.x16{left:734.580000px;}
.x28{left:773.819690px;}
.x7{left:796.860000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016533pt;}
.ls7{letter-spacing:0.018761pt;}
.ls6{letter-spacing:0.018878pt;}
.ls5{letter-spacing:0.018917pt;}
.ls1{letter-spacing:0.141159pt;}
.ls3{letter-spacing:11.695355pt;}
.ls0{letter-spacing:1394.894667pt;}
.ws5{word-spacing:-28.816521pt;}
.ws8{word-spacing:-16.018911pt;}
.ws9{word-spacing:-16.018872pt;}
.wsa{word-spacing:-16.018755pt;}
.ws7{word-spacing:-15.999994pt;}
.ws4{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-8.296142pt;}
._e{margin-left:-5.052167pt;}
._1{margin-left:-3.771380pt;}
._a{margin-left:-2.426919pt;}
._3{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._8{width:2.085286pt;}
._9{width:3.034300pt;}
._14{width:4.155595pt;}
._4{width:5.325600pt;}
._5{width:6.378936pt;}
._d{width:7.815135pt;}
._11{width:9.534527pt;}
._c{width:10.737225pt;}
._b{width:11.916907pt;}
._15{width:13.188682pt;}
._17{width:14.134273pt;}
._10{width:15.290622pt;}
._f{width:16.305149pt;}
._16{width:17.204858pt;}
._1c{width:18.626640pt;}
._13{width:19.710934pt;}
._1d{width:20.614029pt;}
._7{width:21.569000pt;}
._6{width:22.539122pt;}
._12{width:24.280751pt;}
._1a{width:25.842864pt;}
._1b{width:26.817151pt;}
._21{width:27.743241pt;}
._1e{width:28.745590pt;}
._1f{width:29.946546pt;}
._20{width:30.866125pt;}
._18{width:34.764201pt;}
._19{width:35.768001pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs7{font-size:72.319971pt;}
.fs6{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.y6{bottom:-8.479992pt;}
.y52{bottom:-6.720636pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y27{bottom:2.399171pt;}
.y1b{bottom:2.879092pt;}
.y20{bottom:3.519092pt;}
.y25{bottom:3.839161pt;}
.y22{bottom:3.999064pt;}
.y24{bottom:3.999161pt;}
.y33{bottom:3.999172pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.546922pt;}
.ya{bottom:45.386880pt;}
.y8{bottom:49.386914pt;}
.y9{bottom:50.666913pt;}
.y7d{bottom:117.066620pt;}
.yf3{bottom:117.226620pt;}
.y19{bottom:118.826619pt;}
.yb9{bottom:119.466619pt;}
.y143{bottom:121.066618pt;}
.y168{bottom:128.266615pt;}
.y7c{bottom:135.466612pt;}
.yf2{bottom:135.626612pt;}
.y18{bottom:137.226612pt;}
.yb8{bottom:137.866612pt;}
.y115{bottom:138.986611pt;}
.y142{bottom:139.466611pt;}
.y97{bottom:144.906609pt;}
.y167{bottom:146.666608pt;}
.y7b{bottom:153.706605pt;}
.y185{bottom:154.506605pt;}
.y17{bottom:155.626604pt;}
.yb7{bottom:156.266604pt;}
.y114{bottom:157.386604pt;}
.y141{bottom:157.866604pt;}
.y96{bottom:163.306601pt;}
.yf1{bottom:172.746598pt;}
.y16{bottom:174.026597pt;}
.yce{bottom:174.666597pt;}
.y113{bottom:175.786596pt;}
.y140{bottom:176.266596pt;}
.y7a{bottom:180.106595pt;}
.y95{bottom:181.706594pt;}
.y166{bottom:184.266593pt;}
.yf0{bottom:191.146590pt;}
.y184{bottom:191.626590pt;}
.y15{bottom:192.426590pt;}
.yb6{bottom:193.386589pt;}
.y112{bottom:194.186589pt;}
.y13f{bottom:194.666589pt;}
.y94{bottom:200.106587pt;}
.y79{bottom:206.506584pt;}
.yef{bottom:209.546583pt;}
.y124{bottom:209.706583pt;}
.y14{bottom:211.306582pt;}
.ycd{bottom:211.786582pt;}
.y13e{bottom:213.066581pt;}
.y93{bottom:218.506579pt;}
.y165{bottom:223.946577pt;}
.y78{bottom:224.906577pt;}
.yee{bottom:227.946575pt;}
.y123{bottom:228.106575pt;}
.y183{bottom:228.746575pt;}
.ycc{bottom:230.186575pt;}
.yb5{bottom:230.346575pt;}
.y111{bottom:231.146574pt;}
.y92{bottom:236.906572pt;}
.y4c{bottom:240.586570pt;}
.y164{bottom:242.346570pt;}
.y77{bottom:243.306569pt;}
.y122{bottom:246.506568pt;}
.yb4{bottom:248.746567pt;}
.y13d{bottom:250.186567pt;}
.y91{bottom:255.306565pt;}
.y163{bottom:260.746562pt;}
.y76{bottom:261.706562pt;}
.y51{bottom:262.187200pt;}
.yed{bottom:264.906561pt;}
.y182{bottom:265.706560pt;}
.yb3{bottom:267.146560pt;}
.y110{bottom:268.266559pt;}
.y90{bottom:273.706557pt;}
.y162{bottom:279.146555pt;}
.y50{bottom:280.106555pt;}
.y121{bottom:283.306553pt;}
.y181{bottom:284.106553pt;}
.y31{bottom:285.066553pt;}
.yb2{bottom:285.546552pt;}
.y10f{bottom:286.666552pt;}
.y13c{bottom:287.146552pt;}
.y4f{bottom:294.026549pt;}
.y161{bottom:297.546548pt;}
.y75{bottom:298.506547pt;}
.y120{bottom:301.706546pt;}
.yec{bottom:302.026546pt;}
.yb1{bottom:303.946545pt;}
.ycb{bottom:304.266545pt;}
.y10e{bottom:305.066545pt;}
.y13b{bottom:305.546544pt;}
.y4e{bottom:307.786544pt;}
.y8f{bottom:311.306542pt;}
.y160{bottom:315.946540pt;}
.y74{bottom:316.906540pt;}
.y11f{bottom:320.106539pt;}
.yeb{bottom:320.426538pt;}
.y180{bottom:321.706538pt;}
.y4d{bottom:322.186538pt;}
.yb0{bottom:322.346538pt;}
.y10d{bottom:323.466537pt;}
.y13a{bottom:323.946537pt;}
.y15f{bottom:334.346533pt;}
.y73{bottom:335.306533pt;}
.y11e{bottom:338.506531pt;}
.yea{bottom:338.826531pt;}
.yca{bottom:341.386530pt;}
.y10c{bottom:341.866530pt;}
.y139{bottom:342.346530pt;}
.y4b{bottom:346.826528pt;}
.y8e{bottom:350.986526pt;}
.y15e{bottom:352.746526pt;}
.y11d{bottom:356.906524pt;}
.ye9{bottom:357.226524pt;}
.yaf{bottom:359.466523pt;}
.yc9{bottom:359.786523pt;}
.y138{bottom:360.746522pt;}
.y17f{bottom:361.386522pt;}
.y72{bottom:362.346522pt;}
.y4a{bottom:365.546520pt;}
.y8d{bottom:365.866520pt;}
.y15d{bottom:371.146518pt;}
.y11c{bottom:375.306517pt;}
.ye8{bottom:375.626516pt;}
.yc8{bottom:378.186515pt;}
.y10b{bottom:378.986515pt;}
.y137{bottom:379.146515pt;}
.y17e{bottom:379.786515pt;}
.y15c{bottom:389.546511pt;}
.ye7{bottom:394.026509pt;}
.yae{bottom:396.586508pt;}
.y49{bottom:396.906508pt;}
.y10a{bottom:397.386508pt;}
.y17d{bottom:398.186507pt;}
.y71{bottom:401.866506pt;}
.y15b{bottom:407.786504pt;}
.y48{bottom:412.266502pt;}
.y11b{bottom:412.426502pt;}
.yc7{bottom:414.986501pt;}
.y109{bottom:415.786500pt;}
.y136{bottom:416.266500pt;}
.y17c{bottom:416.586500pt;}
.y70{bottom:420.266499pt;}
.y15a{bottom:426.186496pt;}
.ye6{bottom:430.986494pt;}
.y30{bottom:433.066493pt;}
.yad{bottom:433.546493pt;}
.y108{bottom:434.186493pt;}
.y135{bottom:434.666493pt;}
.y17b{bottom:434.986493pt;}
.y6f{bottom:438.666491pt;}
.y159{bottom:444.586489pt;}
.y47{bottom:446.186488pt;}
.ye5{bottom:449.386487pt;}
.y11a{bottom:450.026487pt;}
.yac{bottom:451.946486pt;}
.y107{bottom:452.586486pt;}
.y134{bottom:453.066485pt;}
.y17a{bottom:453.386485pt;}
.y6e{bottom:457.066484pt;}
.y46{bottom:461.546482pt;}
.y158{bottom:462.986481pt;}
.ye4{bottom:467.786480pt;}
.yab{bottom:470.346479pt;}
.y133{bottom:471.466478pt;}
.y179{bottom:471.786478pt;}
.y6d{bottom:475.466476pt;}
.y45{bottom:476.906476pt;}
.y157{bottom:481.386474pt;}
.ye3{bottom:486.186472pt;}
.yaa{bottom:488.746471pt;}
.yc6{bottom:489.066471pt;}
.y106{bottom:489.546471pt;}
.y132{bottom:489.866471pt;}
.y178{bottom:490.186471pt;}
.y44{bottom:492.266470pt;}
.y6c{bottom:493.866469pt;}
.ye2{bottom:504.586465pt;}
.ya9{bottom:507.146464pt;}
.yc5{bottom:507.466464pt;}
.y43{bottom:507.626464pt;}
.y105{bottom:507.946463pt;}
.y131{bottom:508.266463pt;}
.y156{bottom:508.426463pt;}
.y6b{bottom:512.266462pt;}
.y42{bottom:522.826458pt;}
.ye1{bottom:522.986457pt;}
.yc4{bottom:525.866456pt;}
.y2f{bottom:526.346456pt;}
.y130{bottom:526.666456pt;}
.y177{bottom:527.146456pt;}
.y6a{bottom:530.666454pt;}
.y41{bottom:538.186451pt;}
.ya8{bottom:544.266449pt;}
.y104{bottom:544.746449pt;}
.y12f{bottom:545.066449pt;}
.y176{bottom:545.546448pt;}
.y155{bottom:547.946447pt;}
.y69{bottom:549.546447pt;}
.y40{bottom:553.546445pt;}
.ye0{bottom:560.106443pt;}
.ya7{bottom:562.666442pt;}
.y103{bottom:563.146441pt;}
.y175{bottom:563.946441pt;}
.y154{bottom:566.346440pt;}
.y3f{bottom:568.906439pt;}
.y2e{bottom:573.226437pt;}
.ydf{bottom:578.506435pt;}
.ya6{bottom:581.066434pt;}
.y119{bottom:581.866434pt;}
.y12e{bottom:582.186434pt;}
.y174{bottom:582.346434pt;}
.y3e{bottom:584.266433pt;}
.y153{bottom:584.746433pt;}
.y2d{bottom:586.826432pt;}
.y68{bottom:588.426431pt;}
.yde{bottom:596.906428pt;}
.y3d{bottom:599.466427pt;}
.yc3{bottom:599.786427pt;}
.y102{bottom:600.266427pt;}
.y2c{bottom:600.426426pt;}
.y173{bottom:600.746426pt;}
.y152{bottom:603.146425pt;}
.y67{bottom:606.826424pt;}
.y2b{bottom:612.906422pt;}
.y3c{bottom:614.826421pt;}
.ydd{bottom:615.306421pt;}
.ya5{bottom:617.866420pt;}
.y101{bottom:618.666419pt;}
.y12d{bottom:619.146419pt;}
.y151{bottom:621.546418pt;}
.y66{bottom:625.226417pt;}
.y3b{bottom:630.186415pt;}
.ydc{bottom:633.706413pt;}
.yc2{bottom:636.746412pt;}
.y100{bottom:637.066412pt;}
.y12c{bottom:637.546412pt;}
.y150{bottom:639.946411pt;}
.y65{bottom:643.626409pt;}
.y3a{bottom:645.546408pt;}
.y8c{bottom:650.666406pt;}
.ydb{bottom:652.106406pt;}
.ya4{bottom:654.986405pt;}
.yc1{bottom:655.146405pt;}
.yff{bottom:655.466404pt;}
.y12b{bottom:655.946404pt;}
.y2a{bottom:658.666403pt;}
.y39{bottom:660.906402pt;}
.y64{bottom:662.026402pt;}
.y14f{bottom:666.346400pt;}
.y8b{bottom:669.066399pt;}
.yda{bottom:670.506398pt;}
.yc0{bottom:673.546397pt;}
.y118{bottom:673.866397pt;}
.y12a{bottom:674.346397pt;}
.y172{bottom:674.666397pt;}
.y38{bottom:676.266396pt;}
.y63{bottom:680.426394pt;}
.y8a{bottom:687.466392pt;}
.y37{bottom:691.466390pt;}
.ya3{bottom:691.946390pt;}
.y117{bottom:692.266390pt;}
.yfe{bottom:692.586390pt;}
.y129{bottom:692.746390pt;}
.y171{bottom:693.066389pt;}
.y62{bottom:698.826387pt;}
.y14e{bottom:703.466385pt;}
.y29{bottom:704.426385pt;}
.y89{bottom:705.866384pt;}
.y36{bottom:706.826384pt;}
.yd9{bottom:707.626384pt;}
.ya2{bottom:710.346383pt;}
.y128{bottom:711.146382pt;}
.y170{bottom:711.466382pt;}
.y61{bottom:717.546380pt;}
.y28{bottom:718.346379pt;}
.y14d{bottom:721.866378pt;}
.y35{bottom:722.186378pt;}
.y88{bottom:724.266377pt;}
.yd8{bottom:726.026376pt;}
.y116{bottom:729.226375pt;}
.yfd{bottom:729.546375pt;}
.y16f{bottom:729.866375pt;}
.y32{bottom:732.107200pt;}
.y34{bottom:737.546372pt;}
.y26{bottom:737.547200pt;}
.y14c{bottom:740.266371pt;}
.y87{bottom:742.666370pt;}
.yd7{bottom:744.426369pt;}
.y60{bottom:745.866368pt;}
.ya1{bottom:747.466368pt;}
.yfc{bottom:747.946367pt;}
.y16e{bottom:748.266367pt;}
.y14b{bottom:758.666363pt;}
.y23{bottom:759.147200pt;}
.yd6{bottom:762.826362pt;}
.y5f{bottom:764.266361pt;}
.ya0{bottom:765.866360pt;}
.yfb{bottom:766.346360pt;}
.y16d{bottom:766.666360pt;}
.y86{bottom:769.066359pt;}
.y14a{bottom:777.066356pt;}
.yd5{bottom:781.226354pt;}
.y5e{bottom:782.666354pt;}
.y9f{bottom:784.266353pt;}
.ybf{bottom:784.426353pt;}
.yfa{bottom:784.746353pt;}
.y16c{bottom:785.066353pt;}
.y13{bottom:787.466352pt;}
.y149{bottom:795.466348pt;}
.yd4{bottom:799.626347pt;}
.y5d{bottom:801.066346pt;}
.yf9{bottom:803.146345pt;}
.y16b{bottom:803.466345pt;}
.y12{bottom:805.226345pt;}
.y85{bottom:806.026344pt;}
.y148{bottom:813.866341pt;}
.yd3{bottom:818.026339pt;}
.y5c{bottom:819.466339pt;}
.y11{bottom:820.586338pt;}
.y9e{bottom:821.226338pt;}
.ybe{bottom:821.546338pt;}
.y16a{bottom:821.866338pt;}
.y84{bottom:824.426337pt;}
.y147{bottom:832.266334pt;}
.y10{bottom:835.786332pt;}
.yd2{bottom:836.426332pt;}
.y5b{bottom:837.866332pt;}
.y9d{bottom:839.626331pt;}
.ybd{bottom:839.946331pt;}
.yf8{bottom:840.266331pt;}
.y83{bottom:842.826330pt;}
.y146{bottom:850.666326pt;}
.yf{bottom:851.786326pt;}
.y5a{bottom:856.266324pt;}
.y9c{bottom:858.026323pt;}
.ybc{bottom:858.346323pt;}
.yf7{bottom:858.666323pt;}
.y169{bottom:858.826323pt;}
.y82{bottom:861.226322pt;}
.y145{bottom:869.066319pt;}
.yd1{bottom:873.386317pt;}
.y59{bottom:874.666317pt;}
.ybb{bottom:876.746316pt;}
.yf6{bottom:877.066316pt;}
.y127{bottom:877.226316pt;}
.ye{bottom:879.466315pt;}
.y81{bottom:879.626315pt;}
.y144{bottom:887.466312pt;}
.y58{bottom:893.546309pt;}
.y9b{bottom:895.146309pt;}
.yf5{bottom:895.466308pt;}
.y126{bottom:895.626308pt;}
.y80{bottom:898.026307pt;}
.yd{bottom:903.946305pt;}
.yd0{bottom:910.986302pt;}
.y9a{bottom:913.546301pt;}
.yf4{bottom:913.866301pt;}
.y125{bottom:914.026301pt;}
.y7f{bottom:916.426300pt;}
.y99{bottom:931.946294pt;}
.yba{bottom:932.266294pt;}
.y57{bottom:932.426294pt;}
.y1a{bottom:933.707200pt;}
.y1f{bottom:937.226292pt;}
.y7e{bottom:942.826290pt;}
.ycf{bottom:950.666286pt;}
.y56{bottom:950.826286pt;}
.y1e{bottom:953.546285pt;}
.y98{bottom:969.066279pt;}
.y55{bottom:969.226279pt;}
.y1d{bottom:979.306275pt;}
.y54{bottom:987.626272pt;}
.y21{bottom:1002.027200pt;}
.y1c{bottom:1002.186266pt;}
.y53{bottom:1006.026264pt;}
.y4{bottom:1024.906257pt;}
.y7{bottom:1049.546247pt;}
.y3{bottom:1053.066245pt;}
.y2{bottom:1068.426239pt;}
.y1{bottom:1083.786233pt;}
.h18{height:4.640000pt;}
.h3{height:5.600000pt;}
.h12{height:12.480000pt;}
.hc{height:16.960000pt;}
.he{height:17.600000pt;}
.hf{height:17.920000pt;}
.h6{height:18.080000pt;}
.h13{height:29.961551pt;}
.h5{height:30.778113pt;}
.h15{height:32.554674pt;}
.h4{height:32.624987pt;}
.h17{height:32.812487pt;}
.h19{height:34.453111pt;}
.h14{height:34.968736pt;}
.h16{height:36.883110pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h10{height:39.243734pt;}
.h11{height:40.249984pt;}
.h2{height:42.262483pt;}
.h9{height:43.374983pt;}
.ha{height:44.468732pt;}
.h1a{height:49.013730pt;}
.hb{height:50.748730pt;}
.hd{height:51.187480pt;}
.h8{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w7{width:3.200000pt;}
.w3{width:4.800000pt;}
.wc{width:6.240000pt;}
.wd{width:7.040000pt;}
.w9{width:7.200000pt;}
.w4{width:7.360000pt;}
.w2{width:8.640000pt;}
.w5{width:16.640000pt;}
.w8{width:29.920000pt;}
.w6{width:51.840000pt;}
.wa{width:62.400000pt;}
.wb{width:100.960000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x21{left:57.119977pt;}
.x1f{left:58.879976pt;}
.x17{left:71.040000pt;}
.x23{left:72.159971pt;}
.x4{left:75.039970pt;}
.x18{left:87.680000pt;}
.x1{left:95.999962pt;}
.x5{left:97.279961pt;}
.x22{left:100.319960pt;}
.x20{left:109.279956pt;}
.x8{left:121.279951pt;}
.x19{left:139.520000pt;}
.x1a{left:142.720000pt;}
.x1b{left:172.640000pt;}
.x24{left:183.839935pt;}
.x25{left:184.799926pt;}
.x1c{left:201.920000pt;}
.xf{left:214.080000pt;}
.x1d{left:220.000000pt;}
.x26{left:225.759910pt;}
.x13{left:239.999232pt;}
.x9{left:241.759927pt;}
.xc{left:264.319893pt;}
.x2{left:268.959892pt;}
.x10{left:273.759890pt;}
.x1e{left:282.240000pt;}
.xd{left:296.479855pt;}
.xb{left:302.079879pt;}
.xa{left:327.519869pt;}
.x14{left:329.599868pt;}
.x6{left:334.239866pt;}
.x11{left:335.519814pt;}
.xe{left:396.799841pt;}
.x12{left:488.479805pt;}
.x15{left:514.080000pt;}
.x3{left:586.079766pt;}
.x27{left:587.840074pt;}
.x16{left:652.960000pt;}
.x28{left:687.839725pt;}
.x7{left:708.320000pt;}
}




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