
    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_cfccbc14adf7b742d07d01c1.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_ca5b78a115f2cd7fb2dcb061.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_34844f154a0b5343d5a69e65.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.827148;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_70562f65d14b9187b08cba7f.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_9cbef07725a82c6ecaa6db45.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_894ad840046d7259e4910874.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d5a256551a46bf5a355394fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_64496e4fd09ff21bb5c002d4.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_874e6d3e901d73a806da2c47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694824;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_93a3a88da4164ef7b46dd181.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.791992;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.374170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374170,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.039998px;}
.v2{vertical-align:8.639997px;}
.ls5{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.010620px;}
.ls1{letter-spacing:0.019699px;}
.lsd{letter-spacing:0.021238px;}
.lsa{letter-spacing:1.451459px;}
.ls8{letter-spacing:4.333198px;}
.ls7{letter-spacing:27.532069px;}
.ls6{letter-spacing:34.015846px;}
.ls2{letter-spacing:46.065102px;}
.lsc{letter-spacing:54.222578px;}
.ls4{letter-spacing:57.644351px;}
.ls3{letter-spacing:106.633627px;}
.lsb{letter-spacing:117.621553px;}
.ls0{letter-spacing:1716.795860px;}
.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;}
}
.wsa{word-spacing:-18.021231px;}
.ws4{word-spacing:-17.999993px;}
.ws0{word-spacing:-16.579693px;}
.ws2{word-spacing:-16.559993px;}
.ws9{word-spacing:-16.493753px;}
.ws3{word-spacing:-15.011994px;}
.ws1{word-spacing:-14.939994px;}
.ws6{word-spacing:-12.059995px;}
.ws8{word-spacing:-9.207356px;}
.ws7{word-spacing:-8.279997px;}
.ws5{word-spacing:0.000000px;}
._36{margin-left:-11.210861px;}
._2{margin-left:-5.091824px;}
._1{margin-left:-3.282713px;}
._3{margin-left:-1.640133px;}
._0{width:1.003097px;}
._8{width:2.353396px;}
._7{width:3.832101px;}
._13{width:4.894129px;}
._11{width:5.901598px;}
._12{width:7.319227px;}
._e{width:9.417093px;}
._c{width:11.247272px;}
._4{width:12.292319px;}
._6{width:13.335857px;}
._14{width:15.067412px;}
._b{width:16.212420px;}
._a{width:18.380072px;}
._f{width:20.223112px;}
._d{width:22.800314px;}
._2d{width:24.267842px;}
._3f{width:25.380545px;}
._9{width:26.387019px;}
._15{width:32.839187px;}
._37{width:34.794510px;}
._10{width:54.279947px;}
._2f{width:69.418698px;}
._3d{width:75.803231px;}
._3e{width:88.764659px;}
._5{width:93.126361px;}
._1e{width:96.220538px;}
._3b{width:100.734013px;}
._3a{width:111.490676px;}
._17{width:115.582191px;}
._18{width:117.022868px;}
._22{width:134.248937px;}
._1d{width:139.320432px;}
._29{width:148.602020px;}
._27{width:150.589887px;}
._1a{width:155.910561px;}
._1c{width:157.351326px;}
._2a{width:164.631603px;}
._23{width:165.892971px;}
._1b{width:169.928292px;}
._30{width:171.085294px;}
._35{width:172.804635px;}
._24{width:181.921957px;}
._16{width:186.582327px;}
._19{width:199.810745px;}
._20{width:204.132362px;}
._33{width:233.627425px;}
._21{width:247.314644px;}
._3c{width:276.643946px;}
._26{width:279.151470px;}
._31{width:293.214192px;}
._1f{width:296.442421px;}
._2b{width:346.170943px;}
._39{width:351.533920px;}
._32{width:436.811524px;}
._25{width:454.102476px;}
._2c{width:504.851378px;}
._38{width:511.856867px;}
._28{width:523.105040px;}
._34{width:528.470205px;}
._2e{width:561.258771px;}
.fcd{color:rgb(0,0,127);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc7{color:rgb(51,51,51);}
.fc9{color:rgb(0,176,80);}
.fcc{color:rgb(16,16,16);}
.fc3{color:rgb(192,0,0);}
.fc5{color:rgb(83,129,53);}
.fc1{color:rgb(0,0,0);}
.fc6{color:rgb(44,62,80);}
.fca{color:rgb(0,101,204);}
.fc4{color:rgb(0,32,96);}
.fc8{color:rgb(0,0,255);}
.fcb{color:transparent;}
.fs6{font-size:33.119987px;}
.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;}
.fs4{font-size:95.759962px;}
.y4c{bottom:-12.420803px;}
.y6{bottom:-9.719991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y3e{bottom:2.878977px;}
.y4b{bottom:3.239191px;}
.y108{bottom:3.239318px;}
.y44{bottom:3.958944px;}
.yb{bottom:3.960038px;}
.yc{bottom:32.700287px;}
.ya{bottom:50.700240px;}
.y8{bottom:54.660278px;}
.y9{bottom:56.280277px;}
.y3c{bottom:103.259959px;}
.ya9{bottom:105.239958px;}
.y10c{bottom:112.980255px;}
.y7d{bottom:113.339955px;}
.y136{bottom:115.140254px;}
.y3b{bottom:123.959950px;}
.ya8{bottom:125.939950px;}
.yda{bottom:126.120250px;}
.y10b{bottom:133.680247px;}
.y7c{bottom:134.039946px;}
.y10d{bottom:140.339944px;}
.y3a{bottom:144.659942px;}
.y135{bottom:146.279941px;}
.ya7{bottom:146.639941px;}
.yd9{bottom:146.820241px;}
.y7b{bottom:154.019938px;}
.y7a{bottom:154.739938px;}
.y39{bottom:165.359934px;}
.ya6{bottom:167.339933px;}
.yd8{bottom:167.519933px;}
.y10a{bottom:171.659931px;}
.y79{bottom:175.439930px;}
.y134{bottom:177.239929px;}
.y38{bottom:186.059926px;}
.ya5{bottom:188.039925px;}
.yd7{bottom:188.219925px;}
.y109{bottom:188.939924px;}
.y78{bottom:196.139922px;}
.y107{bottom:202.980600px;}
.y106{bottom:206.219918px;}
.y37{bottom:206.759917px;}
.y133{bottom:208.379917px;}
.ya4{bottom:208.739917px;}
.yd6{bottom:208.919916px;}
.y77{bottom:216.839913px;}
.y36{bottom:227.459909px;}
.ya3{bottom:228.719909px;}
.ya2{bottom:229.439908px;}
.yd5{bottom:229.619908px;}
.y105{bottom:235.379906px;}
.y76{bottom:237.539905px;}
.y132{bottom:239.339904px;}
.y35{bottom:248.159901px;}
.ya1{bottom:250.139900px;}
.yd4{bottom:250.319900px;}
.y75{bottom:258.239897px;}
.y131{bottom:260.039896px;}
.y104{bottom:264.359894px;}
.y34{bottom:268.859892px;}
.ya0{bottom:270.839892px;}
.yd3{bottom:271.019892px;}
.y74{bottom:278.939888px;}
.y33{bottom:289.559884px;}
.y130{bottom:290.999884px;}
.y9f{bottom:291.539883px;}
.yd2{bottom:291.719883px;}
.y103{bottom:293.519883px;}
.y73{bottom:299.639880px;}
.y32{bottom:310.259876px;}
.y12f{bottom:311.699875px;}
.y9e{bottom:312.239875px;}
.yd1{bottom:312.419875px;}
.y72{bottom:320.339872px;}
.y102{bottom:322.679871px;}
.y31{bottom:330.959868px;}
.y12e{bottom:332.579867px;}
.y9d{bottom:332.939867px;}
.yd0{bottom:333.119867px;}
.y71{bottom:341.039864px;}
.y30{bottom:351.659859px;}
.y9c{bottom:353.639859px;}
.ycf{bottom:353.819858px;}
.y70{bottom:361.739855px;}
.y12d{bottom:363.539855px;}
.y2f{bottom:372.359851px;}
.y101{bottom:373.799850px;}
.y9b{bottom:374.339850px;}
.y6f{bottom:382.619847px;}
.yce{bottom:389.999844px;}
.y2e{bottom:393.059843px;}
.y12c{bottom:394.499842px;}
.y9a{bottom:395.039842px;}
.y100{bottom:395.219842px;}
.ycd{bottom:407.459837px;}
.yff{bottom:412.499835px;}
.y6e{bottom:413.579835px;}
.y2d{bottom:413.759834px;}
.y99{bottom:415.739834px;}
.y12b{bottom:420.239832px;}
.ycc{bottom:424.739830px;}
.y6d{bottom:434.279826px;}
.y98{bottom:436.439825px;}
.yfe{bottom:441.479823px;}
.y2c{bottom:444.719822px;}
.ycb{bottom:451.019820px;}
.y12a{bottom:451.199820px;}
.y6c{bottom:454.979818px;}
.y97{bottom:457.139817px;}
.y2b{bottom:465.419814px;}
.yfd{bottom:470.639812px;}
.y129{bottom:471.899811px;}
.y6b{bottom:475.679810px;}
.yca{bottom:476.039810px;}
.yc9{bottom:477.479809px;}
.y96{bottom:478.019809px;}
.y2a{bottom:485.939806px;}
.y128{bottom:492.599803px;}
.y6a{bottom:496.379801px;}
.yfc{bottom:499.799800px;}
.yc8{bottom:504.119798px;}
.y95{bottom:508.979796px;}
.y127{bottom:513.299795px;}
.y69{bottom:517.079793px;}
.y1d{bottom:518.519793px;}
.y4a{bottom:518.700600px;}
.y49{bottom:521.939791px;}
.yfb{bottom:528.779788px;}
.y94{bottom:529.679788px;}
.yc7{bottom:532.559787px;}
.y126{bottom:534.179786px;}
.y68{bottom:537.779785px;}
.y48{bottom:540.839784px;}
.yfa{bottom:557.939777px;}
.yc6{bottom:559.019776px;}
.y93{bottom:560.639776px;}
.y47{bottom:563.159775px;}
.y125{bottom:565.139774px;}
.y67{bottom:568.739773px;}
.yc5{bottom:576.119770px;}
.y92{bottom:581.339767px;}
.y46{bottom:582.059767px;}
.y124{bottom:585.839766px;}
.yf9{bottom:587.099765px;}
.y66{bottom:589.439764px;}
.y45{bottom:598.259761px;}
.yc4{bottom:602.579759px;}
.y65{bottom:610.139756px;}
.y123{bottom:611.039756px;}
.y1c{bottom:615.179754px;}
.yf8{bottom:616.079754px;}
.yc3{bottom:619.859752px;}
.y91{bottom:623.639751px;}
.y122{bottom:628.499749px;}
.y29{bottom:629.759748px;}
.y64{bottom:630.839748px;}
.yf7{bottom:638.219745px;}
.y121{bottom:645.779742px;}
.yc2{bottom:646.139742px;}
.y28{bottom:647.039741px;}
.y90{bottom:649.739740px;}
.y63{bottom:651.539739px;}
.yf6{bottom:659.639736px;}
.y120{bottom:671.879731px;}
.y62{bottom:672.239731px;}
.yc1{bottom:672.419731px;}
.y27{bottom:674.579730px;}
.y8f{bottom:676.019730px;}
.yf5{bottom:680.339728px;}
.y1b{bottom:687.899725px;}
.y26{bottom:691.859723px;}
.y61{bottom:692.939723px;}
.yc0{bottom:696.539721px;}
.y11f{bottom:698.339721px;}
.y8e{bottom:702.299719px;}
.yf4{bottom:705.359718px;}
.y25{bottom:709.139716px;}
.y1a{bottom:712.379715px;}
.y60{bottom:713.639715px;}
.y11e{bottom:715.619714px;}
.yf3{bottom:722.819711px;}
.ybf{bottom:724.979710px;}
.y24{bottom:726.419709px;}
.y19{bottom:728.039709px;}
.y8d{bottom:728.579709px;}
.y5f{bottom:734.339706px;}
.yf2{bottom:739.919704px;}
.y11d{bottom:741.899703px;}
.y18{bottom:743.519703px;}
.y148{bottom:746.579701px;}
.ybe{bottom:751.259699px;}
.y8c{bottom:754.859698px;}
.y5e{bottom:755.039698px;}
.y23{bottom:760.799696px;}
.yf1{bottom:766.379693px;}
.y147{bottom:767.279693px;}
.y17{bottom:767.999693px;}
.y11c{bottom:768.179693px;}
.y5d{bottom:775.739690px;}
.ybd{bottom:777.539689px;}
.y22{bottom:778.079689px;}
.y8b{bottom:780.959688px;}
.y146{bottom:787.979685px;}
.y16{bottom:792.479683px;}
.yf0{bottom:792.659683px;}
.y11b{bottom:794.639682px;}
.y21{bottom:795.359682px;}
.y5c{bottom:796.439681px;}
.ybc{bottom:799.499680px;}
.y8a{bottom:807.419677px;}
.y15{bottom:808.139677px;}
.y145{bottom:808.679677px;}
.yef{bottom:809.939676px;}
.y11a{bottom:811.739675px;}
.y20{bottom:812.639675px;}
.ybb{bottom:821.099672px;}
.y5b{bottom:822.539671px;}
.y144{bottom:829.379668px;}
.y1f{bottom:829.919668px;}
.y14{bottom:832.619667px;}
.y89{bottom:834.419666px;}
.yee{bottom:836.219666px;}
.y119{bottom:838.199665px;}
.y1e{bottom:838.919664px;}
.yba{bottom:841.799663px;}
.y5a{bottom:843.239663px;}
.y143{bottom:850.079660px;}
.y118{bottom:855.479658px;}
.y88{bottom:859.079656px;}
.yed{bottom:862.679655px;}
.y59{bottom:863.939654px;}
.y13{bottom:864.479654px;}
.yb9{bottom:866.819653px;}
.y142{bottom:870.779652px;}
.y117{bottom:872.939651px;}
.y87{bottom:880.679648px;}
.y12{bottom:883.739647px;}
.yb8{bottom:884.099646px;}
.y58{bottom:884.639646px;}
.yec{bottom:888.779644px;}
.y141{bottom:891.479643px;}
.y116{bottom:899.039640px;}
.y57{bottom:905.339638px;}
.yeb{bottom:906.239638px;}
.yb7{bottom:910.379636px;}
.y11{bottom:911.279635px;}
.y140{bottom:912.179635px;}
.y86{bottom:913.439635px;}
.y115{bottom:925.499630px;}
.y56{bottom:926.039630px;}
.yea{bottom:932.519627px;}
.y13f{bottom:932.879627px;}
.y85{bottom:934.139626px;}
.yb6{bottom:936.839625px;}
.y10{bottom:938.999624px;}
.y114{bottom:942.779623px;}
.y55{bottom:946.739621px;}
.y13e{bottom:953.579619px;}
.ye9{bottom:954.479618px;}
.y84{bottom:954.839618px;}
.yb5{bottom:963.479615px;}
.yf{bottom:966.539613px;}
.y54{bottom:967.439613px;}
.y113{bottom:969.059612px;}
.y13d{bottom:974.279610px;}
.y83{bottom:975.359610px;}
.ye8{bottom:975.899610px;}
.y53{bottom:988.139605px;}
.yb4{bottom:991.919603px;}
.y13c{bottom:994.979602px;}
.y112{bottom:995.339602px;}
.ye{bottom:996.059602px;}
.y82{bottom:996.239602px;}
.ye7{bottom:996.599601px;}
.y13b{bottom:1015.679594px;}
.ye6{bottom:1017.299593px;}
.yb3{bottom:1018.199593px;}
.y52{bottom:1019.279592px;}
.y111{bottom:1021.619591px;}
.yd{bottom:1023.599591px;}
.y81{bottom:1033.499587px;}
.y80{bottom:1034.219586px;}
.y13a{bottom:1036.379585px;}
.ye5{bottom:1037.999585px;}
.y110{bottom:1038.899584px;}
.yb2{bottom:1044.479582px;}
.y51{bottom:1050.239580px;}
.y3d{bottom:1053.660600px;}
.y7f{bottom:1054.919578px;}
.y139{bottom:1057.079577px;}
.ye4{bottom:1058.699577px;}
.y42{bottom:1063.919574px;}
.y10f{bottom:1065.359574px;}
.yb1{bottom:1066.619573px;}
.y50{bottom:1070.939572px;}
.y138{bottom:1077.779569px;}
.ye3{bottom:1079.399568px;}
.y7e{bottom:1081.199568px;}
.y41{bottom:1082.819567px;}
.y10e{bottom:1087.319565px;}
.yb0{bottom:1088.039565px;}
.y4f{bottom:1091.639563px;}
.ye2{bottom:1100.099560px;}
.yaf{bottom:1108.739557px;}
.y137{bottom:1108.919556px;}
.y4e{bottom:1112.339555px;}
.y40{bottom:1119.719552px;}
.ye1{bottom:1120.799552px;}
.yad{bottom:1129.259548px;}
.y4d{bottom:1133.039547px;}
.y43{bottom:1134.840600px;}
.y3f{bottom:1138.799544px;}
.ye0{bottom:1141.499543px;}
.y4{bottom:1153.379539px;}
.yae{bottom:1156.079538px;}
.yac{bottom:1160.399536px;}
.yde{bottom:1162.019535px;}
.yab{bottom:1177.679529px;}
.y7{bottom:1180.379528px;}
.y3{bottom:1184.699526px;}
.ydf{bottom:1188.839524px;}
.ydd{bottom:1193.159523px;}
.yaa{bottom:1194.959522px;}
.y2{bottom:1201.979519px;}
.ydc{bottom:1210.439516px;}
.y1{bottom:1219.259512px;}
.ydb{bottom:1227.719509px;}
.h12{height:0.360000px;}
.h3{height:5.040000px;}
.h10{height:16.020000px;}
.h19{height:16.740000px;}
.hf{height:17.640000px;}
.h6{height:18.720000px;}
.h16{height:22.446554px;}
.h17{height:24.112256px;}
.h15{height:32.693893px;}
.h5{height:33.518307px;}
.h11{height:35.991197px;}
.h4{height:36.597642px;}
.hb{height:37.520493px;}
.hc{height:39.313461px;}
.h7{height:39.830258px;}
.hd{height:40.501390px;}
.h1{height:41.522679px;}
.h9{height:43.506897px;}
.ha{height:44.893107px;}
.h2{height:46.025138px;}
.h13{height:48.796855px;}
.h18{height:49.141387px;}
.he{height:50.027324px;}
.h14{height:52.417948px;}
.h8{height:64.899818px;}
.h0{height:1263.000000px;}
.w5{width:3.600000px;}
.w3{width:6.480000px;}
.w4{width:6.840000px;}
.w2{width:7.560000px;}
.w6{width:7.920000px;}
.w7{width:94.140000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x20{left:-4.680267px;}
.x0{left:0.000000px;}
.x4{left:67.859973px;}
.x14{left:70.919972px;}
.x1{left:71.999971px;}
.x12{left:76.139970px;}
.xf{left:86.039966px;}
.xc{left:87.479965px;}
.x10{left:89.999964px;}
.x15{left:91.079964px;}
.x5{left:93.779962px;}
.x11{left:95.940012px;}
.x9{left:98.459961px;}
.x38{left:107.280744px;}
.xa{left:112.139172px;}
.x13{left:132.839947px;}
.xb{left:139.139944px;}
.x1b{left:186.480000px;}
.x8{left:190.979924px;}
.x45{left:197.279921px;}
.xd{left:206.639917px;}
.xe{left:210.059916px;}
.x3f{left:212.219915px;}
.x16{left:216.719923px;}
.x17{left:217.799913px;}
.x40{left:226.079910px;}
.x18{left:240.839904px;}
.x39{left:246.239902px;}
.x43{left:248.759068px;}
.x1c{left:253.619899px;}
.x42{left:255.780954px;}
.x1a{left:259.379884px;}
.x23{left:261.179896px;}
.x21{left:262.619895px;}
.x2{left:266.579893px;}
.x3a{left:268.559893px;}
.x19{left:272.519891px;}
.x3d{left:279.720261px;}
.x24{left:283.319887px;}
.x3e{left:293.039892px;}
.x3b{left:300.059880px;}
.x25{left:316.259873px;}
.x3c{left:320.039872px;}
.x26{left:336.419865px;}
.x1d{left:357.299919px;}
.x6{left:360.899856px;}
.x1e{left:370.079852px;}
.x37{left:382.500159px;}
.x32{left:394.379842px;}
.x2f{left:405.359838px;}
.x36{left:409.860496px;}
.x33{left:416.699833px;}
.x30{left:430.199828px;}
.x27{left:435.959826px;}
.x31{left:445.139822px;}
.x28{left:458.099817px;}
.x34{left:464.579814px;}
.x35{left:484.739806px;}
.x29{left:508.139797px;}
.x22{left:526.860000px;}
.x2a{left:528.119789px;}
.x2b{left:610.199756px;}
.x2c{left:636.839745px;}
.x2d{left:651.419739px;}
.x1f{left:672.300000px;}
.x2e{left:679.499728px;}
.x3{left:702.539719px;}
.x44{left:709.740000px;}
.x41{left:780.119688px;}
.x7{left:818.820000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.479998pt;}
.v2{vertical-align:7.679997pt;}
.ls5{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.009440pt;}
.ls1{letter-spacing:0.017510pt;}
.lsd{letter-spacing:0.018878pt;}
.lsa{letter-spacing:1.290186pt;}
.ls8{letter-spacing:3.851732pt;}
.ls7{letter-spacing:24.472950pt;}
.ls6{letter-spacing:30.236308pt;}
.ls2{letter-spacing:40.946757pt;}
.lsc{letter-spacing:48.197847pt;}
.ls4{letter-spacing:51.239423pt;}
.ls3{letter-spacing:94.785446pt;}
.lsb{letter-spacing:104.552492pt;}
.ls0{letter-spacing:1526.040765pt;}
.wsa{word-spacing:-16.018872pt;}
.ws4{word-spacing:-15.999994pt;}
.ws0{word-spacing:-14.737505pt;}
.ws2{word-spacing:-14.719994pt;}
.ws9{word-spacing:-14.661114pt;}
.ws3{word-spacing:-13.343995pt;}
.ws1{word-spacing:-13.279995pt;}
.ws6{word-spacing:-10.719996pt;}
.ws8{word-spacing:-8.184317pt;}
.ws7{word-spacing:-7.359997pt;}
.ws5{word-spacing:0.000000pt;}
._36{margin-left:-9.965210pt;}
._2{margin-left:-4.526065pt;}
._1{margin-left:-2.917967pt;}
._3{margin-left:-1.457896pt;}
._0{width:0.891642pt;}
._8{width:2.091907pt;}
._7{width:3.406312pt;}
._13{width:4.350337pt;}
._11{width:5.245865pt;}
._12{width:6.505980pt;}
._e{width:8.370749pt;}
._c{width:9.997575pt;}
._4{width:10.926506pt;}
._6{width:11.854095pt;}
._14{width:13.393255pt;}
._b{width:14.411040pt;}
._a{width:16.337842pt;}
._f{width:17.976099pt;}
._d{width:20.266946pt;}
._2d{width:21.571416pt;}
._3f{width:22.560485pt;}
._9{width:23.455128pt;}
._15{width:29.190388pt;}
._37{width:30.928453pt;}
._10{width:48.248842pt;}
._2f{width:61.705509pt;}
._3d{width:67.380650pt;}
._3e{width:78.901919pt;}
._5{width:82.778988pt;}
._1e{width:85.529367pt;}
._3b{width:89.541345pt;}
._3a{width:99.102824pt;}
._17{width:102.739726pt;}
._18{width:104.020327pt;}
._22{width:119.332388pt;}
._1d{width:123.840384pt;}
._29{width:132.090684pt;}
._27{width:133.857677pt;}
._1a{width:138.587165pt;}
._1c{width:139.867845pt;}
._2a{width:146.339203pt;}
._23{width:147.460419pt;}
._1b{width:151.047371pt;}
._30{width:152.075817pt;}
._35{width:153.604120pt;}
._24{width:161.708406pt;}
._16{width:165.850958pt;}
._19{width:177.609551pt;}
._20{width:181.450989pt;}
._33{width:207.668823pt;}
._21{width:219.835239pt;}
._3c{width:245.905729pt;}
._26{width:248.134640pt;}
._31{width:260.634837pt;}
._1f{width:263.504374pt;}
._2b{width:307.707505pt;}
._39{width:312.474595pt;}
._32{width:388.276911pt;}
._25{width:403.646645pt;}
._2c{width:448.756781pt;}
._38{width:454.983882pt;}
._28{width:464.982258pt;}
._34{width:469.751293pt;}
._2e{width:498.896685pt;}
.fs6{font-size:29.439988pt;}
.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;}
.fs4{font-size:85.119966pt;}
.y4c{bottom:-11.040713pt;}
.y6{bottom:-8.639992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y3e{bottom:2.559091pt;}
.y4b{bottom:2.879281pt;}
.y108{bottom:2.879393pt;}
.y44{bottom:3.519062pt;}
.yb{bottom:3.520034pt;}
.yc{bottom:29.066922pt;}
.ya{bottom:45.066880pt;}
.y8{bottom:48.586914pt;}
.y9{bottom:50.026913pt;}
.y3c{bottom:91.786630pt;}
.ya9{bottom:93.546629pt;}
.y10c{bottom:100.426893pt;}
.y7d{bottom:100.746626pt;}
.y136{bottom:102.346892pt;}
.y3b{bottom:110.186623pt;}
.ya8{bottom:111.946622pt;}
.yda{bottom:112.106888pt;}
.y10b{bottom:118.826886pt;}
.y7c{bottom:119.146619pt;}
.y10d{bottom:124.746617pt;}
.y3a{bottom:128.586615pt;}
.y135{bottom:130.026615pt;}
.ya7{bottom:130.346615pt;}
.yd9{bottom:130.506881pt;}
.y7b{bottom:136.906612pt;}
.y7a{bottom:137.546612pt;}
.y39{bottom:146.986608pt;}
.ya6{bottom:148.746607pt;}
.yd8{bottom:148.906607pt;}
.y10a{bottom:152.586606pt;}
.y79{bottom:155.946604pt;}
.y134{bottom:157.546604pt;}
.y38{bottom:165.386601pt;}
.ya5{bottom:167.146600pt;}
.yd7{bottom:167.306600pt;}
.y109{bottom:167.946599pt;}
.y78{bottom:174.346597pt;}
.y107{bottom:180.427200pt;}
.y106{bottom:183.306593pt;}
.y37{bottom:183.786593pt;}
.y133{bottom:185.226593pt;}
.ya4{bottom:185.546592pt;}
.yd6{bottom:185.706592pt;}
.y77{bottom:192.746590pt;}
.y36{bottom:202.186586pt;}
.ya3{bottom:203.306585pt;}
.ya2{bottom:203.946585pt;}
.yd5{bottom:204.106585pt;}
.y105{bottom:209.226583pt;}
.y76{bottom:211.146582pt;}
.y132{bottom:212.746582pt;}
.y35{bottom:220.586578pt;}
.ya1{bottom:222.346578pt;}
.yd4{bottom:222.506578pt;}
.y75{bottom:229.546575pt;}
.y131{bottom:231.146574pt;}
.y104{bottom:234.986573pt;}
.y34{bottom:238.986571pt;}
.ya0{bottom:240.746570pt;}
.yd3{bottom:240.906570pt;}
.y74{bottom:247.946567pt;}
.y33{bottom:257.386564pt;}
.y130{bottom:258.666563pt;}
.y9f{bottom:259.146563pt;}
.yd2{bottom:259.306563pt;}
.y103{bottom:260.906562pt;}
.y73{bottom:266.346560pt;}
.y32{bottom:275.786556pt;}
.y12f{bottom:277.066556pt;}
.y9e{bottom:277.546556pt;}
.yd1{bottom:277.706556pt;}
.y72{bottom:284.746553pt;}
.y102{bottom:286.826552pt;}
.y31{bottom:294.186549pt;}
.y12e{bottom:295.626548pt;}
.y9d{bottom:295.946548pt;}
.yd0{bottom:296.106548pt;}
.y71{bottom:303.146545pt;}
.y30{bottom:312.586542pt;}
.y9c{bottom:314.346541pt;}
.ycf{bottom:314.506541pt;}
.y70{bottom:321.546538pt;}
.y12d{bottom:323.146537pt;}
.y2f{bottom:330.986534pt;}
.y101{bottom:332.266534pt;}
.y9b{bottom:332.746534pt;}
.y6f{bottom:340.106531pt;}
.yce{bottom:346.666528pt;}
.y2e{bottom:349.386527pt;}
.y12c{bottom:350.666526pt;}
.y9a{bottom:351.146526pt;}
.y100{bottom:351.306526pt;}
.ycd{bottom:362.186522pt;}
.yff{bottom:366.666520pt;}
.y6e{bottom:367.626520pt;}
.y2d{bottom:367.786520pt;}
.y99{bottom:369.546519pt;}
.y12b{bottom:373.546517pt;}
.ycc{bottom:377.546516pt;}
.y6d{bottom:386.026512pt;}
.y98{bottom:387.946511pt;}
.yfe{bottom:392.426510pt;}
.y2c{bottom:395.306509pt;}
.ycb{bottom:400.906506pt;}
.y12a{bottom:401.066506pt;}
.y6c{bottom:404.426505pt;}
.y97{bottom:406.346504pt;}
.y2b{bottom:413.706501pt;}
.yfd{bottom:418.346499pt;}
.y129{bottom:419.466499pt;}
.y6b{bottom:422.826498pt;}
.yca{bottom:423.146497pt;}
.yc9{bottom:424.426497pt;}
.y96{bottom:424.906497pt;}
.y2a{bottom:431.946494pt;}
.y128{bottom:437.866492pt;}
.y6a{bottom:441.226490pt;}
.yfc{bottom:444.266489pt;}
.yc8{bottom:448.106487pt;}
.y95{bottom:452.426486pt;}
.y127{bottom:456.266484pt;}
.y69{bottom:459.626483pt;}
.y1d{bottom:460.906482pt;}
.y4a{bottom:461.067200pt;}
.y49{bottom:463.946481pt;}
.yfb{bottom:470.026479pt;}
.y94{bottom:470.826478pt;}
.yc7{bottom:473.386477pt;}
.y126{bottom:474.826477pt;}
.y68{bottom:478.026475pt;}
.y48{bottom:480.746474pt;}
.yfa{bottom:495.946468pt;}
.yc6{bottom:496.906468pt;}
.y93{bottom:498.346467pt;}
.y47{bottom:500.586466pt;}
.y125{bottom:502.346466pt;}
.y67{bottom:505.546464pt;}
.yc5{bottom:512.106462pt;}
.y92{bottom:516.746460pt;}
.y46{bottom:517.386460pt;}
.y124{bottom:520.746458pt;}
.yf9{bottom:521.866458pt;}
.y66{bottom:523.946457pt;}
.y45{bottom:531.786454pt;}
.yc4{bottom:535.626452pt;}
.y65{bottom:542.346450pt;}
.y123{bottom:543.146449pt;}
.y1c{bottom:546.826448pt;}
.yf8{bottom:547.626448pt;}
.yc3{bottom:550.986446pt;}
.y91{bottom:554.346445pt;}
.y122{bottom:558.666443pt;}
.y29{bottom:559.786443pt;}
.y64{bottom:560.746442pt;}
.yf7{bottom:567.306440pt;}
.y121{bottom:574.026437pt;}
.yc2{bottom:574.346437pt;}
.y28{bottom:575.146437pt;}
.y90{bottom:577.546436pt;}
.y63{bottom:579.146435pt;}
.yf6{bottom:586.346432pt;}
.y120{bottom:597.226428pt;}
.y62{bottom:597.546428pt;}
.yc1{bottom:597.706428pt;}
.y27{bottom:599.626427pt;}
.y8f{bottom:600.906426pt;}
.yf5{bottom:604.746425pt;}
.y1b{bottom:611.466422pt;}
.y26{bottom:614.986421pt;}
.y61{bottom:615.946420pt;}
.yc0{bottom:619.146419pt;}
.y11f{bottom:620.746418pt;}
.y8e{bottom:624.266417pt;}
.yf4{bottom:626.986416pt;}
.y25{bottom:630.346415pt;}
.y1a{bottom:633.226413pt;}
.y60{bottom:634.346413pt;}
.y11e{bottom:636.106412pt;}
.yf3{bottom:642.506410pt;}
.ybf{bottom:644.426409pt;}
.y24{bottom:645.706408pt;}
.y19{bottom:647.146408pt;}
.y8d{bottom:647.626408pt;}
.y5f{bottom:652.746406pt;}
.yf2{bottom:657.706404pt;}
.y11d{bottom:659.466403pt;}
.y18{bottom:660.906402pt;}
.y148{bottom:663.626401pt;}
.ybe{bottom:667.786400pt;}
.y8c{bottom:670.986398pt;}
.y5e{bottom:671.146398pt;}
.y23{bottom:676.266396pt;}
.yf1{bottom:681.226394pt;}
.y147{bottom:682.026394pt;}
.y17{bottom:682.666394pt;}
.y11c{bottom:682.826394pt;}
.y5d{bottom:689.546391pt;}
.ybd{bottom:691.146390pt;}
.y22{bottom:691.626390pt;}
.y8b{bottom:694.186389pt;}
.y146{bottom:700.426386pt;}
.y16{bottom:704.426385pt;}
.yf0{bottom:704.586385pt;}
.y11b{bottom:706.346384pt;}
.y21{bottom:706.986384pt;}
.y5c{bottom:707.946383pt;}
.ybc{bottom:710.666382pt;}
.y8a{bottom:717.706380pt;}
.y15{bottom:718.346379pt;}
.y145{bottom:718.826379pt;}
.yef{bottom:719.946379pt;}
.y11a{bottom:721.546378pt;}
.y20{bottom:722.346378pt;}
.ybb{bottom:729.866375pt;}
.y5b{bottom:731.146374pt;}
.y144{bottom:737.226372pt;}
.y1f{bottom:737.706372pt;}
.y14{bottom:740.106371pt;}
.y89{bottom:741.706370pt;}
.yee{bottom:743.306369pt;}
.y119{bottom:745.066369pt;}
.y1e{bottom:745.706368pt;}
.yba{bottom:748.266367pt;}
.y5a{bottom:749.546367pt;}
.y143{bottom:755.626364pt;}
.y118{bottom:760.426362pt;}
.y88{bottom:763.626361pt;}
.yed{bottom:766.826360pt;}
.y59{bottom:767.946359pt;}
.y13{bottom:768.426359pt;}
.yb9{bottom:770.506358pt;}
.y142{bottom:774.026357pt;}
.y117{bottom:775.946356pt;}
.y87{bottom:782.826354pt;}
.y12{bottom:785.546352pt;}
.yb8{bottom:785.866352pt;}
.y58{bottom:786.346352pt;}
.yec{bottom:790.026351pt;}
.y141{bottom:792.426350pt;}
.y116{bottom:799.146347pt;}
.y57{bottom:804.746345pt;}
.yeb{bottom:805.546344pt;}
.yb7{bottom:809.226343pt;}
.y11{bottom:810.026343pt;}
.y140{bottom:810.826342pt;}
.y86{bottom:811.946342pt;}
.y115{bottom:822.666338pt;}
.y56{bottom:823.146337pt;}
.yea{bottom:828.906335pt;}
.y13f{bottom:829.226335pt;}
.y85{bottom:830.346335pt;}
.yb6{bottom:832.746334pt;}
.y10{bottom:834.666333pt;}
.y114{bottom:838.026331pt;}
.y55{bottom:841.546330pt;}
.y13e{bottom:847.626328pt;}
.ye9{bottom:848.426327pt;}
.y84{bottom:848.746327pt;}
.yb5{bottom:856.426324pt;}
.yf{bottom:859.146323pt;}
.y54{bottom:859.946323pt;}
.y113{bottom:861.386322pt;}
.y13d{bottom:866.026320pt;}
.y83{bottom:866.986320pt;}
.ye8{bottom:867.466320pt;}
.y53{bottom:878.346315pt;}
.yb4{bottom:881.706314pt;}
.y13c{bottom:884.426313pt;}
.y112{bottom:884.746313pt;}
.ye{bottom:885.386313pt;}
.y82{bottom:885.546312pt;}
.ye7{bottom:885.866312pt;}
.y13b{bottom:902.826306pt;}
.ye6{bottom:904.266305pt;}
.yb3{bottom:905.066305pt;}
.y52{bottom:906.026304pt;}
.y111{bottom:908.106303pt;}
.yd{bottom:909.866303pt;}
.y81{bottom:918.666299pt;}
.y80{bottom:919.306299pt;}
.y13a{bottom:921.226298pt;}
.ye5{bottom:922.666298pt;}
.y110{bottom:923.466297pt;}
.yb2{bottom:928.426295pt;}
.y51{bottom:933.546293pt;}
.y3d{bottom:936.587200pt;}
.y7f{bottom:937.706292pt;}
.y139{bottom:939.626291pt;}
.ye4{bottom:941.066290pt;}
.y42{bottom:945.706288pt;}
.y10f{bottom:946.986288pt;}
.yb1{bottom:948.106287pt;}
.y50{bottom:951.946286pt;}
.y138{bottom:958.026283pt;}
.ye3{bottom:959.466283pt;}
.y7e{bottom:961.066282pt;}
.y41{bottom:962.506282pt;}
.y10e{bottom:966.506280pt;}
.yb0{bottom:967.146280pt;}
.y4f{bottom:970.346279pt;}
.ye2{bottom:977.866276pt;}
.yaf{bottom:985.546272pt;}
.y137{bottom:985.706272pt;}
.y4e{bottom:988.746271pt;}
.y40{bottom:995.306269pt;}
.ye1{bottom:996.266268pt;}
.yad{bottom:1003.786265pt;}
.y4d{bottom:1007.146264pt;}
.y43{bottom:1008.747200pt;}
.y3f{bottom:1012.266262pt;}
.ye0{bottom:1014.666261pt;}
.y4{bottom:1025.226257pt;}
.yae{bottom:1027.626256pt;}
.yac{bottom:1031.466254pt;}
.yde{bottom:1032.906254pt;}
.yab{bottom:1046.826248pt;}
.y7{bottom:1049.226247pt;}
.y3{bottom:1053.066245pt;}
.ydf{bottom:1056.746244pt;}
.ydd{bottom:1060.586242pt;}
.yaa{bottom:1062.186242pt;}
.y2{bottom:1068.426239pt;}
.ydc{bottom:1075.946236pt;}
.y1{bottom:1083.786233pt;}
.ydb{bottom:1091.306230pt;}
.h12{height:0.320000pt;}
.h3{height:4.480000pt;}
.h10{height:14.240000pt;}
.h19{height:14.880000pt;}
.hf{height:15.680000pt;}
.h6{height:16.640000pt;}
.h16{height:19.952492pt;}
.h17{height:21.433116pt;}
.h15{height:29.061238pt;}
.h5{height:29.794051pt;}
.h11{height:31.992175pt;}
.h4{height:32.531237pt;}
.hb{height:33.351549pt;}
.hc{height:34.945299pt;}
.h7{height:35.404673pt;}
.hd{height:36.001236pt;}
.h1{height:36.909048pt;}
.h9{height:38.672797pt;}
.ha{height:39.904984pt;}
.h2{height:40.911234pt;}
.h13{height:43.374983pt;}
.h18{height:43.681233pt;}
.he{height:44.468732pt;}
.h14{height:46.593731pt;}
.h8{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w5{width:3.200000pt;}
.w3{width:5.760000pt;}
.w4{width:6.080000pt;}
.w2{width:6.720000pt;}
.w6{width:7.040000pt;}
.w7{width:83.680000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x20{left:-4.160237pt;}
.x0{left:0.000000pt;}
.x4{left:60.319976pt;}
.x14{left:63.039975pt;}
.x1{left:63.999974pt;}
.x12{left:67.679973pt;}
.xf{left:76.479969pt;}
.xc{left:77.759969pt;}
.x10{left:79.999968pt;}
.x15{left:80.959968pt;}
.x5{left:83.359967pt;}
.x11{left:85.280010pt;}
.x9{left:87.519965pt;}
.x38{left:95.360662pt;}
.xa{left:99.679264pt;}
.x13{left:118.079953pt;}
.xb{left:123.679951pt;}
.x1b{left:165.760000pt;}
.x8{left:169.759932pt;}
.x45{left:175.359930pt;}
.xd{left:183.679927pt;}
.xe{left:186.719925pt;}
.x3f{left:188.639925pt;}
.x16{left:192.639932pt;}
.x17{left:193.599923pt;}
.x40{left:200.959920pt;}
.x18{left:214.079914pt;}
.x39{left:218.879912pt;}
.x43{left:221.119172pt;}
.x1c{left:225.439910pt;}
.x42{left:227.360848pt;}
.x1a{left:230.559897pt;}
.x23{left:232.159907pt;}
.x21{left:233.439907pt;}
.x2{left:236.959905pt;}
.x3a{left:238.719905pt;}
.x19{left:242.239903pt;}
.x3d{left:248.640232pt;}
.x24{left:251.839899pt;}
.x3e{left:260.479904pt;}
.x3b{left:266.719893pt;}
.x25{left:281.119888pt;}
.x3c{left:284.479886pt;}
.x26{left:299.039880pt;}
.x1d{left:317.599928pt;}
.x6{left:320.799872pt;}
.x1e{left:328.959868pt;}
.x37{left:340.000141pt;}
.x32{left:350.559860pt;}
.x2f{left:360.319856pt;}
.x36{left:364.320441pt;}
.x33{left:370.399852pt;}
.x30{left:382.399847pt;}
.x27{left:387.519845pt;}
.x31{left:395.679842pt;}
.x28{left:407.199837pt;}
.x34{left:412.959835pt;}
.x35{left:430.879828pt;}
.x29{left:451.679819pt;}
.x22{left:468.320000pt;}
.x2a{left:469.439812pt;}
.x2b{left:542.399783pt;}
.x2c{left:566.079774pt;}
.x2d{left:579.039768pt;}
.x1f{left:597.600000pt;}
.x2e{left:603.999758pt;}
.x3{left:624.479750pt;}
.x44{left:630.880000pt;}
.x41{left:693.439723pt;}
.x7{left:727.840000pt;}
}




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