
    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_ca54e23476e62c924a315d88.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_58ddd82d118477a9ea9fc673.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969238;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_c890c9ac3af595a612e0e9b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;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_d68aa81463a1a27dd351ee87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.678223;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_8f37818852032471e83ee7ae.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4d5d2e8ff4031d49122a1998.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_26c6044af66344a724df60b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0a70bb60e433ba9653602409.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.727539;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_7bac263ca3b1234553382caa.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9999a1b6537a246d42d2e5cf.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.390636px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.017982px;}
.ls2{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.480015px;}
.ls10{letter-spacing:0.872130px;}
.lsf{letter-spacing:0.923432px;}
.ls1{letter-spacing:1.458000px;}
.ls5{letter-spacing:1.476000px;}
.ls4{letter-spacing:1.728000px;}
.ls11{letter-spacing:1.728053px;}
.lsb{letter-spacing:1.782000px;}
.lsd{letter-spacing:9.072000px;}
.lsc{letter-spacing:9.126000px;}
.ls6{letter-spacing:320.196838px;}
.ls7{letter-spacing:369.671114px;}
.ls8{letter-spacing:369.713112px;}
.ls9{letter-spacing:392.182329px;}
.lsa{letter-spacing:470.523836px;}
.ls3{letter-spacing:881.819000px;}
.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;}
}
.ws11{word-spacing:-48.001464px;}
.ws1{word-spacing:-21.129671px;}
.ws2{word-spacing:-18.854533px;}
.ws7{word-spacing:-16.254000px;}
.ws6{word-spacing:-14.958000px;}
.ws10{word-spacing:-14.448441px;}
.wsf{word-spacing:-14.210587px;}
.wse{word-spacing:-13.344407px;}
.ws8{word-spacing:-13.296406px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:326.808000px;}
.wsa{word-spacing:391.384357px;}
.ws4{word-spacing:408.204000px;}
.wsb{word-spacing:413.879025px;}
.ws9{word-spacing:436.390240px;}
.wsc{word-spacing:458.890242px;}
.wsd{word-spacing:841.497770px;}
._35{margin-left:-9.322151px;}
._54{margin-left:-8.110547px;}
._1e{margin-left:-6.949626px;}
._16{margin-left:-5.466703px;}
._4{margin-left:-3.666547px;}
._3{margin-left:-2.295044px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._c{width:4.173135px;}
._a{width:5.971084px;}
._5{width:7.239195px;}
._6{width:8.352255px;}
._8{width:9.424922px;}
._e{width:10.506090px;}
._d{width:11.571214px;}
._14{width:13.549834px;}
._b{width:16.344651px;}
._7{width:17.425326px;}
._9{width:18.831207px;}
._17{width:20.464590px;}
._19{width:22.311079px;}
._1d{width:23.976039px;}
._1c{width:25.368328px;}
._13{width:30.075048px;}
._4b{width:37.964048px;}
._15{width:39.859036px;}
._4d{width:41.575923px;}
._47{width:55.783675px;}
._3f{width:60.238148px;}
._46{width:64.605996px;}
._4a{width:82.959356px;}
._40{width:87.411201px;}
._1b{width:89.990827px;}
._4f{width:91.218192px;}
._48{width:97.139986px;}
._37{width:104.966589px;}
._3c{width:110.507768px;}
._49{width:113.855403px;}
._1a{width:115.830040px;}
._44{width:141.127328px;}
._3b{width:155.839064px;}
._4e{width:164.001655px;}
._4c{width:167.628405px;}
._3d{width:187.199722px;}
._41{width:190.028500px;}
._42{width:208.870967px;}
._39{width:212.539715px;}
._53{width:218.860976px;}
._50{width:231.478427px;}
._43{width:239.445901px;}
._18{width:245.860976px;}
._45{width:248.532461px;}
._3a{width:250.323522px;}
._3e{width:252.984305px;}
._51{width:266.912944px;}
._52{width:271.631655px;}
._38{width:298.987578px;}
._21{width:333.774613px;}
._22{width:339.291297px;}
._36{width:350.084921px;}
._1f{width:362.642483px;}
._25{width:380.239869px;}
._11{width:390.766140px;}
._27{width:402.108735px;}
._f{width:404.273052px;}
._30{width:423.767194px;}
._28{width:425.467437px;}
._12{width:429.984000px;}
._2f{width:448.023835px;}
._23{width:462.148102px;}
._2c{width:470.523836px;}
._20{width:483.204244px;}
._33{width:499.433680px;}
._32{width:512.972085px;}
._2e{width:519.150861px;}
._24{width:522.688622px;}
._2a{width:540.481126px;}
._29{width:548.895708px;}
._26{width:550.686770px;}
._2b{width:580.925716px;}
._31{width:584.846455px;}
._10{width:588.749616px;}
._2d{width:595.625203px;}
._34{width:630.273996px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:55.678710px;}
.fs6{font-size:62.639646px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.y1af{bottom:4.529157px;}
.y1ae{bottom:22.482273px;}
.y1ad{bottom:40.441262px;}
.y23{bottom:46.734370px;}
.y1ac{bottom:58.394389px;}
.y22{bottom:59.015622px;}
.y21{bottom:71.302734px;}
.y1ab{bottom:76.347516px;}
.y158{bottom:86.080500px;}
.yd9{bottom:86.431641px;}
.yf9{bottom:93.878885px;}
.y1aa{bottom:94.300634px;}
.ya9{bottom:99.802730px;}
.y6d{bottom:99.804000px;}
.y13c{bottom:101.519545px;}
.y6c{bottom:102.527327px;}
.y81{bottom:104.572199px;}
.y157{bottom:104.578098px;}
.yc2{bottom:107.537087px;}
.y182{bottom:108.568357px;}
.y1a9{bottom:112.259623px;}
.yf8{bottom:112.781234px;}
.yd8{bottom:117.246093px;}
.ya8{bottom:118.705079px;}
.y13b{bottom:120.421889px;}
.y6b{bottom:121.423817px;}
.y119{bottom:121.769539px;}
.y80{bottom:123.468689px;}
.y156{bottom:123.474588px;}
.y181{bottom:126.521484px;}
.y24{bottom:126.856500px;}
.y1a8{bottom:130.212750px;}
.y46{bottom:131.619125px;}
.yc1{bottom:134.314430px;}
.y6a{bottom:140.326166px;}
.y155{bottom:142.376937px;}
.y180{bottom:144.474595px;}
.y183{bottom:144.943500px;}
.yf7{bottom:145.177724px;}
.y13a{bottom:147.193373px;}
.y1a7{bottom:148.165871px;}
.y118{bottom:148.546882px;}
.ya7{bottom:149.513672px;}
.y45{bottom:150.521474px;}
.y7f{bottom:155.871038px;}
.yc0{bottom:159.140604px;}
.y154{bottom:161.273427px;}
.y17f{bottom:162.433584px;}
.yf6{bottom:164.080073px;}
.y1e{bottom:165.837843px;}
.y1a6{bottom:166.124859px;}
.y44{bottom:169.417964px;}
.y69{bottom:172.886708px;}
.y139{bottom:173.970715px;}
.y7e{bottom:174.767528px;}
.y117{bottom:175.318365px;}
.y153{bottom:180.175776px;}
.y17e{bottom:180.386711px;}
.ybf{bottom:183.966779px;}
.y1a5{bottom:184.077975px;}
.ydc{bottom:184.699217px;}
.y1d{bottom:184.740192px;}
.y68{bottom:191.783198px;}
.y7d{bottom:193.669876px;}
.y116{bottom:194.220710px;}
.yf5{bottom:196.476558px;}
.y17d{bottom:198.339838px;}
.y152{bottom:199.078125px;}
.y138{bottom:200.748058px;}
.ydb{bottom:201.498049px;}
.y43{bottom:201.820308px;}
.y1a4{bottom:202.031102px;}
.y1c{bottom:203.642541px;}
.ya6{bottom:205.125000px;}
.ybe{bottom:208.787095px;}
.y67{bottom:210.685547px;}
.y7c{bottom:212.572226px;}
.yf4{bottom:215.378880px;}
.y17c{bottom:216.298826px;}
.y137{bottom:219.644543px;}
.y1a3{bottom:219.990091px;}
.y42{bottom:220.722651px;}
.y115{bottom:220.998052px;}
.ydd{bottom:221.671875px;}
.y1b{bottom:222.539031px;}
.yda{bottom:222.796875px;}
.ya5{bottom:224.027322px;}
.y151{bottom:229.728516px;}
.y7b{bottom:231.468716px;}
.ybd{bottom:233.613269px;}
.y17b{bottom:234.251954px;}
.yf3{bottom:234.281229px;}
.y1a2{bottom:237.943218px;}
.y41{bottom:239.619141px;}
.y114{bottom:239.894537px;}
.y1a{bottom:241.441380px;}
.y66{bottom:241.500000px;}
.ya4{bottom:242.923812px;}
.y136{bottom:246.421886px;}
.y7a{bottom:250.371064px;}
.y17a{bottom:252.205070px;}
.yf2{bottom:253.177719px;}
.y1a1{bottom:255.896345px;}
.ybc{bottom:258.439444px;}
.y40{bottom:258.521451px;}
.y19{bottom:260.337870px;}
.ya3{bottom:261.826161px;}
.y113{bottom:266.671880px;}
.y79{bottom:269.267554px;}
.y179{bottom:270.164058px;}
.yf1{bottom:272.080068px;}
.y135{bottom:273.193370px;}
.y1a0{bottom:273.855324px;}
.y3f{bottom:277.417941px;}
.y18{bottom:279.240219px;}
.ybb{bottom:283.265619px;}
.y150{bottom:285.339839px;}
.y112{bottom:285.568365px;}
.y178{bottom:288.117185px;}
.y78{bottom:288.169904px;}
.yf0{bottom:290.976558px;}
.y19f{bottom:291.808451px;}
.y134{bottom:292.095714px;}
.ya2{bottom:294.228510px;}
.y3e{bottom:296.320290px;}
.y65{bottom:297.105441px;}
.y17{bottom:298.142568px;}
.y14f{bottom:304.242150px;}
.y177{bottom:306.070313px;}
.yba{bottom:308.091793px;}
.y19e{bottom:309.761579px;}
.yef{bottom:309.878907px;}
.y111{bottom:312.345708px;}
.ya1{bottom:313.124994px;}
.y64{bottom:316.007790px;}
.y16{bottom:317.039058px;}
.y133{bottom:318.873056px;}
.y77{bottom:320.572253px;}
.y14e{bottom:323.138640px;}
.y176{bottom:324.029297px;}
.y19d{bottom:327.720563px;}
.y3d{bottom:328.722639px;}
.yee{bottom:328.781223px;}
.y110{bottom:331.248052px;}
.ya0{bottom:332.027343px;}
.yb9{bottom:332.912109px;}
.y63{bottom:334.910139px;}
.y15{bottom:335.941407px;}
.y175{bottom:341.982401px;}
.y14d{bottom:342.040989px;}
.y132{bottom:345.644540px;}
.y19c{bottom:345.673679px;}
.y3c{bottom:347.619129px;}
.y76{bottom:353.126935px;}
.y62{bottom:353.806629px;}
.y10f{bottom:358.019536px;}
.yed{bottom:359.085915px;}
.y174{bottom:359.935528px;}
.y14c{bottom:360.943338px;}
.y9f{bottom:362.841796px;}
.y19b{bottom:363.626806px;}
.y3b{bottom:366.521478px;}
.yc8{bottom:369.521483px;}
.y75{bottom:372.029285px;}
.y131{bottom:372.421883px;}
.y61{bottom:372.708978px;}
.y14{bottom:373.822266px;}
.y173{bottom:377.894517px;}
.y14b{bottom:379.839828px;}
.y19a{bottom:381.585794px;}
.y10e{bottom:384.796878px;}
.y3a{bottom:385.417968px;}
.yc7{bottom:386.320315px;}
.yec{bottom:389.396466px;}
.y74{bottom:390.925774px;}
.y60{bottom:391.605459px;}
.y172{bottom:395.847644px;}
.y14a{bottom:398.742177px;}
.y130{bottom:399.193366px;}
.y199{bottom:399.538922px;}
.yc6{bottom:407.619141px;}
.y5f{bottom:410.507808px;}
.y10d{bottom:411.568362px;}
.y13{bottom:413.578125px;}
.y171{bottom:413.800771px;}
.y39{bottom:416.074218px;}
.y198{bottom:417.492041px;}
.y149{bottom:417.638667px;}
.y12f{bottom:418.095710px;}
.y9e{bottom:418.447260px;}
.yeb{bottom:419.701158px;}
.y5e{bottom:429.410157px;}
.y10c{bottom:430.470706px;}
.y170{bottom:431.759760px;}
.y84{bottom:433.083983px;}
.y197{bottom:435.451030px;}
.y148{bottom:436.541016px;}
.y9d{bottom:437.349605px;}
.yea{bottom:438.603507px;}
.y12e{bottom:444.873053px;}
.yb8{bottom:446.466780px;}
.y16f{bottom:449.712887px;}
.y83{bottom:449.882815px;}
.y196{bottom:453.404157px;}
.y147{bottom:455.443359px;}
.y9c{bottom:456.251948px;}
.y10b{bottom:457.248049px;}
.y5d{bottom:460.218750px;}
.yb7{bottom:465.363270px;}
.y16e{bottom:467.666014px;}
.ye9{bottom:468.914058px;}
.y85{bottom:470.056641px;}
.y82{bottom:471.181641px;}
.y195{bottom:471.357282px;}
.y12d{bottom:471.644537px;}
.y38{bottom:471.685542px;}
.y9b{bottom:475.148427px;}
.y10a{bottom:476.144534px;}
.y12{bottom:482.677734px;}
.yb6{bottom:484.265619px;}
.y16d{bottom:485.619141px;}
.y146{bottom:486.093750px;}
.y194{bottom:489.316253px;}
.y12c{bottom:490.546881px;}
.y37{bottom:490.587891px;}
.y9a{bottom:494.050776px;}
.ye8{bottom:499.218746px;}
.y11{bottom:499.476552px;}
.y109{bottom:502.921877px;}
.yb5{bottom:503.162094px;}
.y16c{bottom:503.578125px;}
.y193{bottom:507.269380px;}
.y99{bottom:512.947266px;}
.y5c{bottom:515.830041px;}
.y10{bottom:516.275378px;}
.y12b{bottom:517.318365px;}
.y36{bottom:521.238282px;}
.y16b{bottom:521.531233px;}
.y108{bottom:521.818362px;}
.yb4{bottom:522.064443px;}
.y192{bottom:525.222507px;}
.ye7{bottom:529.529288px;}
.y98{bottom:531.849605px;}
.yf{bottom:533.074205px;}
.y5b{bottom:534.732390px;}
.y12a{bottom:536.220709px;}
.y16a{bottom:539.484360px;}
.yb3{bottom:540.966792px;}
.y191{bottom:543.175634px;}
.y145{bottom:547.248054px;}
.y107{bottom:548.595705px;}
.y97{bottom:550.751943px;}
.y5a{bottom:553.628880px;}
.ye{bottom:554.373038px;}
.y169{bottom:557.443348px;}
.ye6{bottom:559.833979px;}
.yb2{bottom:559.863282px;}
.y190{bottom:561.134623px;}
.y129{bottom:562.998051px;}
.y144{bottom:566.144540px;}
.y106{bottom:567.498049px;}
.y96{bottom:569.648433px;}
.y59{bottom:572.531229px;}
.y168{bottom:575.396475px;}
.yd{bottom:575.677729px;}
.y35{bottom:576.849528px;}
.ye5{bottom:578.736328px;}
.y18f{bottom:579.087750px;}
.y128{bottom:581.894537px;}
.y95{bottom:588.550716px;}
.y58{bottom:591.427719px;}
.y143{bottom:592.921882px;}
.y167{bottom:593.349602px;}
.yd7{bottom:594.052707px;}
.y105{bottom:594.269533px;}
.yb1{bottom:595.705058px;}
.y34{bottom:595.751877px;}
.yc{bottom:596.976562px;}
.y18e{bottom:597.040875px;}
.y94{bottom:607.447206px;}
.y127{bottom:608.671879px;}
.ye4{bottom:609.550782px;}
.y57{bottom:610.330068px;}
.y166{bottom:611.308591px;}
.yd6{bottom:612.955056px;}
.y104{bottom:613.171877px;}
.y33{bottom:614.648367px;}
.y18d{bottom:614.999850px;}
.y142{bottom:619.693366px;}
.yb0{bottom:620.531233px;}
.y93{bottom:626.349555px;}
.y126{bottom:627.568365px;}
.y56{bottom:629.232417px;}
.y165{bottom:629.261718px;}
.yd5{bottom:631.857405px;}
.y18c{bottom:632.952977px;}
.y32{bottom:633.550716px;}
.y103{bottom:639.943360px;}
.y92{bottom:645.251904px;}
.yaf{bottom:645.357407px;}
.y141{bottom:646.470709px;}
.y164{bottom:647.214843px;}
.yb{bottom:647.232431px;}
.y18b{bottom:650.906105px;}
.y31{bottom:652.453065px;}
.y125{bottom:654.345707px;}
.ya{bottom:660.457036px;}
.y55{bottom:661.628885px;}
.yd4{bottom:664.253895px;}
.ye3{bottom:665.162104px;}
.y163{bottom:665.173824px;}
.y102{bottom:666.720703px;}
.y18a{bottom:668.865093px;}
.yae{bottom:670.177723px;}
.y30{bottom:671.349555px;}
.y140{bottom:673.248051px;}
.y9{bottom:673.687500px;}
.y91{bottom:677.648394px;}
.y54{bottom:680.531233px;}
.y124{bottom:681.123050px;}
.y162{bottom:683.126951px;}
.yd3{bottom:683.156244px;}
.y189{bottom:686.818211px;}
.y101{bottom:693.498046px;}
.y8{bottom:694.646484px;}
.yad{bottom:695.003898px;}
.ye2{bottom:695.466796px;}
.y90{bottom:696.550743px;}
.y20{bottom:699.146481px;}
.y53{bottom:699.427723px;}
.y123{bottom:700.019535px;}
.y161{bottom:701.080079px;}
.yd2{bottom:702.052734px;}
.y2f{bottom:703.751904px;}
.y188{bottom:704.771338px;}
.y100{bottom:712.394531px;}
.y7{bottom:713.847657px;}
.y52{bottom:718.330073px;}
.y1f{bottom:718.347657px;}
.y160{bottom:719.039062px;}
.yac{bottom:719.830072px;}
.y2e{bottom:722.648394px;}
.y187{bottom:722.730326px;}
.ye1{bottom:726.281250px;}
.y122{bottom:726.796878px;}
.y8f{bottom:729.105426px;}
.yff{bottom:731.296875px;}
.y15f{bottom:736.992179px;}
.yd1{bottom:739.845695px;}
.y186{bottom:740.683454px;}
.y2d{bottom:741.550743px;}
.yab{bottom:744.656247px;}
.y121{bottom:745.693363px;}
.y8e{bottom:748.007775px;}
.y51{bottom:750.732417px;}
.y13f{bottom:753.568361px;}
.y15e{bottom:754.945306px;}
.y6{bottom:756.158206px;}
.yfe{bottom:758.068359px;}
.y185{bottom:758.636579px;}
.y2c{bottom:760.453092px;}
.yd0{bottom:764.671870px;}
.y8d{bottom:766.910124px;}
.yaa{bottom:769.482421px;}
.y50{bottom:769.628884px;}
.y120{bottom:772.470706px;}
.y15d{bottom:772.904294px;}
.y184{bottom:776.595563px;}
.y2b{bottom:779.349582px;}
.y13e{bottom:780.345704px;}
.ye0{bottom:781.892559px;}
.y25{bottom:784.873968px;}
.y8c{bottom:785.806614px;}
.y1b6{bottom:787.171875px;}
.y4f{bottom:788.531233px;}
.y15c{bottom:790.857419px;}
.ycf{bottom:791.443353px;}
.y5{bottom:793.710931px;}
.yfd{bottom:793.927703px;}
.y2a{bottom:798.251931px;}
.y11f{bottom:799.248048px;}
.ydf{bottom:800.789049px;}
.y1b5{bottom:803.970699px;}
.y8b{bottom:804.708963px;}
.yc5{bottom:806.085935px;}
.y4e{bottom:807.427723px;}
.y15b{bottom:808.810546px;}
.y73{bottom:812.671863px;}
.yfc{bottom:812.830052px;}
.y29{bottom:817.148421px;}
.yce{bottom:818.220696px;}
.y1b4{bottom:820.769531px;}
.y6e{bottom:821.026079px;}
.yc4{bottom:822.884767px;}
.y8a{bottom:823.605453px;}
.y11e{bottom:826.019532px;}
.y4d{bottom:826.330072px;}
.yde{bottom:831.099600px;}
.y4{bottom:831.269532px;}
.y159{bottom:834.749578px;}
.y28{bottom:836.050770px;}
.y1b3{bottom:837.708984px;}
.y89{bottom:842.507802px;}
.ycd{bottom:843.046871px;}
.yc3{bottom:844.183593px;}
.y11d{bottom:844.921876px;}
.yfb{bottom:845.232401px;}
.y72{bottom:845.232405px;}
.y4c{bottom:845.232417px;}
.y15a{bottom:846.322266px;}
.y13d{bottom:852.796875px;}
.y1b2{bottom:854.654293px;}
.y27{bottom:854.953119px;}
.y88{bottom:861.410151px;}
.yfa{bottom:864.128891px;}
.y71{bottom:864.128895px;}
.y4b{bottom:864.128901px;}
.ycc{bottom:867.873045px;}
.y1b1{bottom:871.453125px;}
.y11c{bottom:871.693360px;}
.y26{bottom:873.849609px;}
.y87{bottom:880.306641px;}
.y4a{bottom:883.031239px;}
.y70{bottom:883.031244px;}
.ycb{bottom:892.693361px;}
.y1b7{bottom:897.263671px;}
.y11b{bottom:898.470702px;}
.y3{bottom:899.378907px;}
.y1b0{bottom:899.513671px;}
.y49{bottom:901.927730px;}
.y6f{bottom:901.927734px;}
.y86{bottom:911.121093px;}
.y11a{bottom:917.373046px;}
.yca{bottom:919.470704px;}
.y48{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.yc9{bottom:974.730457px;}
.y47{bottom:974.730470px;}
.h8{height:26.244141px;}
.h5{height:27.557629px;}
.h9{height:28.048904px;}
.h15{height:30.576083px;}
.h1{height:30.617097px;}
.h12{height:31.993163px;}
.h4{height:34.993255px;}
.h11{height:35.391704px;}
.hd{height:35.617086px;}
.h16{height:35.617135px;}
.h21{height:35.860469px;}
.h1a{height:37.399182px;}
.h1f{height:37.399234px;}
.h1d{height:37.399237px;}
.h1b{height:37.399252px;}
.h1c{height:37.399263px;}
.h2{height:39.366211px;}
.h14{height:39.366271px;}
.hc{height:39.366277px;}
.he{height:39.366301px;}
.h17{height:39.366319px;}
.hb{height:39.366343px;}
.h18{height:39.366361px;}
.h13{height:39.366475px;}
.hf{height:40.341797px;}
.h20{height:40.535623px;}
.h7{height:46.796220px;}
.h6{height:52.443023px;}
.h3{height:68.582368px;}
.h1e{height:790.020000px;}
.ha{height:808.107000px;}
.h10{height:835.159500px;}
.h19{height:848.883000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x13{left:11.584593px;}
.x12{left:45.000609px;}
.x3{left:78.662109px;}
.x9{left:83.162104px;}
.xb{left:86.537109px;}
.x11{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xd{left:101.162109px;}
.xe{left:105.662109px;}
.xa{left:123.662104px;}
.xc{left:138.287109px;}
.x1{left:140.308593px;}
.x8{left:146.601562px;}
.x7{left:160.787110px;}
.x6{left:164.882812px;}
.xf{left:261.527349px;}
.x2{left:315.914062px;}
.x10{left:559.916016px;}
.x14{left:578.162109px;}
@media print{
.v1{vertical-align:-7.458343pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.015984pt;}
.ls2{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.426680pt;}
.ls10{letter-spacing:0.775227pt;}
.lsf{letter-spacing:0.820828pt;}
.ls1{letter-spacing:1.296000pt;}
.ls5{letter-spacing:1.312000pt;}
.ls4{letter-spacing:1.536000pt;}
.ls11{letter-spacing:1.536047pt;}
.lsb{letter-spacing:1.584000pt;}
.lsd{letter-spacing:8.064000pt;}
.lsc{letter-spacing:8.112000pt;}
.ls6{letter-spacing:284.619412pt;}
.ls7{letter-spacing:328.596546pt;}
.ls8{letter-spacing:328.633878pt;}
.ls9{letter-spacing:348.606515pt;}
.lsa{letter-spacing:418.243410pt;}
.ls3{letter-spacing:783.839111pt;}
.ws11{word-spacing:-42.667968pt;}
.ws1{word-spacing:-18.781930pt;}
.ws2{word-spacing:-16.759585pt;}
.ws7{word-spacing:-14.448000pt;}
.ws6{word-spacing:-13.296000pt;}
.ws10{word-spacing:-12.843058pt;}
.wsf{word-spacing:-12.631633pt;}
.wse{word-spacing:-11.861695pt;}
.ws8{word-spacing:-11.819027pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:290.496000pt;}
.wsa{word-spacing:347.897206pt;}
.ws4{word-spacing:362.848000pt;}
.wsb{word-spacing:367.892467pt;}
.ws9{word-spacing:387.902436pt;}
.wsc{word-spacing:407.902437pt;}
.wsd{word-spacing:747.998018pt;}
._35{margin-left:-8.286356pt;}
._54{margin-left:-7.209375pt;}
._1e{margin-left:-6.177445pt;}
._16{margin-left:-4.859291pt;}
._4{margin-left:-3.259153pt;}
._3{margin-left:-2.040039pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._c{width:3.709453pt;}
._a{width:5.307630pt;}
._5{width:6.434840pt;}
._6{width:7.424226pt;}
._8{width:8.377709pt;}
._e{width:9.338747pt;}
._d{width:10.285523pt;}
._14{width:12.044297pt;}
._b{width:14.528578pt;}
._7{width:15.489179pt;}
._9{width:16.738851pt;}
._17{width:18.190747pt;}
._19{width:19.832070pt;}
._1d{width:21.312034pt;}
._1c{width:22.549625pt;}
._13{width:26.733376pt;}
._4b{width:33.745821pt;}
._15{width:35.430254pt;}
._4d{width:36.956376pt;}
._47{width:49.585489pt;}
._3f{width:53.545021pt;}
._46{width:57.427552pt;}
._4a{width:73.741650pt;}
._40{width:77.698845pt;}
._1b{width:79.991846pt;}
._4f{width:81.082837pt;}
._48{width:86.346654pt;}
._37{width:93.303635pt;}
._3c{width:98.229127pt;}
._49{width:101.204803pt;}
._1a{width:102.960035pt;}
._44{width:125.446514pt;}
._3b{width:138.523612pt;}
._4e{width:145.779249pt;}
._4c{width:149.003026pt;}
._3d{width:166.399753pt;}
._41{width:168.914222pt;}
._42{width:185.663082pt;}
._39{width:188.924191pt;}
._53{width:194.543090pt;}
._50{width:205.758602pt;}
._43{width:212.840801pt;}
._18{width:218.543090pt;}
._45{width:220.917743pt;}
._3a{width:222.509797pt;}
._3e{width:224.874938pt;}
._51{width:237.255950pt;}
._52{width:241.450360pt;}
._38{width:265.766736pt;}
._21{width:296.688545pt;}
._22{width:301.592264pt;}
._36{width:311.186596pt;}
._1f{width:322.348874pt;}
._25{width:337.990995pt;}
._11{width:347.347680pt;}
._27{width:357.429986pt;}
._f{width:359.353824pt;}
._30{width:376.681950pt;}
._28{width:378.193277pt;}
._12{width:382.208000pt;}
._2f{width:398.243409pt;}
._23{width:410.798313pt;}
._2c{width:418.243410pt;}
._20{width:429.514884pt;}
._33{width:443.941049pt;}
._32{width:455.975186pt;}
._2e{width:461.467432pt;}
._24{width:464.612108pt;}
._2a{width:480.427667pt;}
._29{width:487.907296pt;}
._26{width:489.499351pt;}
._2b{width:516.378414pt;}
._31{width:519.863516pt;}
._10{width:523.332992pt;}
._2d{width:529.444625pt;}
._34{width:560.243552pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:49.492187pt;}
.fs6{font-size:55.679685pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.y1af{bottom:4.025917pt;}
.y1ae{bottom:19.984243pt;}
.y1ad{bottom:35.947788pt;}
.y23{bottom:41.541662pt;}
.y1ac{bottom:51.906123pt;}
.y22{bottom:52.458331pt;}
.y21{bottom:63.380208pt;}
.y1ab{bottom:67.864459pt;}
.y158{bottom:76.516000pt;}
.yd9{bottom:76.828125pt;}
.yf9{bottom:83.447897pt;}
.y1aa{bottom:83.822786pt;}
.ya9{bottom:88.713537pt;}
.y6d{bottom:88.714667pt;}
.y13c{bottom:90.239595pt;}
.y6c{bottom:91.135401pt;}
.y81{bottom:92.953065pt;}
.y157{bottom:92.958309pt;}
.yc2{bottom:95.588522pt;}
.y182{bottom:96.505206pt;}
.y1a9{bottom:99.786331pt;}
.yf8{bottom:100.249985pt;}
.yd8{bottom:104.218749pt;}
.ya8{bottom:105.515625pt;}
.y13b{bottom:107.041679pt;}
.y6b{bottom:107.932281pt;}
.y119{bottom:108.239590pt;}
.y80{bottom:109.749945pt;}
.y156{bottom:109.755189pt;}
.y181{bottom:112.463541pt;}
.y24{bottom:112.761333pt;}
.y1a8{bottom:115.744667pt;}
.y46{bottom:116.994777pt;}
.yc1{bottom:119.390604pt;}
.y6a{bottom:124.734369pt;}
.y155{bottom:126.557277pt;}
.y180{bottom:128.421862pt;}
.y183{bottom:128.838667pt;}
.yf7{bottom:129.046865pt;}
.y13a{bottom:130.838554pt;}
.y1a7{bottom:131.702996pt;}
.y118{bottom:132.041673pt;}
.ya7{bottom:132.901041pt;}
.y45{bottom:133.796865pt;}
.y7f{bottom:138.552033pt;}
.yc0{bottom:141.458315pt;}
.y154{bottom:143.354157pt;}
.y17f{bottom:144.385408pt;}
.yf6{bottom:145.848953pt;}
.y1e{bottom:147.411416pt;}
.y1a6{bottom:147.666541pt;}
.y44{bottom:150.593745pt;}
.y69{bottom:153.677073pt;}
.y139{bottom:154.640636pt;}
.y7e{bottom:155.348913pt;}
.y117{bottom:155.838547pt;}
.y153{bottom:160.156245pt;}
.y17e{bottom:160.343743pt;}
.ybf{bottom:163.526026pt;}
.y1a5{bottom:163.624867pt;}
.ydc{bottom:164.177082pt;}
.y1d{bottom:164.213504pt;}
.y68{bottom:170.473953pt;}
.y7d{bottom:172.151001pt;}
.y116{bottom:172.640631pt;}
.yf5{bottom:174.645829pt;}
.y17d{bottom:176.302078pt;}
.y152{bottom:176.958333pt;}
.y138{bottom:178.442718pt;}
.ydb{bottom:179.109377pt;}
.y43{bottom:179.395829pt;}
.y1a4{bottom:179.583202pt;}
.y1c{bottom:181.015592pt;}
.ya6{bottom:182.333333pt;}
.ybe{bottom:185.588529pt;}
.y67{bottom:187.276041pt;}
.y7c{bottom:188.953089pt;}
.yf4{bottom:191.447893pt;}
.y17c{bottom:192.265623pt;}
.y137{bottom:195.239594pt;}
.y1a3{bottom:195.546747pt;}
.y42{bottom:196.197912pt;}
.y115{bottom:196.442713pt;}
.ydd{bottom:197.041667pt;}
.y1b{bottom:197.812472pt;}
.yda{bottom:198.041667pt;}
.ya5{bottom:199.135397pt;}
.y151{bottom:204.203125pt;}
.y7b{bottom:205.749969pt;}
.ybd{bottom:207.656239pt;}
.y17b{bottom:208.223959pt;}
.yf3{bottom:208.249981pt;}
.y1a2{bottom:211.505083pt;}
.y41{bottom:212.994792pt;}
.y114{bottom:213.239589pt;}
.y1a{bottom:214.614560pt;}
.y66{bottom:214.666667pt;}
.ya4{bottom:215.932277pt;}
.y136{bottom:219.041676pt;}
.y7a{bottom:222.552057pt;}
.y17a{bottom:224.182284pt;}
.yf2{bottom:225.046861pt;}
.y1a1{bottom:227.463417pt;}
.ybc{bottom:229.723950pt;}
.y40{bottom:229.796845pt;}
.y19{bottom:231.411440pt;}
.ya3{bottom:232.734365pt;}
.y113{bottom:237.041671pt;}
.y79{bottom:239.348937pt;}
.y179{bottom:240.145829pt;}
.yf1{bottom:241.848949pt;}
.y135{bottom:242.838551pt;}
.y1a0{bottom:243.426955pt;}
.y3f{bottom:246.593725pt;}
.y18{bottom:248.213528pt;}
.ybb{bottom:251.791661pt;}
.y150{bottom:253.635412pt;}
.y112{bottom:253.838547pt;}
.y178{bottom:256.104165pt;}
.y78{bottom:256.151025pt;}
.yf0{bottom:258.645829pt;}
.y19f{bottom:259.385290pt;}
.y134{bottom:259.640634pt;}
.ya2{bottom:261.536453pt;}
.y3e{bottom:263.395813pt;}
.y65{bottom:264.093725pt;}
.y17{bottom:265.015616pt;}
.y14f{bottom:270.437467pt;}
.y177{bottom:272.062500pt;}
.yba{bottom:273.859372pt;}
.y19e{bottom:275.343625pt;}
.yef{bottom:275.447917pt;}
.y111{bottom:277.640629pt;}
.ya1{bottom:278.333328pt;}
.y64{bottom:280.895813pt;}
.y16{bottom:281.812496pt;}
.y133{bottom:283.442717pt;}
.y77{bottom:284.953113pt;}
.y14e{bottom:287.234347pt;}
.y176{bottom:288.026041pt;}
.y19d{bottom:291.307167pt;}
.y3d{bottom:292.197901pt;}
.yee{bottom:292.249976pt;}
.y110{bottom:294.442713pt;}
.ya0{bottom:295.135416pt;}
.yb9{bottom:295.921875pt;}
.y63{bottom:297.697901pt;}
.y15{bottom:298.614584pt;}
.y175{bottom:303.984357pt;}
.y14d{bottom:304.036435pt;}
.y132{bottom:307.239591pt;}
.y19c{bottom:307.265492pt;}
.y3c{bottom:308.994781pt;}
.y76{bottom:313.890609pt;}
.y62{bottom:314.494781pt;}
.y10f{bottom:318.239587pt;}
.yed{bottom:319.187480pt;}
.y174{bottom:319.942692pt;}
.y14c{bottom:320.838523pt;}
.y9f{bottom:322.526041pt;}
.y19b{bottom:323.223828pt;}
.y3b{bottom:325.796869pt;}
.yc8{bottom:328.463540pt;}
.y75{bottom:330.692697pt;}
.y131{bottom:331.041673pt;}
.y61{bottom:331.296869pt;}
.y14{bottom:332.286459pt;}
.y173{bottom:335.906237pt;}
.y14b{bottom:337.635403pt;}
.y19a{bottom:339.187373pt;}
.y10e{bottom:342.041670pt;}
.y3a{bottom:342.593749pt;}
.yc7{bottom:343.395836pt;}
.yec{bottom:346.130192pt;}
.y74{bottom:347.489577pt;}
.y60{bottom:348.093741pt;}
.y172{bottom:351.864572pt;}
.y14a{bottom:354.437491pt;}
.y130{bottom:354.838548pt;}
.y199{bottom:355.145708pt;}
.yc6{bottom:362.328125pt;}
.y5f{bottom:364.895829pt;}
.y10d{bottom:365.838544pt;}
.y13{bottom:367.625000pt;}
.y171{bottom:367.822908pt;}
.y39{bottom:369.843749pt;}
.y198{bottom:371.104037pt;}
.y149{bottom:371.234371pt;}
.y12f{bottom:371.640632pt;}
.y9e{bottom:371.953120pt;}
.yeb{bottom:373.067696pt;}
.y5e{bottom:381.697917pt;}
.y10c{bottom:382.640628pt;}
.y170{bottom:383.786453pt;}
.y84{bottom:384.963540pt;}
.y197{bottom:387.067582pt;}
.y148{bottom:388.036459pt;}
.y9d{bottom:388.755204pt;}
.yea{bottom:389.869784pt;}
.y12e{bottom:395.442714pt;}
.yb8{bottom:396.859360pt;}
.y16f{bottom:399.744788pt;}
.y83{bottom:399.895836pt;}
.y196{bottom:403.025917pt;}
.y147{bottom:404.838541pt;}
.y9c{bottom:405.557287pt;}
.y10b{bottom:406.442710pt;}
.y5d{bottom:409.083333pt;}
.yb7{bottom:413.656240pt;}
.y16e{bottom:415.703123pt;}
.ye9{bottom:416.812496pt;}
.y85{bottom:417.828125pt;}
.y82{bottom:418.828125pt;}
.y195{bottom:418.984251pt;}
.y12d{bottom:419.239588pt;}
.y38{bottom:419.276037pt;}
.y9b{bottom:422.354157pt;}
.y10a{bottom:423.239586pt;}
.y12{bottom:429.046875pt;}
.yb6{bottom:430.458328pt;}
.y16d{bottom:431.661459pt;}
.y146{bottom:432.083333pt;}
.y194{bottom:434.947780pt;}
.y12c{bottom:436.041672pt;}
.y37{bottom:436.078125pt;}
.y9a{bottom:439.156245pt;}
.ye8{bottom:443.749996pt;}
.y11{bottom:443.979157pt;}
.y109{bottom:447.041668pt;}
.yb5{bottom:447.255195pt;}
.y16c{bottom:447.625000pt;}
.y193{bottom:450.906116pt;}
.y99{bottom:455.953125pt;}
.y5c{bottom:458.515592pt;}
.y10{bottom:458.911447pt;}
.y12b{bottom:459.838546pt;}
.y36{bottom:463.322917pt;}
.y16b{bottom:463.583318pt;}
.y108{bottom:463.838544pt;}
.yb4{bottom:464.057283pt;}
.y192{bottom:466.864451pt;}
.ye7{bottom:470.692700pt;}
.y98{bottom:472.755204pt;}
.yf{bottom:473.843737pt;}
.y5b{bottom:475.317680pt;}
.y12a{bottom:476.640630pt;}
.y16a{bottom:479.541653pt;}
.yb3{bottom:480.859371pt;}
.y191{bottom:482.822786pt;}
.y145{bottom:486.442715pt;}
.y107{bottom:487.640626pt;}
.y97{bottom:489.557283pt;}
.y5a{bottom:492.114560pt;}
.ye{bottom:492.776033pt;}
.y169{bottom:495.505198pt;}
.ye6{bottom:497.630204pt;}
.yb2{bottom:497.656251pt;}
.y190{bottom:498.786331pt;}
.y129{bottom:500.442712pt;}
.y144{bottom:503.239591pt;}
.y106{bottom:504.442710pt;}
.y96{bottom:506.354163pt;}
.y59{bottom:508.916648pt;}
.y168{bottom:511.463534pt;}
.yd{bottom:511.713537pt;}
.y35{bottom:512.755136pt;}
.ye5{bottom:514.432292pt;}
.y18f{bottom:514.744667pt;}
.y128{bottom:517.239588pt;}
.y95{bottom:523.156192pt;}
.y58{bottom:525.713528pt;}
.y143{bottom:527.041673pt;}
.y167{bottom:527.421869pt;}
.yd7{bottom:528.046851pt;}
.y105{bottom:528.239584pt;}
.yb1{bottom:529.515607pt;}
.y34{bottom:529.557224pt;}
.yc{bottom:530.645833pt;}
.y18e{bottom:530.703000pt;}
.y94{bottom:539.953072pt;}
.y127{bottom:541.041671pt;}
.ye4{bottom:541.822917pt;}
.y57{bottom:542.515616pt;}
.y166{bottom:543.385414pt;}
.yd6{bottom:544.848939pt;}
.y104{bottom:545.041668pt;}
.y33{bottom:546.354104pt;}
.y18d{bottom:546.666534pt;}
.y142{bottom:550.838548pt;}
.yb0{bottom:551.583318pt;}
.y93{bottom:556.755160pt;}
.y126{bottom:557.838546pt;}
.y56{bottom:559.317704pt;}
.y165{bottom:559.343749pt;}
.yd5{bottom:561.651027pt;}
.y18c{bottom:562.624869pt;}
.y32{bottom:563.156192pt;}
.y103{bottom:568.838543pt;}
.y92{bottom:573.557248pt;}
.yaf{bottom:573.651029pt;}
.y141{bottom:574.640630pt;}
.y164{bottom:575.302083pt;}
.yb{bottom:575.317717pt;}
.y18b{bottom:578.583204pt;}
.y31{bottom:579.958280pt;}
.y125{bottom:581.640629pt;}
.ya{bottom:587.072921pt;}
.y55{bottom:588.114564pt;}
.yd4{bottom:590.447907pt;}
.ye3{bottom:591.255204pt;}
.y163{bottom:591.265621pt;}
.y102{bottom:592.640625pt;}
.y18a{bottom:594.546749pt;}
.yae{bottom:595.713532pt;}
.y30{bottom:596.755160pt;}
.y140{bottom:598.442712pt;}
.y9{bottom:598.833333pt;}
.y91{bottom:602.354128pt;}
.y54{bottom:604.916652pt;}
.y124{bottom:605.442711pt;}
.y162{bottom:607.223957pt;}
.yd3{bottom:607.249995pt;}
.y189{bottom:610.505076pt;}
.y101{bottom:616.442707pt;}
.y8{bottom:617.463541pt;}
.yad{bottom:617.781242pt;}
.ye2{bottom:618.192708pt;}
.y90{bottom:619.156216pt;}
.y20{bottom:621.463539pt;}
.y53{bottom:621.713532pt;}
.y123{bottom:622.239587pt;}
.y161{bottom:623.182292pt;}
.yd2{bottom:624.046875pt;}
.y2f{bottom:625.557248pt;}
.y188{bottom:626.463412pt;}
.y100{bottom:633.239583pt;}
.y7{bottom:634.531251pt;}
.y52{bottom:638.515620pt;}
.y1f{bottom:638.531251pt;}
.y160{bottom:639.145833pt;}
.yac{bottom:639.848953pt;}
.y2e{bottom:642.354128pt;}
.y187{bottom:642.426957pt;}
.ye1{bottom:645.583333pt;}
.y122{bottom:646.041669pt;}
.y8f{bottom:648.093712pt;}
.yff{bottom:650.041667pt;}
.y15f{bottom:655.104159pt;}
.yd1{bottom:657.640618pt;}
.y186{bottom:658.385292pt;}
.y2d{bottom:659.156216pt;}
.yab{bottom:661.916664pt;}
.y121{bottom:662.838545pt;}
.y8e{bottom:664.895800pt;}
.y51{bottom:667.317704pt;}
.y13f{bottom:669.838544pt;}
.y15e{bottom:671.062494pt;}
.y6{bottom:672.140627pt;}
.yfe{bottom:673.838541pt;}
.y185{bottom:674.343625pt;}
.y2c{bottom:675.958304pt;}
.yd0{bottom:679.708328pt;}
.y8d{bottom:681.697888pt;}
.yaa{bottom:683.984375pt;}
.y50{bottom:684.114564pt;}
.y120{bottom:686.640627pt;}
.y15d{bottom:687.026039pt;}
.y184{bottom:690.307167pt;}
.y2b{bottom:692.755184pt;}
.y13e{bottom:693.640626pt;}
.ye0{bottom:695.015608pt;}
.y25{bottom:697.665749pt;}
.y8c{bottom:698.494768pt;}
.y1b6{bottom:699.708333pt;}
.y4f{bottom:700.916652pt;}
.y15c{bottom:702.984373pt;}
.ycf{bottom:703.505203pt;}
.y5{bottom:705.520828pt;}
.yfd{bottom:705.713513pt;}
.y2a{bottom:709.557272pt;}
.y11f{bottom:710.442709pt;}
.ydf{bottom:711.812488pt;}
.y1b5{bottom:714.640621pt;}
.y8b{bottom:715.296856pt;}
.yc5{bottom:716.520831pt;}
.y4e{bottom:717.713532pt;}
.y15b{bottom:718.942708pt;}
.y73{bottom:722.374989pt;}
.yfc{bottom:722.515601pt;}
.y29{bottom:726.354152pt;}
.yce{bottom:727.307285pt;}
.y1b4{bottom:729.572917pt;}
.y6e{bottom:729.800959pt;}
.yc4{bottom:731.453127pt;}
.y8a{bottom:732.093736pt;}
.y11e{bottom:734.239584pt;}
.y4d{bottom:734.515620pt;}
.yde{bottom:738.755200pt;}
.y4{bottom:738.906251pt;}
.y159{bottom:741.999625pt;}
.y28{bottom:743.156240pt;}
.y1b3{bottom:744.630208pt;}
.y89{bottom:748.895824pt;}
.ycd{bottom:749.374996pt;}
.yc3{bottom:750.385416pt;}
.y11d{bottom:751.041668pt;}
.yfb{bottom:751.317689pt;}
.y72{bottom:751.317693pt;}
.y4c{bottom:751.317704pt;}
.y15a{bottom:752.286459pt;}
.y13d{bottom:758.041666pt;}
.y1b2{bottom:759.692705pt;}
.y27{bottom:759.958328pt;}
.y88{bottom:765.697912pt;}
.yfa{bottom:768.114569pt;}
.y71{bottom:768.114573pt;}
.y4b{bottom:768.114579pt;}
.ycc{bottom:771.442707pt;}
.y1b1{bottom:774.625000pt;}
.y11c{bottom:774.838542pt;}
.y26{bottom:776.755208pt;}
.y87{bottom:782.494792pt;}
.y4a{bottom:784.916657pt;}
.y70{bottom:784.916661pt;}
.ycb{bottom:793.505210pt;}
.y1b7{bottom:797.567708pt;}
.y11b{bottom:798.640624pt;}
.y3{bottom:799.447917pt;}
.y1b0{bottom:799.567708pt;}
.y49{bottom:801.713537pt;}
.y6f{bottom:801.713541pt;}
.y86{bottom:809.885416pt;}
.y11a{bottom:815.442708pt;}
.yca{bottom:817.307292pt;}
.y48{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.yc9{bottom:866.427073pt;}
.y47{bottom:866.427084pt;}
.h8{height:23.328125pt;}
.h5{height:24.495670pt;}
.h9{height:24.932359pt;}
.h15{height:27.178740pt;}
.h1{height:27.215197pt;}
.h12{height:28.438367pt;}
.h4{height:31.105115pt;}
.h11{height:31.459293pt;}
.hd{height:31.659632pt;}
.h16{height:31.659675pt;}
.h21{height:31.875972pt;}
.h1a{height:33.243717pt;}
.h1f{height:33.243764pt;}
.h1d{height:33.243766pt;}
.h1b{height:33.243779pt;}
.h1c{height:33.243789pt;}
.h2{height:34.992188pt;}
.h14{height:34.992241pt;}
.hc{height:34.992246pt;}
.he{height:34.992267pt;}
.h17{height:34.992283pt;}
.hb{height:34.992305pt;}
.h18{height:34.992321pt;}
.h13{height:34.992422pt;}
.hf{height:35.859375pt;}
.h20{height:36.031665pt;}
.h7{height:41.596640pt;}
.h6{height:46.616020pt;}
.h3{height:60.962105pt;}
.h1e{height:702.240000pt;}
.ha{height:718.317333pt;}
.h10{height:742.364000pt;}
.h19{height:754.562667pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x13{left:10.297416pt;}
.x12{left:40.000541pt;}
.x3{left:69.921875pt;}
.x9{left:73.921871pt;}
.xb{left:76.921875pt;}
.x11{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xd{left:89.921875pt;}
.xe{left:93.921875pt;}
.xa{left:109.921871pt;}
.xc{left:122.921875pt;}
.x1{left:124.718749pt;}
.x8{left:130.312500pt;}
.x7{left:142.921876pt;}
.x6{left:146.562500pt;}
.xf{left:232.468754pt;}
.x2{left:280.812500pt;}
.x10{left:497.703125pt;}
.x14{left:513.921875pt;}
}




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