
    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_250ed42523261feb35ddaff5.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_d746646ebeba4677b7203375.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_1f51ce5fc1880fe790bb43ef.woff')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_3c5e2f7dad9783f4d7e9f879.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194336;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_e3dde1e255cc7d1d18694a4b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_78ca8057df2eaa74ca91f725.woff')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_6ce6cbf11d6d4f1976e55674.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_06b80b0220ee8a25fccadd3b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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);}
.v5{vertical-align:-23.759991px;}
.v6{vertical-align:-20.880063px;}
.v7{vertical-align:-12.240139px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.160049px;}
.v3{vertical-align:5.759856px;}
.v2{vertical-align:15.840090px;}
.v4{vertical-align:23.759996px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000306px;}
.lsd{letter-spacing:0.004916px;}
.ls6{letter-spacing:0.005369px;}
.lsb{letter-spacing:0.026379px;}
.ls4{letter-spacing:0.043314px;}
.ls1c{letter-spacing:0.049958px;}
.lsa{letter-spacing:0.122634px;}
.lse{letter-spacing:0.149118px;}
.ls11{letter-spacing:0.149150px;}
.ls15{letter-spacing:0.173700px;}
.ls10{letter-spacing:0.173736px;}
.ls1{letter-spacing:0.893511px;}
.lsf{letter-spacing:0.893754px;}
.ls16{letter-spacing:2.309132px;}
.ls14{letter-spacing:4.469150px;}
.ls1d{letter-spacing:12.245830px;}
.ls13{letter-spacing:13.829123px;}
.ls1b{letter-spacing:15.989172px;}
.ls1e{letter-spacing:39.250754px;}
.ls12{letter-spacing:39.250786px;}
.ls19{letter-spacing:42.485834px;}
.ls17{letter-spacing:59.410768px;}
.ls1a{letter-spacing:64.085848px;}
.lsc{letter-spacing:64.085852px;}
.ls18{letter-spacing:69.490759px;}
.ls2{letter-spacing:81.502063px;}
.ls8{letter-spacing:86.549172px;}
.ls9{letter-spacing:106.709186px;}
.ls3{letter-spacing:662.249523px;}
.ls5{letter-spacing:968.687407px;}
.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;}
}
.ws7{word-spacing:-66.242700px;}
.ws4{word-spacing:-59.762250px;}
.ws1{word-spacing:-14.970850px;}
.ws8{word-spacing:-13.556226px;}
.ws3{word-spacing:-13.506269px;}
.ws2{word-spacing:-9.438126px;}
.ws5{word-spacing:-8.787216px;}
.ws6{word-spacing:-6.834504px;}
.ws0{word-spacing:0.000000px;}
._36{margin-left:-11.824209px;}
._17{margin-left:-10.144988px;}
._15{margin-left:-7.940101px;}
._16{margin-left:-5.960159px;}
._7{margin-left:-4.158163px;}
._18{margin-left:-2.500363px;}
._2{margin-left:-1.378317px;}
._1{width:1.446242px;}
._5{width:2.987837px;}
._6{width:4.012515px;}
._8{width:5.068888px;}
._32{width:6.311512px;}
._4{width:7.397434px;}
._1f{width:8.876781px;}
._33{width:9.919935px;}
._1d{width:10.948967px;}
._1e{width:12.481400px;}
._3b{width:13.627112px;}
._34{width:16.023229px;}
._35{width:17.160801px;}
._41{width:18.766904px;}
._1c{width:19.853920px;}
._38{width:20.891679px;}
._39{width:22.503887px;}
._3e{width:23.933539px;}
._3d{width:25.172485px;}
._40{width:26.368088px;}
._3c{width:30.140946px;}
._3a{width:32.518985px;}
._20{width:33.929491px;}
._0{width:39.379711px;}
._3{width:40.741997px;}
._37{width:43.502047px;}
._3f{width:45.425155px;}
._31{width:49.897874px;}
._c{width:93.278193px;}
._12{width:96.720164px;}
._1b{width:117.298377px;}
._14{width:146.006205px;}
._1a{width:150.817183px;}
._a{width:152.101710px;}
._19{width:189.674429px;}
._f{width:201.458231px;}
._e{width:218.286997px;}
._9{width:436.030702px;}
._d{width:471.735518px;}
._b{width:500.286121px;}
._10{width:577.936927px;}
._11{width:674.130441px;}
._21{width:780.696535px;}
._13{width:848.833958px;}
._2d{width:1237.432267px;}
._24{width:1258.053671px;}
._30{width:1285.960478px;}
._28{width:1287.326475px;}
._23{width:1299.463898px;}
._22{width:1302.917833px;}
._25{width:1305.616605px;}
._27{width:1307.568537px;}
._2b{width:1319.962649px;}
._26{width:1335.363301px;}
._2f{width:1339.626122px;}
._29{width:1343.142678px;}
._2a{width:1346.364505px;}
._2c{width:1360.922115px;}
._2e{width:1362.922075px;}
.fc7{color:rgb(119,29,135);}
.fc6{color:rgb(61,0,135);}
.fc4{color:rgb(30,73,125);}
.fc3{color:rgb(160,39,181);}
.fc8{color:rgb(249,116,31);}
.fc5{color:transparent;}
.fc1{color:rgb(255,0,186);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.241170px;}
.fsc{font-size:38.881485px;}
.fs9{font-size:41.761620px;}
.fsb{font-size:45.361800px;}
.fs8{font-size:48.241800px;}
.fs0{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fse{font-size:69.122700px;}
.fs7{font-size:72.002705px;}
.fs4{font-size:84.243145px;}
.fs6{font-size:90.003596px;}
.fsa{font-size:95.763600px;}
.fs2{font-size:108.004050px;}
.fs5{font-size:216.008550px;}
.fs3{font-size:288.011259px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.779984px;}
.y2{bottom:3.959997px;}
.y2c{bottom:3.960023px;}
.y3e{bottom:4.500000px;}
.y6{bottom:45.900055px;}
.y1a{bottom:46.440033px;}
.y5{bottom:69.300110px;}
.y19{bottom:71.100083px;}
.yf6{bottom:94.320099px;}
.y3a{bottom:102.060104px;}
.y141{bottom:103.140060px;}
.y16b{bottom:104.400055px;}
.y193{bottom:111.060036px;}
.yf5{bottom:115.380066px;}
.y119{bottom:117.360077px;}
.y140{bottom:123.300041px;}
.y39{bottom:126.720085px;}
.y16a{bottom:129.060036px;}
.y192{bottom:131.220085px;}
.yf4{bottom:132.120072px;}
.yc1{bottom:134.100083px;}
.y118{bottom:142.920043px;}
.yf3{bottom:143.100083px;}
.y13f{bottom:143.460091px;}
.y169{bottom:149.220085px;}
.yc0{bottom:150.840088px;}
.y191{bottom:155.880066px;}
.y13e{bottom:163.620072px;}
.yf2{bottom:165.240074px;}
.ybf{bottom:167.580093px;}
.y117{bottom:168.480079px;}
.y168{bottom:169.380066px;}
.y190{bottom:180.540047px;}
.yf1{bottom:181.440033px;}
.ybe{bottom:182.700096px;}
.y13d{bottom:183.780052px;}
.y38{bottom:187.560036px;}
.y167{bottom:189.540047px;}
.y116{bottom:193.860077px;}
.yf0{bottom:199.440033px;}
.ybd{bottom:202.500068px;}
.y18f{bottom:205.200096px;}
.y13c{bottom:208.440033px;}
.y37{bottom:209.700096px;}
.yef{bottom:212.940033px;}
.y115{bottom:218.520058px;}
.ybc{bottom:218.700096px;}
.y18e{bottom:225.360077px;}
.y13b{bottom:228.600083px;}
.yee{bottom:230.940033px;}
.y166{bottom:234.360077px;}
.ybb{bottom:236.700096px;}
.y18d{bottom:245.520058px;}
.y36{bottom:247.860077px;}
.y13a{bottom:248.760064px;}
.yed{bottom:251.640060px;}
.y165{bottom:254.520058px;}
.y114{bottom:256.140060px;}
.yba{bottom:257.400055px;}
.yec{bottom:265.320099px;}
.y18c{bottom:265.500068px;}
.y139{bottom:268.740074px;}
.yb9{bottom:270.900055px;}
.y164{bottom:274.500068px;}
.y35{bottom:282.060036px;}
.yeb{bottom:283.320099px;}
.y18b{bottom:285.660049px;}
.yb8{bottom:288.900055px;}
.y163{bottom:294.660049px;}
.yea{bottom:298.800041px;}
.y34{bottom:306.720085px;}
.y18a{bottom:310.320099px;}
.yb7{bottom:310.500068px;}
.y138{bottom:313.560036px;}
.y162{bottom:314.820099px;}
.y189{bottom:330.480079px;}
.y113{bottom:331.020058px;}
.ye9{bottom:333.360077px;}
.yb6{bottom:333.720085px;}
.y161{bottom:334.980079px;}
.y33{bottom:339.300041px;}
.y76{bottom:343.980079px;}
.y188{bottom:350.640060px;}
.ye8{bottom:353.520058px;}
.y1ab{bottom:354.060036px;}
.y160{bottom:355.140060px;}
.y137{bottom:358.380066px;}
.y92{bottom:360.180039px;}
.y31{bottom:364.500068px;}
.y75{bottom:368.640060px;}
.y187{bottom:370.800041px;}
.y32{bottom:372.420043px;}
.ye7{bottom:373.680039px;}
.y15f{bottom:375.300041px;}
.y1aa{bottom:378.720085px;}
.y136{bottom:383.040047px;}
.yb5{bottom:384.120072px;}
.y91{bottom:384.840088px;}
.y112{bottom:385.020058px;}
.y186{bottom:390.960091px;}
.y74{bottom:393.300041px;}
.y2e{bottom:393.660049px;}
.ye6{bottom:393.840088px;}
.y15e{bottom:399.960091px;}
.y30{bottom:401.400055px;}
.y135{bottom:403.200096px;}
.y1a9{bottom:403.380066px;}
.yb4{bottom:404.280052px;}
.y111{bottom:405.180039px;}
.y185{bottom:411.120072px;}
.y73{bottom:413.460091px;}
.ye5{bottom:414.000068px;}
.y90{bottom:415.080093px;}
.y15d{bottom:420.120072px;}
.y2b{bottom:422.640060px;}
.y134{bottom:423.360077px;}
.yb3{bottom:424.440033px;}
.y110{bottom:425.340088px;}
.y1a8{bottom:428.040047px;}
.y2d{bottom:430.560036px;}
.y72{bottom:433.440033px;}
.ye4{bottom:434.160049px;}
.y184{bottom:435.780052px;}
.y15c{bottom:440.280052px;}
.y133{bottom:443.520058px;}
.yb2{bottom:444.600083px;}
.y8f{bottom:445.320099px;}
.y1a7{bottom:452.700096px;}
.y71{bottom:453.600083px;}
.ye3{bottom:454.320099px;}
.y183{bottom:460.260064px;}
.y2a{bottom:460.800041px;}
.y132{bottom:463.500068px;}
.yb1{bottom:464.760064px;}
.y10f{bottom:465.480079px;}
.ye2{bottom:474.300041px;}
.y8e{bottom:475.560036px;}
.y1a6{bottom:477.360077px;}
.y70{bottom:478.260064px;}
.yb0{bottom:484.740074px;}
.y182{bottom:484.920043px;}
.y10e{bottom:485.640060px;}
.y131{bottom:488.160049px;}
.y15b{bottom:489.420043px;}
.y29{bottom:492.840088px;}
.ye1{bottom:494.460091px;}
.y1a5{bottom:502.020058px;}
.y6f{bottom:502.920043px;}
.yaf{bottom:504.900055px;}
.y181{bottom:505.080093px;}
.y8d{bottom:505.800041px;}
.y130{bottom:512.820099px;}
.y15a{bottom:514.080093px;}
.ye0{bottom:514.620072px;}
.y10d{bottom:523.260064px;}
.yae{bottom:525.060036px;}
.y180{bottom:525.240074px;}
.y1a4{bottom:526.680039px;}
.y6e{bottom:527.580093px;}
.y28{bottom:530.460091px;}
.y12f{bottom:532.980079px;}
.y159{bottom:534.240074px;}
.ydf{bottom:534.780052px;}
.y8c{bottom:536.220085px;}
.yad{bottom:545.220085px;}
.y17f{bottom:545.400055px;}
.y1a3{bottom:546.840088px;}
.y6d{bottom:547.740074px;}
.y12e{bottom:553.140060px;}
.y158{bottom:554.400055px;}
.yde{bottom:554.940033px;}
.yac{bottom:565.380066px;}
.y17e{bottom:565.560036px;}
.y8b{bottom:566.460091px;}
.y27{bottom:567.900055px;}
.y10c{bottom:571.500068px;}
.y6c{bottom:572.400055px;}
.y12d{bottom:573.300041px;}
.y157{bottom:574.560036px;}
.ydd{bottom:575.100083px;}
.yab{bottom:585.540047px;}
.y17d{bottom:585.720085px;}
.y10b{bottom:591.660049px;}
.y12c{bottom:593.460091px;}
.ydc{bottom:595.260064px;}
.y8a{bottom:596.700096px;}
.y6b{bottom:597.060036px;}
.y156{bottom:599.220085px;}
.y26{bottom:605.520058px;}
.yaa{bottom:605.700096px;}
.y17c{bottom:605.880066px;}
.y10a{bottom:611.820099px;}
.ydb{bottom:615.420043px;}
.y1a2{bottom:616.140060px;}
.y6a{bottom:617.220085px;}
.y155{bottom:619.380066px;}
.ya9{bottom:625.860077px;}
.y17b{bottom:626.040047px;}
.y89{bottom:626.940033px;}
.y12b{bottom:631.080093px;}
.y109{bottom:631.980079px;}
.yda{bottom:635.580093px;}
.y1a1{bottom:636.300041px;}
.y69{bottom:637.380066px;}
.y154{bottom:639.540047px;}
.y25{bottom:643.140060px;}
.ya8{bottom:646.020058px;}
.y17a{bottom:646.200096px;}
.y108{bottom:652.140060px;}
.yd9{bottom:655.740074px;}
.y88{bottom:657.180039px;}
.y68{bottom:657.360077px;}
.y153{bottom:659.700096px;}
.y1a0{bottom:660.960091px;}
.ya7{bottom:666.180039px;}
.y179{bottom:666.360077px;}
.y107{bottom:672.300041px;}
.yd8{bottom:675.720085px;}
.y87{bottom:677.340088px;}
.y12a{bottom:679.320099px;}
.y152{bottom:679.860077px;}
.y24{bottom:680.580093px;}
.y67{bottom:682.020058px;}
.y19f{bottom:685.620072px;}
.ya6{bottom:686.160049px;}
.y178{bottom:690.840054px;}
.y106{bottom:692.460056px;}
.yd7{bottom:695.880066px;}
.y151{bottom:699.840054px;}
.y129{bottom:703.980079px;}
.ya5{bottom:706.320065px;}
.y66{bottom:706.680073px;}
.y86{bottom:707.580059px;}
.y19e{bottom:710.280052px;}
.y105{bottom:712.440067px;}
.y177{bottom:715.500068px;}
.yd6{bottom:716.040081px;}
.y23{bottom:718.200061px;}
.y150{bottom:720.000068px;}
.ya4{bottom:726.480079px;}
.y85{bottom:727.740074px;}
.y128{bottom:728.460056px;}
.y19d{bottom:730.440067px;}
.y65{bottom:731.340054px;}
.y104{bottom:735.660049px;}
.yd5{bottom:736.200061px;}
.y15{bottom:736.920078px;}
.y48{bottom:739.080059px;}
.y14f{bottom:740.160049px;}
.ya3{bottom:746.640060px;}
.y84{bottom:747.900055px;}
.y22{bottom:752.760064px;}
.y127{bottom:753.120072px;}
.y64{bottom:756.000068px;}
.yd4{bottom:756.360077px;}
.y47{bottom:759.240074px;}
.y103{bottom:759.780052px;}
.y14e{bottom:760.320065px;}
.y56{bottom:763.920078px;}
.ya2{bottom:766.800076px;}
.y19c{bottom:768.060070px;}
.y14{bottom:769.860077px;}
.y83{bottom:773.640060px;}
.yd3{bottom:776.520058px;}
.y21{bottom:777.240074px;}
.y126{bottom:777.780052px;}
.y82{bottom:778.140060px;}
.y46{bottom:779.400055px;}
.y176{bottom:780.480079px;}
.y63{bottom:780.660049px;}
.y102{bottom:782.820065px;}
.y14d{bottom:784.980079px;}
.ya1{bottom:786.960056px;}
.y55{bottom:788.580059px;}
.yd2{bottom:796.680073px;}
.y45{bottom:799.560070px;}
.y20{bottom:801.900055px;}
.y125{bottom:802.440067px;}
.y13{bottom:802.800076px;}
.y14c{bottom:805.140060px;}
.y62{bottom:805.320065px;}
.y101{bottom:806.940067px;}
.ya0{bottom:807.120072px;}
.y81{bottom:808.380066px;}
.y19b{bottom:816.300076px;}
.yd1{bottom:816.840054px;}
.y54{bottom:817.020058px;}
.y44{bottom:819.720051px;}
.y14b{bottom:825.300076px;}
.y61{bottom:825.480079px;}
.y1f{bottom:826.560070px;}
.y124{bottom:827.100083px;}
.y9f{bottom:827.280052px;}
.y80{bottom:828.540081px;}
.y100{bottom:830.880066px;}
.yd0{bottom:837.000068px;}
.y43{bottom:839.880066px;}
.y19a{bottom:840.960056px;}
.y53{bottom:844.380066px;}
.y14a{bottom:845.460056px;}
.y9e{bottom:847.440067px;}
.y60{bottom:850.140060px;}
.y1e{bottom:851.580059px;}
.yff{bottom:855.000068px;}
.y17{bottom:856.440067px;}
.ycf{bottom:857.160049px;}
.y7f{bottom:858.780052px;}
.y42{bottom:860.040081px;}
.y199{bottom:861.120072px;}
.y12{bottom:863.100083px;}
.y123{bottom:864.720051px;}
.y149{bottom:865.620072px;}
.y9d{bottom:867.600083px;}
.y52{bottom:871.740074px;}
.y5f{bottom:874.620072px;}
.yce{bottom:877.140060px;}
.y7e{bottom:878.940067px;}
.y198{bottom:881.100083px;}
.y148{bottom:885.600083px;}
.y9c{bottom:887.580059px;}
.y11{bottom:887.760064px;}
.y175{bottom:890.100083px;}
.ycd{bottom:897.300076px;}
.y51{bottom:898.920078px;}
.yfe{bottom:899.100083px;}
.y5e{bottom:899.280052px;}
.y41{bottom:900.540081px;}
.y197{bottom:901.260064px;}
.y147{bottom:905.760064px;}
.y9b{bottom:907.740074px;}
.y7d{bottom:909.180073px;}
.y174{bottom:910.260064px;}
.y10{bottom:912.240074px;}
.y122{bottom:912.960056px;}
.ycc{bottom:917.460056px;}
.yfd{bottom:919.260064px;}
.y196{bottom:921.420078px;}
.y50{bottom:921.780052px;}
.y5d{bottom:923.940067px;}
.y1d{bottom:924.120072px;}
.y146{bottom:925.920078px;}
.y9a{bottom:927.900055px;}
.y173{bottom:930.420078px;}
.y16{bottom:934.020058px;}
.yf{bottom:936.900055px;}
.ycb{bottom:937.620072px;}
.yfc{bottom:939.420078px;}
.y7c{bottom:939.600083px;}
.y145{bottom:946.080059px;}
.y99{bottom:948.060070px;}
.y5c{bottom:948.600083px;}
.y4f{bottom:949.140060px;}
.y172{bottom:950.580059px;}
.y40{bottom:953.280053px;}
.yca{bottom:957.780053px;}
.yfb{bottom:959.580059px;}
.ye{bottom:961.560070px;}
.y121{bottom:963.000068px;}
.y144{bottom:966.240074px;}
.y98{bottom:968.220051px;}
.y7b{bottom:969.840054px;}
.y3f{bottom:972.540081px;}
.y5b{bottom:973.260064px;}
.y171{bottom:975.240074px;}
.y4e{bottom:976.500068px;}
.yc9{bottom:977.940067px;}
.yfa{bottom:979.740074px;}
.yd{bottom:986.220068px;}
.y195{bottom:986.400072px;}
.y97{bottom:988.380066px;}
.y120{bottom:988.560070px;}
.y143{bottom:990.900072px;}
.y170{bottom:995.400072px;}
.y5a{bottom:997.920061px;}
.yc8{bottom:998.100065px;}
.yf9{bottom:999.900072px;}
.y7a{bottom:1000.080059px;}
.y4d{bottom:1003.680073px;}
.y96{bottom:1008.540064px;}
.yc{bottom:1010.880066px;}
.y194{bottom:1011.060070px;}
.y11f{bottom:1014.120072px;}
.y142{bottom:1015.560070px;}
.yc7{bottom:1018.440067px;}
.yf8{bottom:1020.060070px;}
.y1c{bottom:1022.580059px;}
.y95{bottom:1028.700061px;}
.y79{bottom:1030.320065px;}
.y4c{bottom:1031.040064px;}
.yb{bottom:1035.540064px;}
.y16f{bottom:1035.720068px;}
.yc6{bottom:1039.500068px;}
.y11e{bottom:1039.680073px;}
.yf7{bottom:1040.220068px;}
.y3d{bottom:1047.060070px;}
.y59{bottom:1047.240074px;}
.y94{bottom:1048.860060px;}
.y16e{bottom:1055.880066px;}
.y4b{bottom:1058.400072px;}
.ya{bottom:1060.200061px;}
.yc5{bottom:1060.380066px;}
.y78{bottom:1060.560070px;}
.y11d{bottom:1065.240074px;}
.y58{bottom:1071.900072px;}
.y16d{bottom:1076.040064px;}
.y3c{bottom:1079.820065px;}
.yc4{bottom:1080.540064px;}
.y9{bottom:1084.860060px;}
.y93{bottom:1086.480063px;}
.y4a{bottom:1089.360060px;}
.y11c{bottom:1090.620072px;}
.y77{bottom:1090.800058px;}
.y16c{bottom:1096.020058px;}
.y57{bottom:1096.560070px;}
.yc3{bottom:1100.520058px;}
.y8{bottom:1109.520058px;}
.y11b{bottom:1115.280069px;}
.y3b{bottom:1116.180073px;}
.yc2{bottom:1120.680064px;}
.y7{bottom:1134.180064px;}
.y49{bottom:1137.060070px;}
.y11a{bottom:1139.940067px;}
.y1b{bottom:1140.840063px;}
.y4{bottom:1162.620063px;}
.y18{bottom:1184.400064px;}
.y1{bottom:1186.020066px;}
.y3{bottom:1189.980063px;}
.h2{height:18.180000px;}
.h18{height:19.979993px;}
.h1c{height:20.340019px;}
.h14{height:21.600015px;}
.h11{height:21.779983px;}
.h15{height:21.779984px;}
.h22{height:32.878018px;}
.h21{height:38.672649px;}
.h1e{height:42.126774px;}
.h24{height:42.127044px;}
.h1f{height:42.127048px;}
.h20{height:45.118158px;}
.h19{height:49.396023px;}
.h1d{height:54.142659px;}
.h3{height:59.441261px;}
.h1a{height:63.346897px;}
.h12{height:63.525714px;}
.h4{height:65.886904px;}
.h5{height:67.827608px;}
.h23{height:68.751435px;}
.h13{height:71.615971px;}
.ha{height:73.725425px;}
.hd{height:73.775886px;}
.hb{height:73.776021px;}
.h10{height:74.495760px;}
.hc{height:74.495764px;}
.he{height:74.496034px;}
.hf{height:74.496039px;}
.h17{height:77.375827px;}
.h1b{height:80.707018px;}
.h8{height:86.258729px;}
.h16{height:87.456061px;}
.h9{height:92.157002px;}
.h6{height:107.423950px;}
.h7{height:294.902153px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.wa{width:3.779984px;}
.wd{width:4.500000px;}
.w8{width:5.039996px;}
.w2{width:7.020006px;}
.wc{width:8.279984px;}
.w4{width:9.180003px;}
.wb{width:51.300040px;}
.w7{width:56.700010px;}
.w3{width:68.039996px;}
.w5{width:98.639992px;}
.w6{width:121.680005px;}
.w9{width:444.960005px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:11.340000px;}
.xb{left:79.739997px;}
.x1{left:84.959997px;}
.x1c{left:86.219999px;}
.x11{left:93.060001px;}
.xc{left:94.500000px;}
.x1e{left:109.980002px;}
.x1b{left:111.959997px;}
.x1a{left:120.599997px;}
.x19{left:138.959997px;}
.x12{left:151.379998px;}
.xd{left:162.539996px;}
.x13{left:165.419992px;}
.x4{left:192.960005px;}
.x10{left:216.180005px;}
.x14{left:222.120002px;}
.x15{left:227.159998px;}
.x8{left:235.080008px;}
.x7{left:285.840002px;}
.xf{left:298.800007px;}
.xe{left:300.240006px;}
.xa{left:321.480011px;}
.x9{left:384.480011px;}
.x2{left:446.399987px;}
.x6{left:592.200027px;}
.x16{left:672.120002px;}
.x17{left:675.899987px;}
.x18{left:727.200027px;}
.x1f{left:791.100014px;}
.x3{left:799.559967px;}
.x1d{left:802.259994px;}
.x20{left:807.840019px;}
@media print{
.v5{vertical-align:-21.119992pt;}
.v6{vertical-align:-18.560056pt;}
.v7{vertical-align:-10.880124pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.920044pt;}
.v3{vertical-align:5.119872pt;}
.v2{vertical-align:14.080080pt;}
.v4{vertical-align:21.119996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000272pt;}
.lsd{letter-spacing:0.004370pt;}
.ls6{letter-spacing:0.004773pt;}
.lsb{letter-spacing:0.023448pt;}
.ls4{letter-spacing:0.038501pt;}
.ls1c{letter-spacing:0.044407pt;}
.lsa{letter-spacing:0.109008pt;}
.lse{letter-spacing:0.132550pt;}
.ls11{letter-spacing:0.132578pt;}
.ls15{letter-spacing:0.154400pt;}
.ls10{letter-spacing:0.154432pt;}
.ls1{letter-spacing:0.794232pt;}
.lsf{letter-spacing:0.794448pt;}
.ls16{letter-spacing:2.052562pt;}
.ls14{letter-spacing:3.972578pt;}
.ls1d{letter-spacing:10.885182pt;}
.ls13{letter-spacing:12.292554pt;}
.ls1b{letter-spacing:14.212598pt;}
.ls1e{letter-spacing:34.889559pt;}
.ls12{letter-spacing:34.889587pt;}
.ls19{letter-spacing:37.765186pt;}
.ls17{letter-spacing:52.809571pt;}
.ls1a{letter-spacing:56.965198pt;}
.lsc{letter-spacing:56.965202pt;}
.ls18{letter-spacing:61.769563pt;}
.ls2{letter-spacing:72.446278pt;}
.ls8{letter-spacing:76.932598pt;}
.ls9{letter-spacing:94.852610pt;}
.ls3{letter-spacing:588.666242pt;}
.ls5{letter-spacing:861.055473pt;}
.ws7{word-spacing:-58.882400pt;}
.ws4{word-spacing:-53.122000pt;}
.ws1{word-spacing:-13.307422pt;}
.ws8{word-spacing:-12.049979pt;}
.ws3{word-spacing:-12.005572pt;}
.ws2{word-spacing:-8.389445pt;}
.ws5{word-spacing:-7.810858pt;}
.ws6{word-spacing:-6.075115pt;}
.ws0{word-spacing:0.000000pt;}
._36{margin-left:-10.510408pt;}
._17{margin-left:-9.017767pt;}
._15{margin-left:-7.057868pt;}
._16{margin-left:-5.297919pt;}
._7{margin-left:-3.696144pt;}
._18{margin-left:-2.222545pt;}
._2{margin-left:-1.225171pt;}
._1{width:1.285548pt;}
._5{width:2.655855pt;}
._6{width:3.566680pt;}
._8{width:4.505678pt;}
._32{width:5.610233pt;}
._4{width:6.575497pt;}
._1f{width:7.890472pt;}
._33{width:8.817720pt;}
._1d{width:9.732415pt;}
._1e{width:11.094577pt;}
._3b{width:12.112989pt;}
._34{width:14.242871pt;}
._35{width:15.254045pt;}
._41{width:16.681693pt;}
._1c{width:17.647929pt;}
._38{width:18.570382pt;}
._39{width:20.003455pt;}
._3e{width:21.274257pt;}
._3d{width:22.375542pt;}
._40{width:23.438300pt;}
._3c{width:26.791952pt;}
._3a{width:28.905765pt;}
._20{width:30.159548pt;}
._0{width:35.004188pt;}
._3{width:36.215108pt;}
._37{width:38.668486pt;}
._3f{width:40.377916pt;}
._31{width:44.353666pt;}
._c{width:82.913949pt;}
._12{width:85.973479pt;}
._1b{width:104.265224pt;}
._14{width:129.783293pt;}
._1a{width:134.059718pt;}
._a{width:135.201520pt;}
._19{width:168.599493pt;}
._f{width:179.073983pt;}
._e{width:194.032886pt;}
._9{width:387.582846pt;}
._d{width:419.320460pt;}
._b{width:444.698774pt;}
._10{width:513.721713pt;}
._11{width:599.227059pt;}
._21{width:693.952475pt;}
._13{width:754.519074pt;}
._2d{width:1099.939793pt;}
._24{width:1118.269930pt;}
._30{width:1143.075981pt;}
._28{width:1144.290200pt;}
._23{width:1155.079020pt;}
._22{width:1158.149185pt;}
._25{width:1160.548094pt;}
._27{width:1162.283144pt;}
._2b{width:1173.300133pt;}
._26{width:1186.989601pt;}
._2f{width:1190.778775pt;}
._29{width:1193.904603pt;}
._2a{width:1196.768449pt;}
._2c{width:1209.708547pt;}
._2e{width:1211.486289pt;}
.fsd{font-size:26.881040pt;}
.fsc{font-size:34.561320pt;}
.fs9{font-size:37.121440pt;}
.fsb{font-size:40.321600pt;}
.fs8{font-size:42.881600pt;}
.fs0{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fse{font-size:61.442400pt;}
.fs7{font-size:64.002404pt;}
.fs4{font-size:74.882796pt;}
.fs6{font-size:80.003196pt;}
.fsa{font-size:85.123200pt;}
.fs2{font-size:96.003600pt;}
.fs5{font-size:192.007600pt;}
.fs3{font-size:256.010008pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:3.359986pt;}
.y2{bottom:3.519997pt;}
.y2c{bottom:3.520020pt;}
.y3e{bottom:4.000000pt;}
.y6{bottom:40.800049pt;}
.y1a{bottom:41.280030pt;}
.y5{bottom:61.600098pt;}
.y19{bottom:63.200074pt;}
.yf6{bottom:83.840088pt;}
.y3a{bottom:90.720093pt;}
.y141{bottom:91.680054pt;}
.y16b{bottom:92.800049pt;}
.y193{bottom:98.720032pt;}
.yf5{bottom:102.560059pt;}
.y119{bottom:104.320069pt;}
.y140{bottom:109.600037pt;}
.y39{bottom:112.640076pt;}
.y16a{bottom:114.720032pt;}
.y192{bottom:116.640076pt;}
.yf4{bottom:117.440064pt;}
.yc1{bottom:119.200074pt;}
.y118{bottom:127.040039pt;}
.yf3{bottom:127.200074pt;}
.y13f{bottom:127.520081pt;}
.y169{bottom:132.640076pt;}
.yc0{bottom:134.080079pt;}
.y191{bottom:138.560059pt;}
.y13e{bottom:145.440064pt;}
.yf2{bottom:146.880066pt;}
.ybf{bottom:148.960083pt;}
.y117{bottom:149.760071pt;}
.y168{bottom:150.560059pt;}
.y190{bottom:160.480042pt;}
.yf1{bottom:161.280030pt;}
.ybe{bottom:162.400086pt;}
.y13d{bottom:163.360047pt;}
.y38{bottom:166.720032pt;}
.y167{bottom:168.480042pt;}
.y116{bottom:172.320069pt;}
.yf0{bottom:177.280030pt;}
.ybd{bottom:180.000061pt;}
.y18f{bottom:182.400086pt;}
.y13c{bottom:185.280030pt;}
.y37{bottom:186.400086pt;}
.yef{bottom:189.280030pt;}
.y115{bottom:194.240052pt;}
.ybc{bottom:194.400086pt;}
.y18e{bottom:200.320069pt;}
.y13b{bottom:203.200074pt;}
.yee{bottom:205.280030pt;}
.y166{bottom:208.320069pt;}
.ybb{bottom:210.400086pt;}
.y18d{bottom:218.240052pt;}
.y36{bottom:220.320069pt;}
.y13a{bottom:221.120057pt;}
.yed{bottom:223.680054pt;}
.y165{bottom:226.240052pt;}
.y114{bottom:227.680054pt;}
.yba{bottom:228.800049pt;}
.yec{bottom:235.840088pt;}
.y18c{bottom:236.000061pt;}
.y139{bottom:238.880066pt;}
.yb9{bottom:240.800049pt;}
.y164{bottom:244.000061pt;}
.y35{bottom:250.720032pt;}
.yeb{bottom:251.840088pt;}
.y18b{bottom:253.920044pt;}
.yb8{bottom:256.800049pt;}
.y163{bottom:261.920044pt;}
.yea{bottom:265.600037pt;}
.y34{bottom:272.640076pt;}
.y18a{bottom:275.840088pt;}
.yb7{bottom:276.000061pt;}
.y138{bottom:278.720032pt;}
.y162{bottom:279.840088pt;}
.y189{bottom:293.760071pt;}
.y113{bottom:294.240052pt;}
.ye9{bottom:296.320069pt;}
.yb6{bottom:296.640076pt;}
.y161{bottom:297.760071pt;}
.y33{bottom:301.600037pt;}
.y76{bottom:305.760071pt;}
.y188{bottom:311.680054pt;}
.ye8{bottom:314.240052pt;}
.y1ab{bottom:314.720032pt;}
.y160{bottom:315.680054pt;}
.y137{bottom:318.560059pt;}
.y92{bottom:320.160035pt;}
.y31{bottom:324.000061pt;}
.y75{bottom:327.680054pt;}
.y187{bottom:329.600037pt;}
.y32{bottom:331.040039pt;}
.ye7{bottom:332.160035pt;}
.y15f{bottom:333.600037pt;}
.y1aa{bottom:336.640076pt;}
.y136{bottom:340.480042pt;}
.yb5{bottom:341.440064pt;}
.y91{bottom:342.080079pt;}
.y112{bottom:342.240052pt;}
.y186{bottom:347.520081pt;}
.y74{bottom:349.600037pt;}
.y2e{bottom:349.920044pt;}
.ye6{bottom:350.080079pt;}
.y15e{bottom:355.520081pt;}
.y30{bottom:356.800049pt;}
.y135{bottom:358.400086pt;}
.y1a9{bottom:358.560059pt;}
.yb4{bottom:359.360047pt;}
.y111{bottom:360.160035pt;}
.y185{bottom:365.440064pt;}
.y73{bottom:367.520081pt;}
.ye5{bottom:368.000061pt;}
.y90{bottom:368.960083pt;}
.y15d{bottom:373.440064pt;}
.y2b{bottom:375.680054pt;}
.y134{bottom:376.320069pt;}
.yb3{bottom:377.280030pt;}
.y110{bottom:378.080079pt;}
.y1a8{bottom:380.480042pt;}
.y2d{bottom:382.720032pt;}
.y72{bottom:385.280030pt;}
.ye4{bottom:385.920044pt;}
.y184{bottom:387.360047pt;}
.y15c{bottom:391.360047pt;}
.y133{bottom:394.240052pt;}
.yb2{bottom:395.200074pt;}
.y8f{bottom:395.840088pt;}
.y1a7{bottom:402.400086pt;}
.y71{bottom:403.200074pt;}
.ye3{bottom:403.840088pt;}
.y183{bottom:409.120057pt;}
.y2a{bottom:409.600037pt;}
.y132{bottom:412.000061pt;}
.yb1{bottom:413.120057pt;}
.y10f{bottom:413.760071pt;}
.ye2{bottom:421.600037pt;}
.y8e{bottom:422.720032pt;}
.y1a6{bottom:424.320069pt;}
.y70{bottom:425.120057pt;}
.yb0{bottom:430.880066pt;}
.y182{bottom:431.040039pt;}
.y10e{bottom:431.680054pt;}
.y131{bottom:433.920044pt;}
.y15b{bottom:435.040039pt;}
.y29{bottom:438.080079pt;}
.ye1{bottom:439.520081pt;}
.y1a5{bottom:446.240052pt;}
.y6f{bottom:447.040039pt;}
.yaf{bottom:448.800049pt;}
.y181{bottom:448.960083pt;}
.y8d{bottom:449.600037pt;}
.y130{bottom:455.840088pt;}
.y15a{bottom:456.960083pt;}
.ye0{bottom:457.440064pt;}
.y10d{bottom:465.120057pt;}
.yae{bottom:466.720032pt;}
.y180{bottom:466.880066pt;}
.y1a4{bottom:468.160035pt;}
.y6e{bottom:468.960083pt;}
.y28{bottom:471.520081pt;}
.y12f{bottom:473.760071pt;}
.y159{bottom:474.880066pt;}
.ydf{bottom:475.360047pt;}
.y8c{bottom:476.640076pt;}
.yad{bottom:484.640076pt;}
.y17f{bottom:484.800049pt;}
.y1a3{bottom:486.080079pt;}
.y6d{bottom:486.880066pt;}
.y12e{bottom:491.680054pt;}
.y158{bottom:492.800049pt;}
.yde{bottom:493.280030pt;}
.yac{bottom:502.560059pt;}
.y17e{bottom:502.720032pt;}
.y8b{bottom:503.520081pt;}
.y27{bottom:504.800049pt;}
.y10c{bottom:508.000061pt;}
.y6c{bottom:508.800049pt;}
.y12d{bottom:509.600037pt;}
.y157{bottom:510.720032pt;}
.ydd{bottom:511.200074pt;}
.yab{bottom:520.480042pt;}
.y17d{bottom:520.640076pt;}
.y10b{bottom:525.920044pt;}
.y12c{bottom:527.520081pt;}
.ydc{bottom:529.120057pt;}
.y8a{bottom:530.400086pt;}
.y6b{bottom:530.720032pt;}
.y156{bottom:532.640076pt;}
.y26{bottom:538.240052pt;}
.yaa{bottom:538.400086pt;}
.y17c{bottom:538.560059pt;}
.y10a{bottom:543.840088pt;}
.ydb{bottom:547.040039pt;}
.y1a2{bottom:547.680054pt;}
.y6a{bottom:548.640076pt;}
.y155{bottom:550.560059pt;}
.ya9{bottom:556.320069pt;}
.y17b{bottom:556.480042pt;}
.y89{bottom:557.280030pt;}
.y12b{bottom:560.960083pt;}
.y109{bottom:561.760071pt;}
.yda{bottom:564.960083pt;}
.y1a1{bottom:565.600037pt;}
.y69{bottom:566.560059pt;}
.y154{bottom:568.480042pt;}
.y25{bottom:571.680054pt;}
.ya8{bottom:574.240052pt;}
.y17a{bottom:574.400086pt;}
.y108{bottom:579.680054pt;}
.yd9{bottom:582.880066pt;}
.y88{bottom:584.160035pt;}
.y68{bottom:584.320069pt;}
.y153{bottom:586.400086pt;}
.y1a0{bottom:587.520081pt;}
.ya7{bottom:592.160035pt;}
.y179{bottom:592.320069pt;}
.y107{bottom:597.600037pt;}
.yd8{bottom:600.640076pt;}
.y87{bottom:602.080079pt;}
.y12a{bottom:603.840088pt;}
.y152{bottom:604.320069pt;}
.y24{bottom:604.960083pt;}
.y67{bottom:606.240052pt;}
.y19f{bottom:609.440064pt;}
.ya6{bottom:609.920044pt;}
.y178{bottom:614.080048pt;}
.y106{bottom:615.520050pt;}
.yd7{bottom:618.560059pt;}
.y151{bottom:622.080048pt;}
.y129{bottom:625.760071pt;}
.ya5{bottom:627.840058pt;}
.y66{bottom:628.160065pt;}
.y86{bottom:628.960053pt;}
.y19e{bottom:631.360047pt;}
.y105{bottom:633.280060pt;}
.y177{bottom:636.000061pt;}
.yd6{bottom:636.480072pt;}
.y23{bottom:638.400055pt;}
.y150{bottom:640.000061pt;}
.ya4{bottom:645.760071pt;}
.y85{bottom:646.880066pt;}
.y128{bottom:647.520050pt;}
.y19d{bottom:649.280060pt;}
.y65{bottom:650.080048pt;}
.y104{bottom:653.920044pt;}
.yd5{bottom:654.400055pt;}
.y15{bottom:655.040070pt;}
.y48{bottom:656.960053pt;}
.y14f{bottom:657.920044pt;}
.ya3{bottom:663.680054pt;}
.y84{bottom:664.800049pt;}
.y22{bottom:669.120057pt;}
.y127{bottom:669.440064pt;}
.y64{bottom:672.000061pt;}
.yd4{bottom:672.320069pt;}
.y47{bottom:674.880066pt;}
.y103{bottom:675.360047pt;}
.y14e{bottom:675.840058pt;}
.y56{bottom:679.040070pt;}
.ya2{bottom:681.600068pt;}
.y19c{bottom:682.720063pt;}
.y14{bottom:684.320069pt;}
.y83{bottom:687.680054pt;}
.yd3{bottom:690.240052pt;}
.y21{bottom:690.880066pt;}
.y126{bottom:691.360047pt;}
.y82{bottom:691.680054pt;}
.y46{bottom:692.800049pt;}
.y176{bottom:693.760071pt;}
.y63{bottom:693.920044pt;}
.y102{bottom:695.840058pt;}
.y14d{bottom:697.760071pt;}
.ya1{bottom:699.520050pt;}
.y55{bottom:700.960053pt;}
.yd2{bottom:708.160065pt;}
.y45{bottom:710.720063pt;}
.y20{bottom:712.800049pt;}
.y125{bottom:713.280060pt;}
.y13{bottom:713.600068pt;}
.y14c{bottom:715.680054pt;}
.y62{bottom:715.840058pt;}
.y101{bottom:717.280060pt;}
.ya0{bottom:717.440064pt;}
.y81{bottom:718.560059pt;}
.y19b{bottom:725.600068pt;}
.yd1{bottom:726.080048pt;}
.y54{bottom:726.240052pt;}
.y44{bottom:728.640046pt;}
.y14b{bottom:733.600068pt;}
.y61{bottom:733.760071pt;}
.y1f{bottom:734.720063pt;}
.y124{bottom:735.200074pt;}
.y9f{bottom:735.360047pt;}
.y80{bottom:736.480072pt;}
.y100{bottom:738.560059pt;}
.yd0{bottom:744.000061pt;}
.y43{bottom:746.560059pt;}
.y19a{bottom:747.520050pt;}
.y53{bottom:750.560059pt;}
.y14a{bottom:751.520050pt;}
.y9e{bottom:753.280060pt;}
.y60{bottom:755.680054pt;}
.y1e{bottom:756.960053pt;}
.yff{bottom:760.000061pt;}
.y17{bottom:761.280060pt;}
.ycf{bottom:761.920044pt;}
.y7f{bottom:763.360047pt;}
.y42{bottom:764.480072pt;}
.y199{bottom:765.440064pt;}
.y12{bottom:767.200074pt;}
.y123{bottom:768.640046pt;}
.y149{bottom:769.440064pt;}
.y9d{bottom:771.200074pt;}
.y52{bottom:774.880066pt;}
.y5f{bottom:777.440064pt;}
.yce{bottom:779.680054pt;}
.y7e{bottom:781.280060pt;}
.y198{bottom:783.200074pt;}
.y148{bottom:787.200074pt;}
.y9c{bottom:788.960053pt;}
.y11{bottom:789.120057pt;}
.y175{bottom:791.200074pt;}
.ycd{bottom:797.600068pt;}
.y51{bottom:799.040070pt;}
.yfe{bottom:799.200074pt;}
.y5e{bottom:799.360047pt;}
.y41{bottom:800.480072pt;}
.y197{bottom:801.120057pt;}
.y147{bottom:805.120057pt;}
.y9b{bottom:806.880066pt;}
.y7d{bottom:808.160065pt;}
.y174{bottom:809.120057pt;}
.y10{bottom:810.880066pt;}
.y122{bottom:811.520050pt;}
.ycc{bottom:815.520050pt;}
.yfd{bottom:817.120057pt;}
.y196{bottom:819.040070pt;}
.y50{bottom:819.360047pt;}
.y5d{bottom:821.280060pt;}
.y1d{bottom:821.440064pt;}
.y146{bottom:823.040070pt;}
.y9a{bottom:824.800049pt;}
.y173{bottom:827.040070pt;}
.y16{bottom:830.240052pt;}
.yf{bottom:832.800049pt;}
.ycb{bottom:833.440064pt;}
.yfc{bottom:835.040070pt;}
.y7c{bottom:835.200074pt;}
.y145{bottom:840.960053pt;}
.y99{bottom:842.720063pt;}
.y5c{bottom:843.200074pt;}
.y4f{bottom:843.680054pt;}
.y172{bottom:844.960053pt;}
.y40{bottom:847.360047pt;}
.yca{bottom:851.360047pt;}
.yfb{bottom:852.960053pt;}
.ye{bottom:854.720063pt;}
.y121{bottom:856.000061pt;}
.y144{bottom:858.880066pt;}
.y98{bottom:860.640046pt;}
.y7b{bottom:862.080048pt;}
.y3f{bottom:864.480072pt;}
.y5b{bottom:865.120057pt;}
.y171{bottom:866.880066pt;}
.y4e{bottom:868.000061pt;}
.yc9{bottom:869.280060pt;}
.yfa{bottom:870.880066pt;}
.yd{bottom:876.640061pt;}
.y195{bottom:876.800064pt;}
.y97{bottom:878.560059pt;}
.y120{bottom:878.720063pt;}
.y143{bottom:880.800064pt;}
.y170{bottom:884.800064pt;}
.y5a{bottom:887.040055pt;}
.yc8{bottom:887.200058pt;}
.yf9{bottom:888.800064pt;}
.y7a{bottom:888.960053pt;}
.y4d{bottom:892.160065pt;}
.y96{bottom:896.480057pt;}
.yc{bottom:898.560059pt;}
.y194{bottom:898.720063pt;}
.y11f{bottom:901.440064pt;}
.y142{bottom:902.720063pt;}
.yc7{bottom:905.280060pt;}
.yf8{bottom:906.720063pt;}
.y1c{bottom:908.960053pt;}
.y95{bottom:914.400055pt;}
.y79{bottom:915.840058pt;}
.y4c{bottom:916.480057pt;}
.yb{bottom:920.480057pt;}
.y16f{bottom:920.640061pt;}
.yc6{bottom:924.000061pt;}
.y11e{bottom:924.160065pt;}
.yf7{bottom:924.640061pt;}
.y3d{bottom:930.720063pt;}
.y59{bottom:930.880066pt;}
.y94{bottom:932.320054pt;}
.y16e{bottom:938.560059pt;}
.y4b{bottom:940.800064pt;}
.ya{bottom:942.400055pt;}
.yc5{bottom:942.560059pt;}
.y78{bottom:942.720063pt;}
.y11d{bottom:946.880066pt;}
.y58{bottom:952.800064pt;}
.y16d{bottom:956.480057pt;}
.y3c{bottom:959.840058pt;}
.yc4{bottom:960.480057pt;}
.y9{bottom:964.320054pt;}
.y93{bottom:965.760056pt;}
.y4a{bottom:968.320054pt;}
.y11c{bottom:969.440064pt;}
.y77{bottom:969.600052pt;}
.y16c{bottom:974.240052pt;}
.y57{bottom:974.720063pt;}
.yc3{bottom:978.240052pt;}
.y8{bottom:986.240052pt;}
.y11b{bottom:991.360062pt;}
.y3b{bottom:992.160065pt;}
.yc2{bottom:996.160057pt;}
.y7{bottom:1008.160057pt;}
.y49{bottom:1010.720063pt;}
.y11a{bottom:1013.280060pt;}
.y1b{bottom:1014.080056pt;}
.y4{bottom:1033.440056pt;}
.y18{bottom:1052.800057pt;}
.y1{bottom:1054.240059pt;}
.y3{bottom:1057.760056pt;}
.h2{height:16.160000pt;}
.h18{height:17.759994pt;}
.h1c{height:18.080017pt;}
.h14{height:19.200013pt;}
.h11{height:19.359985pt;}
.h15{height:19.359986pt;}
.h22{height:29.224905pt;}
.h21{height:34.375688pt;}
.h1e{height:37.446021pt;}
.h24{height:37.446261pt;}
.h1f{height:37.446265pt;}
.h20{height:40.105029pt;}
.h19{height:43.907576pt;}
.h1d{height:48.126808pt;}
.h3{height:52.836677pt;}
.h1a{height:56.308352pt;}
.h12{height:56.467302pt;}
.h4{height:58.566137pt;}
.h5{height:60.291207pt;}
.h23{height:61.112387pt;}
.h13{height:63.658641pt;}
.ha{height:65.533712pt;}
.hd{height:65.578565pt;}
.hb{height:65.578685pt;}
.h10{height:66.218453pt;}
.hc{height:66.218457pt;}
.he{height:66.218697pt;}
.hf{height:66.218701pt;}
.h17{height:68.778513pt;}
.h1b{height:71.739572pt;}
.h8{height:76.674425pt;}
.h16{height:77.738721pt;}
.h9{height:81.917335pt;}
.h6{height:95.487956pt;}
.h7{height:262.135247pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.wa{width:3.359986pt;}
.wd{width:4.000000pt;}
.w8{width:4.479996pt;}
.w2{width:6.240005pt;}
.wc{width:7.359986pt;}
.w4{width:8.160003pt;}
.wb{width:45.600036pt;}
.w7{width:50.400009pt;}
.w3{width:60.479996pt;}
.w5{width:87.679993pt;}
.w6{width:108.160004pt;}
.w9{width:395.520004pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:10.080000pt;}
.xb{left:70.879997pt;}
.x1{left:75.519997pt;}
.x1c{left:76.639999pt;}
.x11{left:82.720001pt;}
.xc{left:84.000000pt;}
.x1e{left:97.760002pt;}
.x1b{left:99.519997pt;}
.x1a{left:107.199997pt;}
.x19{left:123.519997pt;}
.x12{left:134.559998pt;}
.xd{left:144.479996pt;}
.x13{left:147.039993pt;}
.x4{left:171.520004pt;}
.x10{left:192.160004pt;}
.x14{left:197.440002pt;}
.x15{left:201.919998pt;}
.x8{left:208.960007pt;}
.x7{left:254.080002pt;}
.xf{left:265.600006pt;}
.xe{left:266.880005pt;}
.xa{left:285.760010pt;}
.x9{left:341.760010pt;}
.x2{left:396.799988pt;}
.x6{left:526.400024pt;}
.x16{left:597.440002pt;}
.x17{left:600.799988pt;}
.x18{left:646.400024pt;}
.x1f{left:703.200012pt;}
.x3{left:710.719971pt;}
.x1d{left:713.119995pt;}
.x20{left:718.080017pt;}
}




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