
    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_b84b87ca3fe441f239ebe1e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9742dc064682576b2d4e6fdc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_dace2bd7e794e7e42473ee11.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e8e19d81154ae74c2688be7d.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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_c5fb5e44778acaf522d7864b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_335e9496e0ab9f97688964de.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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;}
.m3{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);}
.m0{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,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);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-5.759998px;}
.v2{vertical-align:-1.439999px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.439999px;}
.v4{vertical-align:69.119972px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.010620px;}
.lsa{letter-spacing:0.021238px;}
.lsb{letter-spacing:0.021282px;}
.ls3{letter-spacing:0.155880px;}
.ls9{letter-spacing:0.189257px;}
.ls8{letter-spacing:0.731040px;}
.ls0{letter-spacing:18.030000px;}
.ls2{letter-spacing:21.768651px;}
.ls7{letter-spacing:1084.970319px;}
.ls6{letter-spacing:1171.421290px;}
.ls5{letter-spacing:2716.729240px;}
.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;}
}
.ws1{word-spacing:-55.943978px;}
.ws2{word-spacing:-17.999993px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-7.956584px;}
._2{margin-left:-2.174539px;}
._1{margin-left:-1.149480px;}
._0{width:1.151352px;}
._f{width:2.159028px;}
._e{width:15.955647px;}
._9{width:142.427112px;}
._a{width:167.287262px;}
._8{width:187.498509px;}
._14{width:198.127361px;}
._d{width:209.092963px;}
._5{width:250.293869px;}
._7{width:254.791779px;}
._11{width:347.847945px;}
._10{width:470.238867px;}
._3{width:536.918627px;}
._b{width:621.930790px;}
._6{width:644.455111px;}
._12{width:1363.231375px;}
._c{width:1506.030415px;}
._4{width:1518.809083px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.000000px;}
.fs4{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:57.900277px;}
.y31{bottom:78.600269px;}
.y1{bottom:78.600300px;}
.y9e{bottom:114.419954px;}
.y15d{bottom:114.599954px;}
.y7d{bottom:114.780254px;}
.y5e{bottom:115.139954px;}
.y7a{bottom:115.140254px;}
.y1a2{bottom:116.760253px;}
.yb7{bottom:122.159951px;}
.y153{bottom:123.239951px;}
.y158{bottom:125.040250px;}
.y129{bottom:134.040246px;}
.y9d{bottom:138.179945px;}
.y1a4{bottom:138.540245px;}
.y5d{bottom:138.899944px;}
.y79{bottom:138.900244px;}
.y1a1{bottom:140.520244px;}
.yb6{bottom:146.099942px;}
.y152{bottom:146.999941px;}
.yf8{bottom:148.800240px;}
.yd2{bottom:151.319939px;}
.y128{bottom:153.839938px;}
.y16f{bottom:161.219936px;}
.y1a0{bottom:161.759935px;}
.y9c{bottom:162.119935px;}
.y1a3{bottom:162.300235px;}
.y5c{bottom:162.659935px;}
.y78{bottom:162.660235px;}
.yf7{bottom:168.599933px;}
.yb5{bottom:169.859932px;}
.y151{bottom:170.759932px;}
.y127{bottom:173.819930px;}
.yd1{bottom:175.259930px;}
.y29{bottom:176.160000px;}
.y19f{bottom:179.039928px;}
.y16e{bottom:179.219928px;}
.y9b{bottom:185.879926px;}
.y5b{bottom:186.419925px;}
.y77{bottom:186.420225px;}
.yf6{bottom:188.399925px;}
.yb4{bottom:193.619923px;}
.y150{bottom:194.699922px;}
.y19e{bottom:196.319921px;}
.y16d{bottom:196.499921px;}
.yd0{bottom:199.019920px;}
.yf5{bottom:208.199917px;}
.y9a{bottom:209.639916px;}
.y15c{bottom:210.179916px;}
.y5a{bottom:210.359916px;}
.y76{bottom:210.360216px;}
.y126{bottom:213.419915px;}
.y19d{bottom:213.599915px;}
.y16c{bottom:213.779914px;}
.yb3{bottom:217.379913px;}
.y14f{bottom:218.459913px;}
.ycf{bottom:223.139911px;}
.y28{bottom:223.679700px;}
.yf4{bottom:227.999909px;}
.y19c{bottom:230.879908px;}
.y16b{bottom:231.059908px;}
.y99{bottom:233.399907px;}
.y59{bottom:234.119906px;}
.y75{bottom:234.120206px;}
.yb2{bottom:241.319903px;}
.y14e{bottom:242.219903px;}
.y27{bottom:245.459700px;}
.yce{bottom:246.899901px;}
.y125{bottom:247.259901px;}
.y19b{bottom:248.159901px;}
.y16a{bottom:248.339901px;}
.yf3{bottom:250.859900px;}
.y98{bottom:257.339897px;}
.y58{bottom:257.879897px;}
.y74{bottom:257.880197px;}
.yb1{bottom:265.079894px;}
.y19a{bottom:265.259894px;}
.y169{bottom:265.439894px;}
.y14d{bottom:265.619894px;}
.y124{bottom:267.059893px;}
.y26{bottom:267.239700px;}
.yf2{bottom:270.659892px;}
.ycd{bottom:270.839892px;}
.y97{bottom:281.099888px;}
.yb9{bottom:281.280187px;}
.y57{bottom:281.639887px;}
.y73{bottom:281.640187px;}
.y199{bottom:282.539887px;}
.y168{bottom:282.719887px;}
.y123{bottom:286.859885px;}
.yb0{bottom:288.839884px;}
.y25{bottom:289.019700px;}
.y14c{bottom:289.919884px;}
.yf1{bottom:290.639884px;}
.ycc{bottom:294.599882px;}
.y198{bottom:299.819880px;}
.y167{bottom:299.999880px;}
.y96{bottom:304.859878px;}
.yb8{bottom:305.220178px;}
.y15b{bottom:305.399878px;}
.y56{bottom:305.579878px;}
.y72{bottom:305.580178px;}
.y122{bottom:309.719876px;}
.y24{bottom:310.979700px;}
.yaf{bottom:312.599875px;}
.yf0{bottom:313.319875px;}
.y14b{bottom:313.679875px;}
.y197{bottom:317.099873px;}
.y166{bottom:317.279873px;}
.ycb{bottom:318.359873px;}
.y95{bottom:328.619869px;}
.y55{bottom:329.339868px;}
.y71{bottom:329.340168px;}
.y121{bottom:329.519868px;}
.y23{bottom:332.759700px;}
.yef{bottom:333.299867px;}
.y196{bottom:334.379866px;}
.y165{bottom:334.559866px;}
.yae{bottom:336.539865px;}
.y14a{bottom:337.439865px;}
.yca{bottom:342.119863px;}
.y15a{bottom:348.779860px;}
.y120{bottom:349.499860px;}
.y164{bottom:351.839859px;}
.y94{bottom:352.559859px;}
.y54{bottom:353.099859px;}
.y70{bottom:353.100159px;}
.y22{bottom:354.539700px;}
.yad{bottom:360.299856px;}
.y149{bottom:361.199856px;}
.y195{bottom:361.919855px;}
.yc9{bottom:366.059854px;}
.y163{bottom:368.939852px;}
.y11f{bottom:369.299852px;}
.yee{bottom:372.899851px;}
.y21{bottom:376.319700px;}
.y93{bottom:376.319849px;}
.y1a5{bottom:376.500149px;}
.y53{bottom:376.859849px;}
.y6f{bottom:376.860149px;}
.y194{bottom:379.919848px;}
.yac{bottom:384.059846px;}
.y148{bottom:385.139846px;}
.y11e{bottom:389.099844px;}
.yc8{bottom:389.819844px;}
.yed{bottom:395.759842px;}
.y193{bottom:397.199841px;}
.y20{bottom:398.279700px;}
.y92{bottom:400.079840px;}
.y162{bottom:400.439840px;}
.y52{bottom:400.799840px;}
.y6e{bottom:400.800140px;}
.yab{bottom:407.819837px;}
.y147{bottom:408.899836px;}
.yc7{bottom:413.579835px;}
.y11d{bottom:414.299834px;}
.y192{bottom:414.479834px;}
.yec{bottom:415.559834px;}
.y1f{bottom:420.059700px;}
.y161{bottom:421.499831px;}
.y91{bottom:423.839830px;}
.y51{bottom:424.559830px;}
.y6d{bottom:424.560130px;}
.yaa{bottom:431.759827px;}
.y146{bottom:432.659827px;}
.yeb{bottom:435.359826px;}
.yc6{bottom:437.339825px;}
.y11c{bottom:438.779824px;}
.y160{bottom:439.499824px;}
.y1e{bottom:441.839700px;}
.y90{bottom:447.599821px;}
.y50{bottom:447.959821px;}
.y6c{bottom:448.320121px;}
.y191{bottom:449.039820px;}
.yea{bottom:455.339818px;}
.ya9{bottom:455.519818px;}
.y145{bottom:456.419817px;}
.y15f{bottom:456.599817px;}
.yc5{bottom:460.919816px;}
.y11b{bottom:462.539815px;}
.y1d{bottom:463.619700px;}
.y190{bottom:470.819812px;}
.y8f{bottom:471.539811px;}
.y4f{bottom:471.719811px;}
.y6b{bottom:472.080111px;}
.y15e{bottom:473.879810px;}
.ye9{bottom:475.139810px;}
.ya8{bottom:479.279808px;}
.y144{bottom:480.359808px;}
.yc4{bottom:485.039806px;}
.y1c{bottom:485.399700px;}
.y11a{bottom:486.479805px;}
.y18f{bottom:488.819804px;}
.y8e{bottom:495.299802px;}
.y4e{bottom:496.019802px;}
.y6a{bottom:496.020102px;}
.ye8{bottom:497.999801px;}
.ya7{bottom:502.679799px;}
.y143{bottom:504.119798px;}
.y18e{bottom:506.099798px;}
.y1b{bottom:507.359700px;}
.yc3{bottom:508.799796px;}
.y119{bottom:510.239796px;}
.ye7{bottom:517.799793px;}
.y8d{bottom:518.699793px;}
.y4d{bottom:519.779792px;}
.y69{bottom:519.780092px;}
.y18d{bottom:523.379791px;}
.ya6{bottom:526.979789px;}
.y142{bottom:527.519789px;}
.y1a{bottom:529.139700px;}
.yc2{bottom:532.559787px;}
.y118{bottom:533.999786px;}
.ye6{bottom:540.299784px;}
.y18c{bottom:540.659784px;}
.y8c{bottom:542.459783px;}
.y4c{bottom:543.539783px;}
.y68{bottom:543.540083px;}
.ya5{bottom:550.739780px;}
.y19{bottom:550.919700px;}
.y141{bottom:551.279779px;}
.yc1{bottom:556.319777px;}
.y117{bottom:557.759777px;}
.y18b{bottom:557.939777px;}
.ye5{bottom:563.519775px;}
.y8b{bottom:566.399773px;}
.y4b{bottom:567.299773px;}
.y67{bottom:567.300073px;}
.y18{bottom:572.699700px;}
.ya4{bottom:574.499770px;}
.y18a{bottom:575.219770px;}
.y140{bottom:575.579770px;}
.yc0{bottom:580.259768px;}
.y116{bottom:581.699767px;}
.ye4{bottom:587.279765px;}
.y8a{bottom:590.519764px;}
.y4a{bottom:591.239764px;}
.y66{bottom:591.240064px;}
.y17{bottom:594.659700px;}
.ya3{bottom:598.259761px;}
.y13f{bottom:599.339760px;}
.y189{bottom:600.599760px;}
.ybf{bottom:604.019758px;}
.y115{bottom:605.459758px;}
.ye3{bottom:611.039756px;}
.y89{bottom:614.279754px;}
.y49{bottom:614.999754px;}
.y65{bottom:615.000054px;}
.y16{bottom:616.439700px;}
.y188{bottom:618.599753px;}
.ya2{bottom:622.019751px;}
.y13e{bottom:623.099751px;}
.ybe{bottom:627.779749px;}
.y114{bottom:628.679749px;}
.ye2{bottom:634.979746px;}
.y187{bottom:635.879746px;}
.y88{bottom:638.039745px;}
.y15{bottom:638.219700px;}
.y48{bottom:638.759744px;}
.y64{bottom:638.760044px;}
.ya1{bottom:645.959742px;}
.y13d{bottom:646.859741px;}
.y113{bottom:650.459740px;}
.ybd{bottom:651.539739px;}
.y186{bottom:652.979739px;}
.ye1{bottom:658.739737px;}
.y14{bottom:659.999700px;}
.y87{bottom:661.979735px;}
.y47{bottom:662.519735px;}
.y63{bottom:662.520035px;}
.ya0{bottom:669.719732px;}
.y185{bottom:670.259732px;}
.y13c{bottom:670.799732px;}
.y112{bottom:673.499731px;}
.ybc{bottom:675.479730px;}
.y13{bottom:681.779700px;}
.ye0{bottom:682.499727px;}
.y86{bottom:685.739726px;}
.y46{bottom:686.279725px;}
.y62{bottom:686.280025px;}
.y184{bottom:687.539725px;}
.y9f{bottom:689.160024px;}
.y111{bottom:693.299723px;}
.y13b{bottom:694.559722px;}
.ybb{bottom:699.239720px;}
.y12{bottom:703.739700px;}
.y183{bottom:704.819718px;}
.ydf{bottom:706.259717px;}
.y85{bottom:709.499716px;}
.y45{bottom:709.860016px;}
.y61{bottom:710.220016px;}
.y110{bottom:713.279715px;}
.y13a{bottom:718.319713px;}
.yba{bottom:718.679713px;}
.y182{bottom:722.099711px;}
.y11{bottom:725.519700px;}
.yde{bottom:730.199708px;}
.y10f{bottom:733.079707px;}
.y84{bottom:733.259707px;}
.y44{bottom:733.980006px;}
.y181{bottom:739.379704px;}
.y139{bottom:742.079703px;}
.y10{bottom:747.299700px;}
.ydd{bottom:753.959698px;}
.y10e{bottom:755.939698px;}
.y83{bottom:757.199697px;}
.y43{bottom:757.739997px;}
.y138{bottom:765.839694px;}
.yf{bottom:769.079700px;}
.y180{bottom:771.059692px;}
.y10d{bottom:775.739690px;}
.ydc{bottom:777.719689px;}
.y82{bottom:780.959688px;}
.y42{bottom:781.499987px;}
.y137{bottom:789.779684px;}
.ye{bottom:790.859700px;}
.y10c{bottom:795.539682px;}
.y17f{bottom:800.939680px;}
.ydb{bottom:802.199679px;}
.y81{bottom:804.719678px;}
.y41{bottom:805.439978px;}
.yd{bottom:812.819700px;}
.y136{bottom:813.539675px;}
.y10a{bottom:819.299672px;}
.y10b{bottom:819.659672px;}
.yda{bottom:821.999671px;}
.y80{bottom:828.479669px;}
.y40{bottom:829.199968px;}
.yc{bottom:834.599700px;}
.y17e{bottom:835.859666px;}
.y135{bottom:836.939665px;}
.yd9{bottom:844.859662px;}
.y109{bottom:845.219662px;}
.y7f{bottom:852.419659px;}
.y157{bottom:852.599959px;}
.y3f{bottom:852.959959px;}
.y17d{bottom:853.139659px;}
.yb{bottom:856.379700px;}
.y134{bottom:860.699656px;}
.yd8{bottom:864.659654px;}
.y108{bottom:868.979652px;}
.y17c{bottom:870.419652px;}
.y7e{bottom:871.859651px;}
.y156{bottom:876.359949px;}
.y3e{bottom:876.719949px;}
.ya{bottom:878.159700px;}
.y133{bottom:884.639646px;}
.yd7{bottom:887.519645px;}
.y107{bottom:892.919643px;}
.y155{bottom:900.299940px;}
.y3d{bottom:900.659940px;}
.yd6{bottom:907.319637px;}
.y132{bottom:908.399637px;}
.y106{bottom:916.679633px;}
.y17b{bottom:918.119633px;}
.y154{bottom:924.059930px;}
.y9{bottom:924.419550px;}
.y3c{bottom:924.419930px;}
.yd5{bottom:930.179628px;}
.y131{bottom:932.519627px;}
.y105{bottom:940.439624px;}
.y17a{bottom:940.799624px;}
.y159{bottom:947.819921px;}
.y8{bottom:948.179550px;}
.y3b{bottom:948.179921px;}
.yd4{bottom:949.979620px;}
.y130{bottom:956.279617px;}
.y179{bottom:958.079617px;}
.y104{bottom:964.199614px;}
.y7c{bottom:971.579911px;}
.y7{bottom:971.939550px;}
.y3a{bottom:971.939911px;}
.yd3{bottom:972.479611px;}
.y178{bottom:975.359610px;}
.y12f{bottom:980.219608px;}
.y103{bottom:987.779605px;}
.y177{bottom:992.639603px;}
.y7b{bottom:995.519902px;}
.y6{bottom:995.879550px;}
.y39{bottom:995.879902px;}
.y12e{bottom:1003.979598px;}
.y102{bottom:1011.539595px;}
.y38{bottom:1019.639892px;}
.y5{bottom:1019.640300px;}
.y176{bottom:1024.859590px;}
.y12d{bottom:1027.739589px;}
.y101{bottom:1035.119586px;}
.y37{bottom:1043.399883px;}
.y4{bottom:1043.400300px;}
.y12c{bottom:1051.139580px;}
.y175{bottom:1054.559578px;}
.y100{bottom:1056.899577px;}
.y36{bottom:1067.159873px;}
.y174{bottom:1071.839571px;}
.y12b{bottom:1074.899570px;}
.yff{bottom:1079.939568px;}
.y173{bottom:1089.119564px;}
.yfb{bottom:1090.019564px;}
.y3{bottom:1090.740300px;}
.y35{bottom:1091.099864px;}
.y12a{bottom:1096.679561px;}
.yfe{bottom:1099.919560px;}
.y172{bottom:1106.219558px;}
.yfa{bottom:1109.819556px;}
.y34{bottom:1114.499854px;}
.y2{bottom:1114.500300px;}
.y60{bottom:1114.859854px;}
.yfd{bottom:1119.719552px;}
.y171{bottom:1123.499551px;}
.yf9{bottom:1129.619548px;}
.y33{bottom:1138.259845px;}
.y5f{bottom:1138.619845px;}
.yfc{bottom:1139.519544px;}
.y170{bottom:1140.779544px;}
.y30{bottom:1153.645500px;}
.y2f{bottom:1168.036500px;}
.y2e{bottom:1182.427500px;}
.y2d{bottom:1196.818500px;}
.y2c{bottom:1211.209500px;}
.y2b{bottom:1225.600500px;}
.y2a{bottom:1239.991500px;}
.h4{height:33.351562px;}
.hd{height:58.621969px;}
.h9{height:58.651148px;}
.h8{height:60.226851px;}
.ha{height:65.010911px;}
.h3{height:65.010937px;}
.hb{height:66.757473px;}
.h5{height:70.664034px;}
.h1{height:70.664062px;}
.h6{height:72.562471px;}
.h2{height:72.562500px;}
.h7{height:75.093720px;}
.hc{height:129.346823px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x3{left:86.881500px;}
.x2{left:108.007197px;}
.x7{left:117.360744px;}
.x4{left:129.239950px;}
.x1e{left:140.039014px;}
.x5{left:161.999947px;}
.x13{left:184.859926px;}
.x14{left:202.859960px;}
.xc{left:245.879902px;}
.xd{left:267.119893px;}
.x18{left:329.219868px;}
.xf{left:331.739867px;}
.x1a{left:342.719863px;}
.x11{left:353.339859px;}
.x1b{left:370.619852px;}
.x1c{left:383.579847px;}
.x1d{left:404.639838px;}
.x17{left:415.439834px;}
.x8{left:459.000401px;}
.x19{left:479.699444px;}
.x15{left:515.339555px;}
.x16{left:553.319605px;}
.x10{left:628.919748px;}
.xb{left:702.899719px;}
.xe{left:724.679710px;}
.x12{left:725.939710px;}
.x9{left:761.939695px;}
.xa{left:768.599693px;}
.x1{left:777.599700px;}
.x6{left:781.739687px;}
@media print{
.v3{vertical-align:-5.119998pt;}
.v2{vertical-align:-1.279999pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.279999pt;}
.v4{vertical-align:61.439975pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.009440pt;}
.lsa{letter-spacing:0.018878pt;}
.lsb{letter-spacing:0.018917pt;}
.ls3{letter-spacing:0.138560pt;}
.ls9{letter-spacing:0.168228pt;}
.ls8{letter-spacing:0.649813pt;}
.ls0{letter-spacing:16.026667pt;}
.ls2{letter-spacing:19.349912pt;}
.ls7{letter-spacing:964.418061pt;}
.ls6{letter-spacing:1041.263369pt;}
.ls5{letter-spacing:2414.870435pt;}
.ws1{word-spacing:-49.727980pt;}
.ws2{word-spacing:-15.999994pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-7.072519pt;}
._2{margin-left:-1.932923pt;}
._1{margin-left:-1.021760pt;}
._0{width:1.023424pt;}
._f{width:1.919136pt;}
._e{width:14.182797pt;}
._9{width:126.601877pt;}
._a{width:148.699788pt;}
._8{width:166.665341pt;}
._14{width:176.113210pt;}
._d{width:185.860411pt;}
._5{width:222.483439pt;}
._7{width:226.481582pt;}
._11{width:309.198173pt;}
._10{width:417.990104pt;}
._3{width:477.261001pt;}
._b{width:552.827369pt;}
._6{width:572.848988pt;}
._12{width:1211.761222pt;}
._c{width:1338.693703pt;}
._4{width:1350.052518pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:51.466913pt;}
.y31{bottom:69.866905pt;}
.y1{bottom:69.866933pt;}
.y9e{bottom:101.706626pt;}
.y15d{bottom:101.866626pt;}
.y7d{bottom:102.026893pt;}
.y5e{bottom:102.346626pt;}
.y7a{bottom:102.346892pt;}
.y1a2{bottom:103.786892pt;}
.yb7{bottom:108.586623pt;}
.y153{bottom:109.546623pt;}
.y158{bottom:111.146889pt;}
.y129{bottom:119.146886pt;}
.y9d{bottom:122.826618pt;}
.y1a4{bottom:123.146884pt;}
.y5d{bottom:123.466617pt;}
.y79{bottom:123.466884pt;}
.y1a1{bottom:124.906883pt;}
.yb6{bottom:129.866615pt;}
.y152{bottom:130.666614pt;}
.yf8{bottom:132.266880pt;}
.yd2{bottom:134.506613pt;}
.y128{bottom:136.746612pt;}
.y16f{bottom:143.306609pt;}
.y1a0{bottom:143.786609pt;}
.y9c{bottom:144.106609pt;}
.y1a3{bottom:144.266876pt;}
.y5c{bottom:144.586609pt;}
.y78{bottom:144.586875pt;}
.yf7{bottom:149.866607pt;}
.yb5{bottom:150.986606pt;}
.y151{bottom:151.786606pt;}
.y127{bottom:154.506605pt;}
.yd1{bottom:155.786604pt;}
.y29{bottom:156.586667pt;}
.y19f{bottom:159.146603pt;}
.y16e{bottom:159.306603pt;}
.y9b{bottom:165.226601pt;}
.y5b{bottom:165.706600pt;}
.y77{bottom:165.706867pt;}
.yf6{bottom:167.466600pt;}
.yb4{bottom:172.106598pt;}
.y150{bottom:173.066597pt;}
.y19e{bottom:174.506597pt;}
.y16d{bottom:174.666597pt;}
.yd0{bottom:176.906596pt;}
.yf5{bottom:185.066593pt;}
.y9a{bottom:186.346592pt;}
.y15c{bottom:186.826592pt;}
.y5a{bottom:186.986592pt;}
.y76{bottom:186.986859pt;}
.y126{bottom:189.706591pt;}
.y19d{bottom:189.866591pt;}
.y16c{bottom:190.026591pt;}
.yb3{bottom:193.226589pt;}
.y14f{bottom:194.186589pt;}
.ycf{bottom:198.346587pt;}
.y28{bottom:198.826400pt;}
.yf4{bottom:202.666586pt;}
.y19c{bottom:205.226585pt;}
.y16b{bottom:205.386585pt;}
.y99{bottom:207.466584pt;}
.y59{bottom:208.106583pt;}
.y75{bottom:208.106850pt;}
.yb2{bottom:214.506581pt;}
.y14e{bottom:215.306581pt;}
.y27{bottom:218.186400pt;}
.yce{bottom:219.466579pt;}
.y125{bottom:219.786579pt;}
.y19b{bottom:220.586578pt;}
.y16a{bottom:220.746578pt;}
.yf3{bottom:222.986577pt;}
.y98{bottom:228.746575pt;}
.y58{bottom:229.226575pt;}
.y74{bottom:229.226842pt;}
.yb1{bottom:235.626572pt;}
.y19a{bottom:235.786572pt;}
.y169{bottom:235.946572pt;}
.y14d{bottom:236.106572pt;}
.y124{bottom:237.386572pt;}
.y26{bottom:237.546400pt;}
.yf2{bottom:240.586570pt;}
.ycd{bottom:240.746570pt;}
.y97{bottom:249.866567pt;}
.yb9{bottom:250.026833pt;}
.y57{bottom:250.346567pt;}
.y73{bottom:250.346833pt;}
.y199{bottom:251.146566pt;}
.y168{bottom:251.306566pt;}
.y123{bottom:254.986565pt;}
.yb0{bottom:256.746564pt;}
.y25{bottom:256.906400pt;}
.y14c{bottom:257.706564pt;}
.yf1{bottom:258.346563pt;}
.ycc{bottom:261.866562pt;}
.y198{bottom:266.506560pt;}
.y167{bottom:266.666560pt;}
.y96{bottom:270.986558pt;}
.yb8{bottom:271.306825pt;}
.y15b{bottom:271.466558pt;}
.y56{bottom:271.626558pt;}
.y72{bottom:271.626825pt;}
.y122{bottom:275.306557pt;}
.y24{bottom:276.426400pt;}
.yaf{bottom:277.866556pt;}
.yf0{bottom:278.506555pt;}
.y14b{bottom:278.826555pt;}
.y197{bottom:281.866554pt;}
.y166{bottom:282.026554pt;}
.ycb{bottom:282.986553pt;}
.y95{bottom:292.106550pt;}
.y55{bottom:292.746550pt;}
.y71{bottom:292.746816pt;}
.y121{bottom:292.906550pt;}
.y23{bottom:295.786400pt;}
.yef{bottom:296.266548pt;}
.y196{bottom:297.226548pt;}
.y165{bottom:297.386548pt;}
.yae{bottom:299.146547pt;}
.y14a{bottom:299.946547pt;}
.yca{bottom:304.106545pt;}
.y15a{bottom:310.026543pt;}
.y120{bottom:310.666542pt;}
.y164{bottom:312.746542pt;}
.y94{bottom:313.386541pt;}
.y54{bottom:313.866541pt;}
.y70{bottom:313.866808pt;}
.y22{bottom:315.146400pt;}
.yad{bottom:320.266539pt;}
.y149{bottom:321.066538pt;}
.y195{bottom:321.706538pt;}
.yc9{bottom:325.386537pt;}
.y163{bottom:327.946535pt;}
.y11f{bottom:328.266535pt;}
.yee{bottom:331.466534pt;}
.y21{bottom:334.506400pt;}
.y93{bottom:334.506533pt;}
.y1a5{bottom:334.666799pt;}
.y53{bottom:334.986533pt;}
.y6f{bottom:334.986799pt;}
.y194{bottom:337.706532pt;}
.yac{bottom:341.386530pt;}
.y148{bottom:342.346530pt;}
.y11e{bottom:345.866528pt;}
.yc8{bottom:346.506528pt;}
.yed{bottom:351.786526pt;}
.y193{bottom:353.066525pt;}
.y20{bottom:354.026400pt;}
.y92{bottom:355.626524pt;}
.y162{bottom:355.946524pt;}
.y52{bottom:356.266524pt;}
.y6e{bottom:356.266791pt;}
.yab{bottom:362.506522pt;}
.y147{bottom:363.466521pt;}
.yc7{bottom:367.626520pt;}
.y11d{bottom:368.266519pt;}
.y192{bottom:368.426519pt;}
.yec{bottom:369.386519pt;}
.y1f{bottom:373.386400pt;}
.y161{bottom:374.666517pt;}
.y91{bottom:376.746516pt;}
.y51{bottom:377.386516pt;}
.y6d{bottom:377.386782pt;}
.yaa{bottom:383.786513pt;}
.y146{bottom:384.586513pt;}
.yeb{bottom:386.986512pt;}
.yc6{bottom:388.746511pt;}
.y11c{bottom:390.026511pt;}
.y160{bottom:390.666510pt;}
.y1e{bottom:392.746400pt;}
.y90{bottom:397.866508pt;}
.y50{bottom:398.186507pt;}
.y6c{bottom:398.506774pt;}
.y191{bottom:399.146507pt;}
.yea{bottom:404.746505pt;}
.ya9{bottom:404.906505pt;}
.y145{bottom:405.706504pt;}
.y15f{bottom:405.866504pt;}
.yc5{bottom:409.706503pt;}
.y11b{bottom:411.146502pt;}
.y1d{bottom:412.106400pt;}
.y190{bottom:418.506499pt;}
.y8f{bottom:419.146499pt;}
.y4f{bottom:419.306499pt;}
.y6b{bottom:419.626765pt;}
.y15e{bottom:421.226498pt;}
.ye9{bottom:422.346498pt;}
.ya8{bottom:426.026496pt;}
.y144{bottom:426.986496pt;}
.yc4{bottom:431.146494pt;}
.y1c{bottom:431.466400pt;}
.y11a{bottom:432.426494pt;}
.y18f{bottom:434.506493pt;}
.y8e{bottom:440.266491pt;}
.y4e{bottom:440.906490pt;}
.y6a{bottom:440.906757pt;}
.ye8{bottom:442.666490pt;}
.ya7{bottom:446.826488pt;}
.y143{bottom:448.106487pt;}
.y18e{bottom:449.866487pt;}
.y1b{bottom:450.986400pt;}
.yc3{bottom:452.266486pt;}
.y119{bottom:453.546485pt;}
.ye7{bottom:460.266483pt;}
.y8d{bottom:461.066482pt;}
.y4d{bottom:462.026482pt;}
.y69{bottom:462.026749pt;}
.y18d{bottom:465.226481pt;}
.ya6{bottom:468.426479pt;}
.y142{bottom:468.906479pt;}
.y1a{bottom:470.346400pt;}
.yc2{bottom:473.386477pt;}
.y118{bottom:474.666477pt;}
.ye6{bottom:480.266475pt;}
.y18c{bottom:480.586474pt;}
.y8c{bottom:482.186474pt;}
.y4c{bottom:483.146473pt;}
.y68{bottom:483.146740pt;}
.ya5{bottom:489.546471pt;}
.y19{bottom:489.706400pt;}
.y141{bottom:490.026471pt;}
.yc1{bottom:494.506469pt;}
.y117{bottom:495.786468pt;}
.y18b{bottom:495.946468pt;}
.ye5{bottom:500.906466pt;}
.y8b{bottom:503.466465pt;}
.y4b{bottom:504.266465pt;}
.y67{bottom:504.266732pt;}
.y18{bottom:509.066400pt;}
.ya4{bottom:510.666462pt;}
.y18a{bottom:511.306462pt;}
.y140{bottom:511.626462pt;}
.yc0{bottom:515.786460pt;}
.y116{bottom:517.066460pt;}
.ye4{bottom:522.026458pt;}
.y8a{bottom:524.906457pt;}
.y4a{bottom:525.546456pt;}
.y66{bottom:525.546723pt;}
.y17{bottom:528.586400pt;}
.ya3{bottom:531.786454pt;}
.y13f{bottom:532.746454pt;}
.y189{bottom:533.866453pt;}
.ybf{bottom:536.906452pt;}
.y115{bottom:538.186451pt;}
.ye3{bottom:543.146449pt;}
.y89{bottom:546.026448pt;}
.y49{bottom:546.666448pt;}
.y65{bottom:546.666715pt;}
.y16{bottom:547.946400pt;}
.y188{bottom:549.866447pt;}
.ya2{bottom:552.906446pt;}
.y13e{bottom:553.866445pt;}
.ybe{bottom:558.026443pt;}
.y114{bottom:558.826443pt;}
.ye2{bottom:564.426441pt;}
.y187{bottom:565.226441pt;}
.y88{bottom:567.146440pt;}
.y15{bottom:567.306400pt;}
.y48{bottom:567.786440pt;}
.y64{bottom:567.786706pt;}
.ya1{bottom:574.186437pt;}
.y13d{bottom:574.986437pt;}
.y113{bottom:578.186435pt;}
.ybd{bottom:579.146435pt;}
.y186{bottom:580.426434pt;}
.ye1{bottom:585.546432pt;}
.y14{bottom:586.666400pt;}
.y87{bottom:588.426431pt;}
.y47{bottom:588.906431pt;}
.y63{bottom:588.906698pt;}
.ya0{bottom:595.306429pt;}
.y185{bottom:595.786428pt;}
.y13c{bottom:596.266428pt;}
.y112{bottom:598.666427pt;}
.ybc{bottom:600.426426pt;}
.y13{bottom:606.026400pt;}
.ye0{bottom:606.666424pt;}
.y86{bottom:609.546423pt;}
.y46{bottom:610.026423pt;}
.y62{bottom:610.026689pt;}
.y184{bottom:611.146422pt;}
.y9f{bottom:612.586688pt;}
.y111{bottom:616.266420pt;}
.y13b{bottom:617.386420pt;}
.ybb{bottom:621.546418pt;}
.y12{bottom:625.546400pt;}
.y183{bottom:626.506416pt;}
.ydf{bottom:627.786416pt;}
.y85{bottom:630.666414pt;}
.y45{bottom:630.986681pt;}
.y61{bottom:631.306681pt;}
.y110{bottom:634.026413pt;}
.y13a{bottom:638.506411pt;}
.yba{bottom:638.826411pt;}
.y182{bottom:641.866410pt;}
.y11{bottom:644.906400pt;}
.yde{bottom:649.066407pt;}
.y10f{bottom:651.626406pt;}
.y84{bottom:651.786406pt;}
.y44{bottom:652.426672pt;}
.y181{bottom:657.226404pt;}
.y139{bottom:659.626403pt;}
.y10{bottom:664.266400pt;}
.ydd{bottom:670.186399pt;}
.y10e{bottom:671.946398pt;}
.y83{bottom:673.066397pt;}
.y43{bottom:673.546664pt;}
.y138{bottom:680.746394pt;}
.yf{bottom:683.626400pt;}
.y180{bottom:685.386393pt;}
.y10d{bottom:689.546391pt;}
.ydc{bottom:691.306390pt;}
.y82{bottom:694.186389pt;}
.y42{bottom:694.666655pt;}
.y137{bottom:702.026386pt;}
.ye{bottom:702.986400pt;}
.y10c{bottom:707.146384pt;}
.y17f{bottom:711.946382pt;}
.ydb{bottom:713.066381pt;}
.y81{bottom:715.306381pt;}
.y41{bottom:715.946647pt;}
.yd{bottom:722.506400pt;}
.y136{bottom:723.146377pt;}
.y10a{bottom:728.266375pt;}
.y10b{bottom:728.586375pt;}
.yda{bottom:730.666374pt;}
.y80{bottom:736.426372pt;}
.y40{bottom:737.066639pt;}
.yc{bottom:741.866400pt;}
.y17e{bottom:742.986369pt;}
.y135{bottom:743.946369pt;}
.yd9{bottom:750.986366pt;}
.y109{bottom:751.306366pt;}
.y7f{bottom:757.706364pt;}
.y157{bottom:757.866630pt;}
.y3f{bottom:758.186630pt;}
.y17d{bottom:758.346363pt;}
.yb{bottom:761.226400pt;}
.y134{bottom:765.066361pt;}
.yd8{bottom:768.586359pt;}
.y108{bottom:772.426358pt;}
.y17c{bottom:773.706357pt;}
.y7e{bottom:774.986357pt;}
.y156{bottom:778.986622pt;}
.y3e{bottom:779.306622pt;}
.ya{bottom:780.586400pt;}
.y133{bottom:786.346352pt;}
.yd7{bottom:788.906351pt;}
.y107{bottom:793.706349pt;}
.y155{bottom:800.266613pt;}
.y3d{bottom:800.586613pt;}
.yd6{bottom:806.506344pt;}
.y132{bottom:807.466344pt;}
.y106{bottom:814.826341pt;}
.y17b{bottom:816.106340pt;}
.y154{bottom:821.386605pt;}
.y9{bottom:821.706267pt;}
.y3c{bottom:821.706605pt;}
.yd5{bottom:826.826336pt;}
.y131{bottom:828.906335pt;}
.y105{bottom:835.946332pt;}
.y17a{bottom:836.266332pt;}
.y159{bottom:842.506596pt;}
.y8{bottom:842.826267pt;}
.y3b{bottom:842.826596pt;}
.yd4{bottom:844.426329pt;}
.y130{bottom:850.026327pt;}
.y179{bottom:851.626326pt;}
.y104{bottom:857.066324pt;}
.y7c{bottom:863.626588pt;}
.y7{bottom:863.946267pt;}
.y3a{bottom:863.946588pt;}
.yd3{bottom:864.426321pt;}
.y178{bottom:866.986320pt;}
.y12f{bottom:871.306318pt;}
.y103{bottom:878.026315pt;}
.y177{bottom:882.346314pt;}
.y7b{bottom:884.906579pt;}
.y6{bottom:885.226267pt;}
.y39{bottom:885.226579pt;}
.y12e{bottom:892.426310pt;}
.y102{bottom:899.146307pt;}
.y38{bottom:906.346571pt;}
.y5{bottom:906.346933pt;}
.y176{bottom:910.986302pt;}
.y12d{bottom:913.546301pt;}
.y101{bottom:920.106299pt;}
.y37{bottom:927.466562pt;}
.y4{bottom:927.466933pt;}
.y12c{bottom:934.346293pt;}
.y175{bottom:937.386292pt;}
.y100{bottom:939.466291pt;}
.y36{bottom:948.586554pt;}
.y174{bottom:952.746286pt;}
.y12b{bottom:955.466284pt;}
.yff{bottom:959.946283pt;}
.y173{bottom:968.106279pt;}
.yfb{bottom:968.906279pt;}
.y3{bottom:969.546933pt;}
.y35{bottom:969.866545pt;}
.y12a{bottom:974.826277pt;}
.yfe{bottom:977.706276pt;}
.y172{bottom:983.306273pt;}
.yfa{bottom:986.506272pt;}
.y34{bottom:990.666537pt;}
.y2{bottom:990.666933pt;}
.y60{bottom:990.986537pt;}
.yfd{bottom:995.306269pt;}
.y171{bottom:998.666267pt;}
.yf9{bottom:1004.106265pt;}
.y33{bottom:1011.786529pt;}
.y5f{bottom:1012.106528pt;}
.yfc{bottom:1012.906262pt;}
.y170{bottom:1014.026261pt;}
.y30{bottom:1025.462667pt;}
.y2f{bottom:1038.254667pt;}
.y2e{bottom:1051.046667pt;}
.y2d{bottom:1063.838667pt;}
.y2c{bottom:1076.630667pt;}
.y2b{bottom:1089.422667pt;}
.y2a{bottom:1102.214667pt;}
.h4{height:29.645833pt;}
.hd{height:52.108417pt;}
.h9{height:52.134354pt;}
.h8{height:53.534979pt;}
.ha{height:57.787477pt;}
.h3{height:57.787500pt;}
.hb{height:59.339976pt;}
.h5{height:62.812475pt;}
.h1{height:62.812500pt;}
.h6{height:64.499974pt;}
.h2{height:64.500000pt;}
.h7{height:66.749973pt;}
.hc{height:114.974954pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x3{left:77.228000pt;}
.x2{left:96.006397pt;}
.x7{left:104.320661pt;}
.x4{left:114.879956pt;}
.x1e{left:124.479123pt;}
.x5{left:143.999953pt;}
.x13{left:164.319934pt;}
.x14{left:180.319964pt;}
.xc{left:218.559913pt;}
.xd{left:237.439905pt;}
.x18{left:292.639883pt;}
.xf{left:294.879882pt;}
.x1a{left:304.639878pt;}
.x11{left:314.079874pt;}
.x1b{left:329.439868pt;}
.x1c{left:340.959864pt;}
.x1d{left:359.679856pt;}
.x17{left:369.279852pt;}
.x8{left:408.000356pt;}
.x19{left:426.399506pt;}
.x15{left:458.079604pt;}
.x16{left:491.839649pt;}
.x10{left:559.039776pt;}
.xb{left:624.799750pt;}
.xe{left:644.159742pt;}
.x12{left:645.279742pt;}
.x9{left:677.279729pt;}
.xa{left:683.199727pt;}
.x1{left:691.199733pt;}
.x6{left:694.879722pt;}
}




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