
    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_a27079a313f1999323eb25e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_906ef0fcbd81ce8adba1996c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107910;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_105fd3fe7cb0182903f356e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.188000;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_9ad6ff7e6b98d15b685ce4ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_525b2b08a04b2cdbab768278.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_00ae0a3ef92ea722ac9c9d5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.894000;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_3c3c981d555d23e173c5ed52.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109863;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_199e8c01bc4f3209085ba793.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.934000;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_c8d8dac12a90a4b0acebcad0.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.022949;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_129a70ce5c54e69e3a910757.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249979,0.000000,0.000000,0.250000,0,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(0.268013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268013,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268014,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v6{vertical-align:-17.346000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.379486px;}
.v1{vertical-align:4.080539px;}
.v7{vertical-align:9.866068px;}
.v3{vertical-align:11.228614px;}
.v2{vertical-align:16.322154px;}
.v5{vertical-align:17.356548px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:2.991600px;}
.ls7{letter-spacing:2.997600px;}
.ls5{letter-spacing:11.361854px;}
.ls4{letter-spacing:11.702327px;}
.ls8{letter-spacing:17.263237px;}
.ls9{letter-spacing:18.626124px;}
.ls0{letter-spacing:19.038201px;}
.ls1{letter-spacing:19.926594px;}
.ls2{letter-spacing:20.606594px;}
.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;}
}
.ws9{word-spacing:-38.255400px;}
.ws2{word-spacing:-24.230394px;}
.ws4{word-spacing:-14.011436px;}
.ws7{word-spacing:-11.955150px;}
.ws0{word-spacing:-11.620260px;}
.wsa{word-spacing:-11.208832px;}
.ws3{word-spacing:-10.759500px;}
.ws6{word-spacing:-10.061328px;}
.ws8{word-spacing:-9.563850px;}
.ws1{word-spacing:-9.425322px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-17.343592px;}
._f{margin-left:-5.422856px;}
._e{margin-left:-4.265598px;}
._8{margin-left:-2.913673px;}
._6{margin-left:-1.674178px;}
._4{width:1.194882px;}
._2{width:2.404771px;}
._1{width:3.494180px;}
._c{width:4.614423px;}
._7{width:6.504706px;}
._3{width:8.240113px;}
._d{width:9.564120px;}
._b{width:11.056123px;}
._a{width:12.089048px;}
._10{width:15.135220px;}
._28{width:17.005739px;}
._11{width:20.318240px;}
._27{width:21.968170px;}
._0{width:23.369634px;}
._9{width:30.193927px;}
._12{width:52.310954px;}
._33{width:61.384615px;}
._2c{width:62.444289px;}
._16{width:64.640149px;}
._13{width:75.688309px;}
._18{width:79.934658px;}
._30{width:85.477866px;}
._2a{width:88.385276px;}
._2f{width:95.217691px;}
._2e{width:103.913143px;}
._15{width:107.440291px;}
._19{width:117.998781px;}
._36{width:141.533503px;}
._3a{width:143.985675px;}
._3c{width:149.995598px;}
._3d{width:151.227422px;}
._37{width:155.267192px;}
._39{width:163.071294px;}
._1f{width:190.244104px;}
._1b{width:191.261698px;}
._38{width:195.156098px;}
._3e{width:196.211947px;}
._3b{width:197.719209px;}
._1c{width:211.781894px;}
._1d{width:212.799488px;}
._17{width:217.569936px;}
._2b{width:221.357221px;}
._32{width:222.703811px;}
._31{width:232.263836px;}
._20{width:233.319685px;}
._29{width:243.457366px;}
._2d{width:252.160469px;}
._14{width:265.400663px;}
._1a{width:330.262694px;}
._1e{width:362.511996px;}
._21{width:394.887541px;}
._25{width:475.288915px;}
._23{width:496.826705px;}
._35{width:503.008778px;}
._34{width:522.660577px;}
._24{width:529.278761px;}
._22{width:556.784394px;}
._26{width:567.342884px;}
.fc2{color:rgb(33,150,209);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(46,116,163);}
.fsa{font-size:26.761800px;}
.fsb{font-size:33.472800px;}
.fs9{font-size:35.867400px;}
.fs4{font-size:38.255400px;}
.fs8{font-size:38.256000px;}
.fs5{font-size:41.842200px;}
.fs0{font-size:43.038000px;}
.fs3{font-size:44.327400px;}
.fs6{font-size:47.820600px;}
.fs2{font-size:63.362400px;}
.fs1{font-size:80.697000px;}
.fs7{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000732px;}
.y3a{bottom:47.430000px;}
.yb9{bottom:78.407503px;}
.y9b{bottom:78.407904px;}
.yef{bottom:78.408891px;}
.y162{bottom:78.416181px;}
.y91{bottom:78.491250px;}
.y5{bottom:79.140000px;}
.y4{bottom:93.495000px;}
.yb8{bottom:94.139285px;}
.y9a{bottom:94.139686px;}
.yee{bottom:94.140672px;}
.y161{bottom:94.147962px;}
.y3{bottom:105.630000px;}
.yb7{bottom:109.786185px;}
.y112{bottom:109.787573px;}
.y99{bottom:109.787782px;}
.y160{bottom:109.794863px;}
.y19b{bottom:119.828245px;}
.y38{bottom:119.905636px;}
.yed{bottom:125.519355px;}
.y98{bottom:125.519564px;}
.y15f{bottom:125.526645px;}
.y19a{bottom:131.819400px;}
.y37{bottom:134.192100px;}
.yb6{bottom:141.166063px;}
.y15e{bottom:141.174740px;}
.y111{bottom:141.932580px;}
.y199{bottom:143.724480px;}
.y198{bottom:155.714679px;}
.y97{bottom:156.898246px;}
.y15d{bottom:156.906522px;}
.y110{bottom:157.579480px;}
.y33{bottom:159.703536px;}
.yec{bottom:161.406324px;}
.y197{bottom:167.620716px;}
.y15c{bottom:172.553423px;}
.y10f{bottom:173.311262px;}
.y32{bottom:174.075000px;}
.yb5{bottom:177.136718px;}
.yeb{bottom:177.138106px;}
.y196{bottom:179.610915px;}
.y15b{bottom:188.285205px;}
.y10e{bottom:188.958163px;}
.yb3{bottom:190.912500px;}
.y195{bottom:191.601113px;}
.yea{bottom:192.785006px;}
.yb4{bottom:192.868500px;}
.yb2{bottom:192.869600px;}
.y96{bottom:199.843536px;}
.y194{bottom:203.506194px;}
.y15a{bottom:203.933300px;}
.y10d{bottom:204.691140px;}
.yb0{bottom:206.560500px;}
.yb1{bottom:208.516500px;}
.yaf{bottom:208.516718px;}
.ye9{bottom:208.517984px;}
.y95{bottom:215.490436px;}
.y193{bottom:215.497349px;}
.y159{bottom:219.665082px;}
.y10c{bottom:220.338040px;}
.yad{bottom:222.292500px;}
.y30{bottom:223.487396px;}
.yae{bottom:224.248500px;}
.yac{bottom:224.250036px;}
.y192{bottom:227.402429px;}
.y94{bottom:231.222218px;}
.y158{bottom:235.311983px;}
.y10b{bottom:236.069822px;}
.y2f{bottom:239.219178px;}
.y191{bottom:239.392628px;}
.ye8{bottom:239.896666px;}
.yab{bottom:239.981818px;}
.y93{bottom:246.954000px;}
.y157{bottom:251.043764px;}
.y190{bottom:251.382827px;}
.y10a{bottom:251.716723px;}
.y2e{bottom:254.866078px;}
.yaa{bottom:255.628718px;}
.y18f{bottom:263.288864px;}
.y2d{bottom:270.599055px;}
.ya9{bottom:271.361600px;}
.ye7{bottom:272.296318px;}
.y18e{bottom:275.279063px;}
.y156{bottom:282.423642px;}
.y109{bottom:283.181482px;}
.y2c{bottom:286.245956px;}
.ya8{bottom:287.008718px;}
.y18d{bottom:287.184143px;}
.yc8{bottom:287.434537px;}
.ye6{bottom:288.028100px;}
.y18c{bottom:299.174342px;}
.yc7{bottom:300.275918px;}
.y2b{bottom:301.977738px;}
.ya7{bottom:302.740100px;}
.ye5{bottom:303.676536px;}
.y18b{bottom:311.080379px;}
.yc6{bottom:313.116343px;}
.y155{bottom:314.227928px;}
.y2a{bottom:317.624638px;}
.y108{bottom:317.705564px;}
.ya6{bottom:318.387218px;}
.ye4{bottom:319.408318px;}
.y18a{bottom:323.070577px;}
.yc5{bottom:325.956768px;}
.y154{bottom:329.959710px;}
.y107{bottom:333.352464px;}
.y29{bottom:333.357615px;}
.ya5{bottom:334.120100px;}
.ye3{bottom:335.055218px;}
.y189{bottom:335.060776px;}
.yc4{bottom:338.883268px;}
.y153{bottom:345.606610px;}
.y188{bottom:346.966813px;}
.y28{bottom:349.004516px;}
.y106{bottom:349.085442px;}
.ya4{bottom:349.767218px;}
.ye2{bottom:350.790325px;}
.yc3{bottom:351.723693px;}
.y187{bottom:358.957012px;}
.y152{bottom:361.339587px;}
.yc2{bottom:364.564118px;}
.y105{bottom:364.732342px;}
.y27{bottom:364.736298px;}
.ya3{bottom:365.500100px;}
.ye1{bottom:366.437225px;}
.y186{bottom:370.862092px;}
.y151{bottom:377.071369px;}
.yc1{bottom:377.405499px;}
.y26{bottom:380.383198px;}
.y104{bottom:380.464124px;}
.ya2{bottom:381.147218px;}
.ye0{bottom:382.169007px;}
.y185{bottom:382.852291px;}
.yc0{bottom:390.245924px;}
.y150{bottom:392.718270px;}
.y184{bottom:394.843446px;}
.y103{bottom:396.111024px;}
.y25{bottom:396.114980px;}
.ya1{bottom:396.876363px;}
.ydf{bottom:397.901984px;}
.y183{bottom:406.748527px;}
.y14f{bottom:408.450051px;}
.ybf{bottom:409.975190px;}
.y24{bottom:411.763076px;}
.y102{bottom:411.844002px;}
.ya0{bottom:412.523263px;}
.yde{bottom:413.548884px;}
.y46{bottom:417.629916px;}
.y182{bottom:418.738725px;}
.y73{bottom:424.603136px;}
.y101{bottom:427.490902px;}
.y23{bottom:427.494858px;}
.y9f{bottom:428.256241px;}
.ydd{bottom:429.280666px;}
.ybe{bottom:429.703500px;}
.y181{bottom:430.643806px;}
.y45{bottom:433.361698px;}
.y14e{bottom:439.829929px;}
.y72{bottom:440.250036px;}
.y180{bottom:442.634961px;}
.y22{bottom:443.141758px;}
.y100{bottom:443.222684px;}
.y9e{bottom:443.903141px;}
.ydc{bottom:444.927567px;}
.y44{bottom:449.008598px;}
.ybd{bottom:449.432536px;}
.y17f{bottom:454.540041px;}
.y71{bottom:455.981818px;}
.yff{bottom:458.869584px;}
.y21{bottom:458.873540px;}
.y9d{bottom:459.634923px;}
.ybc{bottom:463.719000px;}
.y43{bottom:464.741576px;}
.y17e{bottom:466.530240px;}
.y70{bottom:471.628718px;}
.y14d{bottom:471.634215px;}
.y20{bottom:474.521636px;}
.y9c{bottom:475.281823px;}
.ydb{bottom:476.307444px;}
.y17d{bottom:478.521395px;}
.y42{bottom:480.388476px;}
.y6e{bottom:485.319000px;}
.y6f{bottom:487.360500px;}
.y6d{bottom:487.361600px;}
.y14c{bottom:487.365997px;}
.yfe{bottom:490.249462px;}
.y1f{bottom:490.253417px;}
.y17c{bottom:490.426476px;}
.y41{bottom:496.120258px;}
.y6b{bottom:501.052500px;}
.y17b{bottom:502.416674px;}
.y6c{bottom:503.008500px;}
.y6a{bottom:503.008815px;}
.y14b{bottom:503.014092px;}
.y1e{bottom:505.900318px;}
.ybb{bottom:508.960500px;}
.y40{bottom:511.767158px;}
.yda{bottom:512.278100px;}
.y17a{bottom:514.321755px;}
.y14a{bottom:518.745874px;}
.y31{bottom:521.632100px;}
.yfd{bottom:524.774740px;}
.y179{bottom:526.312910px;}
.y3f{bottom:527.500136px;}
.yd9{bottom:527.926356px;}
.y69{bottom:534.387498px;}
.y149{bottom:534.392775px;}
.y1d{bottom:537.279000px;}
.y178{bottom:538.303109px;}
.yfc{bottom:540.506521px;}
.y3e{bottom:543.147036px;}
.yd8{bottom:543.658138px;}
.y148{bottom:550.124557px;}
.y177{bottom:550.208189px;}
.yfb{bottom:556.153422px;}
.y3d{bottom:558.878818px;}
.yd7{bottom:559.305038px;}
.y176{bottom:562.198388px;}
.y68{bottom:565.767375px;}
.y147{bottom:565.771457px;}
.yfa{bottom:571.886399px;}
.y175{bottom:574.104425px;}
.y3c{bottom:574.525718px;}
.yd6{bottom:575.038016px;}
.y146{bottom:581.504434px;}
.y174{bottom:586.094624px;}
.yf9{bottom:587.533300px;}
.y3b{bottom:590.257500px;}
.yd5{bottom:590.684916px;}
.y1c{bottom:596.807323px;}
.y67{bottom:597.144862px;}
.y145{bottom:597.151335px;}
.y173{bottom:597.999704px;}
.yf8{bottom:603.265081px;}
.yd4{bottom:606.416698px;}
.y172{bottom:609.989903px;}
.y1b{bottom:611.178787px;}
.y66{bottom:612.876644px;}
.y144{bottom:612.883116px;}
.y171{bottom:621.981058px;}
.yd3{bottom:622.063598px;}
.y1a{bottom:625.550251px;}
.y65{bottom:628.524740px;}
.y143{bottom:628.530017px;}
.y90{bottom:630.822884px;}
.y170{bottom:633.886138px;}
.yf7{bottom:634.644959px;}
.yd2{bottom:637.796576px;}
.y19{bottom:639.836715px;}
.y8f{bottom:643.663309px;}
.y64{bottom:644.256522px;}
.y142{bottom:644.262994px;}
.y16f{bottom:645.876337px;}
.yd1{bottom:653.443476px;}
.y18{bottom:654.208179px;}
.y8e{bottom:656.504690px;}
.y16e{bottom:657.782374px;}
.y63{bottom:659.903422px;}
.y141{bottom:659.909894px;}
.y17{bottom:668.579643px;}
.yf6{bottom:669.170237px;}
.yd0{bottom:669.175258px;}
.y16d{bottom:669.772573px;}
.y62{bottom:675.635204px;}
.y140{bottom:675.641676px;}
.y12{bottom:676.063844px;}
.y8d{bottom:676.233000px;}
.y16c{bottom:681.762772px;}
.y16{bottom:682.866108px;}
.yf5{bottom:684.817137px;}
.ycf{bottom:684.822158px;}
.y11{bottom:688.904269px;}
.y61{bottom:691.283300px;}
.y13f{bottom:691.288577px;}
.y16b{bottom:693.667852px;}
.y8c{bottom:695.962036px;}
.y15{bottom:697.237572px;}
.yf4{bottom:700.548919px;}
.yce{bottom:700.555136px;}
.y10{bottom:701.745650px;}
.y16a{bottom:705.659007px;}
.y60{bottom:707.015081px;}
.y13e{bottom:707.021554px;}
.y8b{bottom:710.248500px;}
.y14{bottom:711.609036px;}
.yf{bottom:714.586075px;}
.yf3{bottom:716.197015px;}
.ycd{bottom:716.202036px;}
.y169{bottom:717.564088px;}
.y5f{bottom:722.746863px;}
.y13d{bottom:722.753336px;}
.y13{bottom:725.980500px;}
.ye{bottom:727.426500px;}
.y168{bottom:729.554286px;}
.yf2{bottom:731.928797px;}
.ycc{bottom:731.933818px;}
.y5e{bottom:738.393764px;}
.y13c{bottom:738.400236px;}
.y167{bottom:741.459367px;}
.yf1{bottom:747.575697px;}
.ycb{bottom:747.580718px;}
.y166{bottom:753.450522px;}
.y5d{bottom:754.126741px;}
.y13b{bottom:754.132018px;}
.yd{bottom:755.235000px;}
.y8a{bottom:760.848690px;}
.yf0{bottom:763.307479px;}
.yca{bottom:763.312500px;}
.y165{bottom:765.440721px;}
.y5c{bottom:769.773641px;}
.y13a{bottom:769.780114px;}
.y89{bottom:773.690071px;}
.y164{bottom:777.345801px;}
.y5b{bottom:785.505423px;}
.y139{bottom:785.511896px;}
.y88{bottom:786.530496px;}
.y163{bottom:789.336000px;}
.y124{bottom:796.988536px;}
.y87{bottom:799.370921px;}
.y5a{bottom:801.152324px;}
.y138{bottom:801.158796px;}
.yc{bottom:804.728575px;}
.y123{bottom:811.275000px;}
.y86{bottom:812.212303px;}
.y59{bottom:816.885301px;}
.y137{bottom:816.890578px;}
.yb{bottom:817.569000px;}
.y85{bottom:825.052728px;}
.y58{bottom:832.532201px;}
.y136{bottom:832.537478px;}
.y122{bottom:832.538074px;}
.yba{bottom:834.576000px;}
.y84{bottom:837.894109px;}
.ya{bottom:842.232190px;}
.y121{bottom:845.379455px;}
.y57{bottom:848.263983px;}
.y135{bottom:848.270456px;}
.y83{bottom:850.819652px;}
.y120{bottom:858.219880px;}
.y8{bottom:861.619500px;}
.y82{bottom:863.660077px;}
.y56{bottom:863.910883px;}
.y134{bottom:863.917356px;}
.y9{bottom:868.677000px;}
.y11f{bottom:871.061262px;}
.y81{bottom:876.501459px;}
.y55{bottom:879.642665px;}
.y133{bottom:879.649138px;}
.y11e{bottom:883.901687px;}
.y80{bottom:889.341884px;}
.y54{bottom:895.290761px;}
.y132{bottom:895.296038px;}
.y11d{bottom:896.742112px;}
.y7{bottom:899.122216px;}
.y7f{bottom:902.182309px;}
.y11c{bottom:909.668612px;}
.y53{bottom:911.022543px;}
.y131{bottom:911.029016px;}
.y7e{bottom:921.911575px;}
.y11b{bottom:922.509037px;}
.y6{bottom:924.973500px;}
.y52{bottom:926.669443px;}
.y130{bottom:926.675916px;}
.y7d{bottom:934.752000px;}
.y11a{bottom:935.350418px;}
.y51{bottom:942.401225px;}
.y12f{bottom:942.407698px;}
.y119{bottom:948.190843px;}
.y7c{bottom:954.481536px;}
.y50{bottom:958.049321px;}
.y12e{bottom:958.054598px;}
.y118{bottom:961.031268px;}
.y7b{bottom:968.853000px;}
.y4f{bottom:973.781103px;}
.y12d{bottom:973.787576px;}
.y117{bottom:973.872649px;}
.y116{bottom:986.713074px;}
.y4e{bottom:989.428003px;}
.y12c{bottom:989.434476px;}
.y115{bottom:999.554456px;}
.y36{bottom:1003.719000px;}
.y4d{bottom:1005.159785px;}
.y12b{bottom:1005.166258px;}
.y114{bottom:1012.479999px;}
.y7a{bottom:1019.367884px;}
.y4c{bottom:1020.806686px;}
.y12a{bottom:1020.813158px;}
.y79{bottom:1032.208309px;}
.y4b{bottom:1036.539663px;}
.y129{bottom:1036.546136px;}
.y78{bottom:1045.049690px;}
.y35{bottom:1045.474500px;}
.y113{bottom:1051.852457px;}
.y4a{bottom:1052.186563px;}
.y128{bottom:1052.193036px;}
.y1a1{bottom:1053.127485px;}
.y76{bottom:1064.778000px;}
.y1a0{bottom:1065.033522px;}
.y49{bottom:1067.918345px;}
.y127{bottom:1067.924818px;}
.y77{bottom:1069.030500px;}
.y19f{bottom:1077.023721px;}
.y48{bottom:1083.565245px;}
.y126{bottom:1083.571718px;}
.y75{bottom:1084.507536px;}
.y34{bottom:1087.312500px;}
.y19e{bottom:1088.928801px;}
.y74{bottom:1098.879000px;}
.y47{bottom:1099.298223px;}
.y125{bottom:1099.303500px;}
.y19d{bottom:1100.919000px;}
.y2{bottom:1127.505000px;}
.y39{bottom:1128.630000px;}
.yc9{bottom:1128.634440px;}
.y1a2{bottom:1128.640776px;}
.y92{bottom:1128.642000px;}
.y19c{bottom:1128.642270px;}
.h10{height:23.521113px;}
.hf{height:31.524082px;}
.h8{height:33.622910px;}
.he{height:33.623438px;}
.hd{height:35.100320px;}
.h19{height:36.568337px;}
.h9{height:36.775371px;}
.h3{height:37.826367px;}
.h7{height:38.959629px;}
.hb{height:41.269138px;}
.ha{height:42.029824px;}
.h17{height:42.409829px;}
.h16{height:42.411703px;}
.h13{height:42.412728px;}
.h12{height:42.416255px;}
.h18{height:42.416984px;}
.h14{height:42.418728px;}
.h15{height:42.422255px;}
.h11{height:42.427675px;}
.h5{height:55.689609px;}
.h6{height:60.549109px;}
.h4{height:70.925098px;}
.hc{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.550018px;}
.h0{height:1190.551484px;}
.w2{width:892.914000px;}
.w0{width:892.914002px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:56.276979px;}
.xc{left:63.949500px;}
.x19{left:65.395200px;}
.x9{left:74.323389px;}
.x21{left:78.746163px;}
.x35{left:81.211724px;}
.x3{left:94.053215px;}
.x2b{left:134.446197px;}
.x29{left:145.163756px;}
.x1c{left:164.209855px;}
.x4{left:198.650281px;}
.x28{left:211.578000px;}
.x20{left:216.679500px;}
.x27{left:229.011000px;}
.x2a{left:235.386895px;}
.x1d{left:239.043155px;}
.x1a{left:242.617500px;}
.xd{left:260.897844px;}
.x1b{left:287.773500px;}
.x10{left:296.872500px;}
.x5{left:300.699000px;}
.x8{left:302.995500px;}
.x6{left:306.652500px;}
.xf{left:307.758000px;}
.x1e{left:313.622058px;}
.x1{left:325.961979px;}
.xe{left:342.624000px;}
.x1f{left:388.455358px;}
.x12{left:444.311979px;}
.xa{left:459.888932px;}
.x2c{left:464.995500px;}
.xb{left:477.831221px;}
.x2d{left:484.468455px;}
.x2f{left:502.667505px;}
.x32{left:507.344228px;}
.x33{left:570.187330px;}
.x15{left:580.053000px;}
.x16{left:585.156000px;}
.x7{left:598.759500px;}
.x31{left:617.043500px;}
.x11{left:632.711979px;}
.x25{left:656.929500px;}
.x26{left:661.947000px;}
.x2e{left:674.019180px;}
.x24{left:696.642000px;}
.x22{left:700.809000px;}
.x23{left:705.826500px;}
.x17{left:712.374000px;}
.x18{left:721.389000px;}
.x30{left:738.138100px;}
.x34{left:805.999354px;}
.x13{left:828.114000px;}
.x14{left:833.130000px;}
@media print{
.v6{vertical-align:-15.418667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.115099pt;}
.v1{vertical-align:3.627145pt;}
.v7{vertical-align:8.769838pt;}
.v3{vertical-align:9.980990pt;}
.v2{vertical-align:14.508582pt;}
.v5{vertical-align:15.428042pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:2.659200pt;}
.ls7{letter-spacing:2.664533pt;}
.ls5{letter-spacing:10.099426pt;}
.ls4{letter-spacing:10.402068pt;}
.ls8{letter-spacing:15.345099pt;}
.ls9{letter-spacing:16.556554pt;}
.ls0{letter-spacing:16.922845pt;}
.ls1{letter-spacing:17.712528pt;}
.ls2{letter-spacing:18.316973pt;}
.ws9{word-spacing:-34.004800pt;}
.ws2{word-spacing:-21.538128pt;}
.ws4{word-spacing:-12.454610pt;}
.ws7{word-spacing:-10.626800pt;}
.ws0{word-spacing:-10.329120pt;}
.wsa{word-spacing:-9.963406pt;}
.ws3{word-spacing:-9.564000pt;}
.ws6{word-spacing:-8.943403pt;}
.ws8{word-spacing:-8.501200pt;}
.ws1{word-spacing:-8.378064pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-15.416526pt;}
._f{margin-left:-4.820316pt;}
._e{margin-left:-3.791642pt;}
._8{margin-left:-2.589931pt;}
._6{margin-left:-1.488158pt;}
._4{width:1.062117pt;}
._2{width:2.137574pt;}
._1{width:3.105938pt;}
._c{width:4.101709pt;}
._7{width:5.781961pt;}
._3{width:7.324545pt;}
._d{width:8.501440pt;}
._b{width:9.827665pt;}
._a{width:10.745820pt;}
._10{width:13.453529pt;}
._28{width:15.116212pt;}
._11{width:18.060658pt;}
._27{width:19.527262pt;}
._0{width:20.773008pt;}
._9{width:26.839046pt;}
._12{width:46.498626pt;}
._33{width:54.564102pt;}
._2c{width:55.506035pt;}
._16{width:57.457911pt;}
._13{width:67.278497pt;}
._18{width:71.053030pt;}
._30{width:75.980325pt;}
._2a{width:78.564690pt;}
._2f{width:84.637947pt;}
._2e{width:92.367238pt;}
._15{width:95.502481pt;}
._19{width:104.887806pt;}
._36{width:125.807559pt;}
._3a{width:127.987266pt;}
._3c{width:133.329420pt;}
._3d{width:134.424375pt;}
._37{width:138.015282pt;}
._39{width:144.952261pt;}
._1f{width:169.105870pt;}
._1b{width:170.010398pt;}
._38{width:173.472087pt;}
._3e{width:174.410619pt;}
._3b{width:175.750408pt;}
._1c{width:188.250573pt;}
._1d{width:189.155100pt;}
._17{width:193.395499pt;}
._2b{width:196.761974pt;}
._32{width:197.958943pt;}
._31{width:206.456743pt;}
._20{width:207.395275pt;}
._29{width:216.406547pt;}
._2d{width:224.142639pt;}
._14{width:235.911700pt;}
._1a{width:293.566839pt;}
._1e{width:322.232885pt;}
._21{width:351.011148pt;}
._25{width:422.479036pt;}
._23{width:441.623738pt;}
._35{width:447.118914pt;}
._34{width:464.587180pt;}
._24{width:470.470010pt;}
._22{width:494.919461pt;}
._26{width:504.304786pt;}
.fsa{font-size:23.788267pt;}
.fsb{font-size:29.753600pt;}
.fs9{font-size:31.882133pt;}
.fs4{font-size:34.004800pt;}
.fs8{font-size:34.005333pt;}
.fs5{font-size:37.193067pt;}
.fs0{font-size:38.256000pt;}
.fs3{font-size:39.402133pt;}
.fs6{font-size:42.507200pt;}
.fs2{font-size:56.322133pt;}
.fs1{font-size:71.730667pt;}
.fs7{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000651pt;}
.y3a{bottom:42.160000pt;}
.yb9{bottom:69.695558pt;}
.y9b{bottom:69.695915pt;}
.yef{bottom:69.696792pt;}
.y162{bottom:69.703272pt;}
.y91{bottom:69.770000pt;}
.y5{bottom:70.346667pt;}
.y4{bottom:83.106667pt;}
.yb8{bottom:83.679364pt;}
.y9a{bottom:83.679721pt;}
.yee{bottom:83.680598pt;}
.y161{bottom:83.687078pt;}
.y3{bottom:93.893333pt;}
.yb7{bottom:97.587720pt;}
.y112{bottom:97.588954pt;}
.y99{bottom:97.589140pt;}
.y160{bottom:97.595434pt;}
.y19b{bottom:106.513995pt;}
.y38{bottom:106.582787pt;}
.yed{bottom:111.572760pt;}
.y98{bottom:111.572946pt;}
.y15f{bottom:111.579240pt;}
.y19a{bottom:117.172800pt;}
.y37{bottom:119.281867pt;}
.yb6{bottom:125.480945pt;}
.y15e{bottom:125.488658pt;}
.y111{bottom:126.162293pt;}
.y199{bottom:127.755094pt;}
.y198{bottom:138.413048pt;}
.y97{bottom:139.465108pt;}
.y15d{bottom:139.472464pt;}
.y110{bottom:140.070649pt;}
.y33{bottom:141.958699pt;}
.yec{bottom:143.472288pt;}
.y197{bottom:148.996192pt;}
.y15c{bottom:153.380820pt;}
.y10f{bottom:154.054455pt;}
.y32{bottom:154.733333pt;}
.yb5{bottom:157.454861pt;}
.yeb{bottom:157.456094pt;}
.y196{bottom:159.654146pt;}
.y15b{bottom:167.364626pt;}
.y10e{bottom:167.962811pt;}
.yb3{bottom:169.700000pt;}
.y195{bottom:170.312101pt;}
.yea{bottom:171.364450pt;}
.yb4{bottom:171.438667pt;}
.yb2{bottom:171.439644pt;}
.y96{bottom:177.638699pt;}
.y194{bottom:180.894394pt;}
.y15a{bottom:181.274045pt;}
.y10d{bottom:181.947680pt;}
.yb0{bottom:183.609333pt;}
.yb1{bottom:185.348000pt;}
.yaf{bottom:185.348194pt;}
.ye9{bottom:185.349319pt;}
.y95{bottom:191.547054pt;}
.y193{bottom:191.553199pt;}
.y159{bottom:195.257851pt;}
.y10c{bottom:195.856036pt;}
.yad{bottom:197.593333pt;}
.y30{bottom:198.655463pt;}
.yae{bottom:199.332000pt;}
.yac{bottom:199.333365pt;}
.y192{bottom:202.135493pt;}
.y94{bottom:205.530861pt;}
.y158{bottom:209.166207pt;}
.y10b{bottom:209.839842pt;}
.y2f{bottom:212.639269pt;}
.y191{bottom:212.793447pt;}
.ye8{bottom:213.241481pt;}
.yab{bottom:213.317171pt;}
.y93{bottom:219.514667pt;}
.y157{bottom:223.150013pt;}
.y190{bottom:223.451402pt;}
.y10a{bottom:223.748198pt;}
.y2e{bottom:226.547625pt;}
.yaa{bottom:227.225527pt;}
.y18f{bottom:234.034546pt;}
.y2d{bottom:240.532494pt;}
.ya9{bottom:241.210311pt;}
.ye7{bottom:242.041171pt;}
.y18e{bottom:244.692500pt;}
.y156{bottom:251.043238pt;}
.y109{bottom:251.716873pt;}
.y2c{bottom:254.440850pt;}
.ya8{bottom:255.118861pt;}
.y18d{bottom:255.274794pt;}
.yc8{bottom:255.497366pt;}
.ye6{bottom:256.024977pt;}
.y18c{bottom:265.932748pt;}
.yc7{bottom:266.911927pt;}
.y2b{bottom:268.424656pt;}
.ya7{bottom:269.102311pt;}
.ye5{bottom:269.934699pt;}
.y18b{bottom:276.515892pt;}
.yc6{bottom:278.325638pt;}
.y155{bottom:279.313714pt;}
.y2a{bottom:282.333012pt;}
.y108{bottom:282.404946pt;}
.ya6{bottom:283.010861pt;}
.ye4{bottom:283.918505pt;}
.y18a{bottom:287.173847pt;}
.yc5{bottom:289.739349pt;}
.y154{bottom:293.297520pt;}
.y107{bottom:296.313302pt;}
.y29{bottom:296.317880pt;}
.ya5{bottom:296.995644pt;}
.ye3{bottom:297.826861pt;}
.y189{bottom:297.831801pt;}
.yc4{bottom:301.229571pt;}
.y153{bottom:307.205876pt;}
.y188{bottom:308.414945pt;}
.y28{bottom:310.226236pt;}
.y106{bottom:310.298170pt;}
.ya4{bottom:310.904194pt;}
.ye2{bottom:311.813622pt;}
.yc3{bottom:312.643282pt;}
.y187{bottom:319.072899pt;}
.y152{bottom:321.190744pt;}
.yc2{bottom:324.056993pt;}
.y105{bottom:324.206526pt;}
.y27{bottom:324.210042pt;}
.ya3{bottom:324.888977pt;}
.ye1{bottom:325.721978pt;}
.y186{bottom:329.655193pt;}
.y151{bottom:335.174550pt;}
.yc1{bottom:335.471555pt;}
.y26{bottom:338.118398pt;}
.y104{bottom:338.190332pt;}
.ya2{bottom:338.797527pt;}
.ye0{bottom:339.705784pt;}
.y185{bottom:340.313147pt;}
.yc0{bottom:346.885266pt;}
.y150{bottom:349.082906pt;}
.y184{bottom:350.971952pt;}
.y103{bottom:352.098688pt;}
.y25{bottom:352.102204pt;}
.ya1{bottom:352.778989pt;}
.ydf{bottom:353.690653pt;}
.y183{bottom:361.554246pt;}
.y14f{bottom:363.066712pt;}
.ybf{bottom:364.422391pt;}
.y24{bottom:366.011623pt;}
.y102{bottom:366.083557pt;}
.ya0{bottom:366.687345pt;}
.yde{bottom:367.599008pt;}
.y46{bottom:371.226592pt;}
.y182{bottom:372.212200pt;}
.y73{bottom:377.425009pt;}
.y101{bottom:379.991913pt;}
.y23{bottom:379.995429pt;}
.y9f{bottom:380.672214pt;}
.ydd{bottom:381.582815pt;}
.ybe{bottom:381.958667pt;}
.y181{bottom:382.794494pt;}
.y45{bottom:385.210398pt;}
.y14e{bottom:390.959937pt;}
.y72{bottom:391.333365pt;}
.y180{bottom:393.453299pt;}
.y22{bottom:393.903785pt;}
.y100{bottom:393.975719pt;}
.y9e{bottom:394.580570pt;}
.ydc{bottom:395.491170pt;}
.y44{bottom:399.118754pt;}
.ybd{bottom:399.495587pt;}
.y17f{bottom:404.035592pt;}
.y71{bottom:405.317171pt;}
.yff{bottom:407.884075pt;}
.y21{bottom:407.887591pt;}
.y9d{bottom:408.564376pt;}
.ybc{bottom:412.194667pt;}
.y43{bottom:413.103623pt;}
.y17e{bottom:414.693547pt;}
.y70{bottom:419.225527pt;}
.y14d{bottom:419.230413pt;}
.y20{bottom:421.797009pt;}
.y9c{bottom:422.472732pt;}
.ydb{bottom:423.384395pt;}
.y17d{bottom:425.352351pt;}
.y42{bottom:427.011979pt;}
.y6e{bottom:431.394667pt;}
.y6f{bottom:433.209333pt;}
.y6d{bottom:433.210311pt;}
.y14c{bottom:433.214219pt;}
.yfe{bottom:435.777299pt;}
.y1f{bottom:435.780816pt;}
.y17c{bottom:435.934645pt;}
.y41{bottom:440.995785pt;}
.y6b{bottom:445.380000pt;}
.y17b{bottom:446.592600pt;}
.y6c{bottom:447.118667pt;}
.y6a{bottom:447.118947pt;}
.y14b{bottom:447.123638pt;}
.y1e{bottom:449.689171pt;}
.ybb{bottom:452.409333pt;}
.y40{bottom:454.904141pt;}
.yda{bottom:455.358311pt;}
.y17a{bottom:457.174893pt;}
.y14a{bottom:461.107444pt;}
.y31{bottom:463.672977pt;}
.yfd{bottom:466.466435pt;}
.y179{bottom:467.833698pt;}
.y3f{bottom:468.889009pt;}
.yd9{bottom:469.267872pt;}
.y69{bottom:475.011109pt;}
.y149{bottom:475.015800pt;}
.y1d{bottom:477.581333pt;}
.y178{bottom:478.491652pt;}
.yfc{bottom:480.450241pt;}
.y3e{bottom:482.797365pt;}
.yd8{bottom:483.251678pt;}
.y148{bottom:488.999606pt;}
.y177{bottom:489.073946pt;}
.yfb{bottom:494.358597pt;}
.y3d{bottom:496.781171pt;}
.yd7{bottom:497.160034pt;}
.y176{bottom:499.731900pt;}
.y68{bottom:502.904334pt;}
.y147{bottom:502.907962pt;}
.yfa{bottom:508.343466pt;}
.y175{bottom:510.315044pt;}
.y3c{bottom:510.689527pt;}
.yd6{bottom:511.144903pt;}
.y146{bottom:516.892830pt;}
.y174{bottom:520.972999pt;}
.yf9{bottom:522.251822pt;}
.y3b{bottom:524.673333pt;}
.yd5{bottom:525.053259pt;}
.y1c{bottom:530.495398pt;}
.y67{bottom:530.795433pt;}
.y145{bottom:530.801186pt;}
.y173{bottom:531.555293pt;}
.yf8{bottom:536.235628pt;}
.yd4{bottom:539.037065pt;}
.y172{bottom:542.213247pt;}
.y1b{bottom:543.270033pt;}
.y66{bottom:544.779239pt;}
.y144{bottom:544.784992pt;}
.y171{bottom:552.872052pt;}
.yd3{bottom:552.945421pt;}
.y1a{bottom:556.044668pt;}
.y65{bottom:558.688657pt;}
.y143{bottom:558.693348pt;}
.y90{bottom:560.731452pt;}
.y170{bottom:563.454345pt;}
.yf7{bottom:564.128853pt;}
.yd2{bottom:566.930289pt;}
.y19{bottom:568.743747pt;}
.y8f{bottom:572.145163pt;}
.y64{bottom:572.672464pt;}
.y142{bottom:572.678217pt;}
.y16f{bottom:574.112300pt;}
.yd1{bottom:580.838645pt;}
.y18{bottom:581.518382pt;}
.y8e{bottom:583.559725pt;}
.y16e{bottom:584.695444pt;}
.y63{bottom:586.580819pt;}
.y141{bottom:586.586573pt;}
.y17{bottom:594.293016pt;}
.yf6{bottom:594.817988pt;}
.yd0{bottom:594.822451pt;}
.y16d{bottom:595.353398pt;}
.y62{bottom:600.564626pt;}
.y140{bottom:600.570379pt;}
.y12{bottom:600.945639pt;}
.y8d{bottom:601.096000pt;}
.y16c{bottom:606.011353pt;}
.y16{bottom:606.992096pt;}
.yf5{bottom:608.726344pt;}
.ycf{bottom:608.730807pt;}
.y11{bottom:612.359350pt;}
.y61{bottom:614.474044pt;}
.y13f{bottom:614.478735pt;}
.y16b{bottom:616.593646pt;}
.y8c{bottom:618.632921pt;}
.y15{bottom:619.766730pt;}
.yf4{bottom:622.710150pt;}
.yce{bottom:622.715676pt;}
.y10{bottom:623.773911pt;}
.y16a{bottom:627.252451pt;}
.y60{bottom:628.457850pt;}
.y13e{bottom:628.463604pt;}
.y8b{bottom:631.332000pt;}
.y14{bottom:632.541365pt;}
.yf{bottom:635.187622pt;}
.yf3{bottom:636.619569pt;}
.ycd{bottom:636.624032pt;}
.y169{bottom:637.834745pt;}
.y5f{bottom:642.441656pt;}
.y13d{bottom:642.447410pt;}
.y13{bottom:645.316000pt;}
.ye{bottom:646.601333pt;}
.y168{bottom:648.492699pt;}
.yf2{bottom:650.603375pt;}
.ycc{bottom:650.607838pt;}
.y5e{bottom:656.350012pt;}
.y13c{bottom:656.355766pt;}
.y167{bottom:659.074993pt;}
.yf1{bottom:664.511731pt;}
.ycb{bottom:664.516194pt;}
.y166{bottom:669.733797pt;}
.y5d{bottom:670.334881pt;}
.y13b{bottom:670.339572pt;}
.yd{bottom:671.320000pt;}
.y8a{bottom:676.309947pt;}
.yf0{bottom:678.495537pt;}
.yca{bottom:678.500000pt;}
.y165{bottom:680.391752pt;}
.y5c{bottom:684.243237pt;}
.y13a{bottom:684.248990pt;}
.y89{bottom:687.724508pt;}
.y164{bottom:690.974046pt;}
.y5b{bottom:698.227043pt;}
.y139{bottom:698.232796pt;}
.y88{bottom:699.138219pt;}
.y163{bottom:701.632000pt;}
.y124{bottom:708.434254pt;}
.y87{bottom:710.551930pt;}
.y5a{bottom:712.135399pt;}
.y138{bottom:712.141152pt;}
.yc{bottom:715.314289pt;}
.y123{bottom:721.133333pt;}
.y86{bottom:721.966491pt;}
.y59{bottom:726.120268pt;}
.y137{bottom:726.124958pt;}
.yb{bottom:726.728000pt;}
.y85{bottom:733.380202pt;}
.y58{bottom:740.028623pt;}
.y136{bottom:740.033314pt;}
.y122{bottom:740.033844pt;}
.yba{bottom:741.845333pt;}
.y84{bottom:744.794764pt;}
.ya{bottom:748.650835pt;}
.y121{bottom:751.448405pt;}
.y57{bottom:754.012429pt;}
.y135{bottom:754.018183pt;}
.y83{bottom:756.284135pt;}
.y120{bottom:762.862116pt;}
.y8{bottom:765.884000pt;}
.y82{bottom:767.697847pt;}
.y56{bottom:767.920785pt;}
.y134{bottom:767.926539pt;}
.y9{bottom:772.157333pt;}
.y11f{bottom:774.276677pt;}
.y81{bottom:779.112408pt;}
.y55{bottom:781.904591pt;}
.y133{bottom:781.910345pt;}
.y11e{bottom:785.690388pt;}
.y80{bottom:790.526119pt;}
.y54{bottom:795.814010pt;}
.y132{bottom:795.818701pt;}
.y11d{bottom:797.104099pt;}
.y7{bottom:799.219748pt;}
.y7f{bottom:801.939830pt;}
.y11c{bottom:808.594321pt;}
.y53{bottom:809.797816pt;}
.y131{bottom:809.803570pt;}
.y7e{bottom:819.476956pt;}
.y11b{bottom:820.008032pt;}
.y6{bottom:822.198667pt;}
.y52{bottom:823.706172pt;}
.y130{bottom:823.711925pt;}
.y7d{bottom:830.890667pt;}
.y11a{bottom:831.422594pt;}
.y51{bottom:837.689978pt;}
.y12f{bottom:837.695732pt;}
.y119{bottom:842.836305pt;}
.y7c{bottom:848.428032pt;}
.y50{bottom:851.599397pt;}
.y12e{bottom:851.604087pt;}
.y118{bottom:854.250016pt;}
.y7b{bottom:861.202667pt;}
.y4f{bottom:865.583203pt;}
.y12d{bottom:865.588956pt;}
.y117{bottom:865.664577pt;}
.y116{bottom:877.078288pt;}
.y4e{bottom:879.491559pt;}
.y12c{bottom:879.497312pt;}
.y115{bottom:888.492850pt;}
.y36{bottom:892.194667pt;}
.y4d{bottom:893.475365pt;}
.y12b{bottom:893.481118pt;}
.y114{bottom:899.982221pt;}
.y7a{bottom:906.104786pt;}
.y4c{bottom:907.383720pt;}
.y12a{bottom:907.389474pt;}
.y79{bottom:917.518497pt;}
.y4b{bottom:921.368589pt;}
.y129{bottom:921.374343pt;}
.y78{bottom:928.933058pt;}
.y35{bottom:929.310667pt;}
.y113{bottom:934.979962pt;}
.y4a{bottom:935.276945pt;}
.y128{bottom:935.282699pt;}
.y1a1{bottom:936.113320pt;}
.y76{bottom:946.469333pt;}
.y1a0{bottom:946.696464pt;}
.y49{bottom:949.260751pt;}
.y127{bottom:949.266505pt;}
.y77{bottom:950.249333pt;}
.y19f{bottom:957.354418pt;}
.y48{bottom:963.169107pt;}
.y126{bottom:963.174861pt;}
.y75{bottom:964.006699pt;}
.y34{bottom:966.500000pt;}
.y19e{bottom:967.936712pt;}
.y74{bottom:976.781333pt;}
.y47{bottom:977.153976pt;}
.y125{bottom:977.158667pt;}
.y19d{bottom:978.594667pt;}
.y2{bottom:1002.226667pt;}
.y39{bottom:1003.226667pt;}
.yc9{bottom:1003.230613pt;}
.y1a2{bottom:1003.236245pt;}
.y92{bottom:1003.237333pt;}
.y19c{bottom:1003.237574pt;}
.h10{height:20.907656pt;}
.hf{height:28.021406pt;}
.h8{height:29.887031pt;}
.he{height:29.887500pt;}
.hd{height:31.200285pt;}
.h19{height:32.505188pt;}
.h9{height:32.689219pt;}
.h3{height:33.623437pt;}
.h7{height:34.630781pt;}
.hb{height:36.683678pt;}
.ha{height:37.359844pt;}
.h17{height:37.697626pt;}
.h16{height:37.699291pt;}
.h13{height:37.700203pt;}
.h12{height:37.703338pt;}
.h18{height:37.703985pt;}
.h14{height:37.705536pt;}
.h15{height:37.708671pt;}
.h11{height:37.713489pt;}
.h5{height:49.501875pt;}
.h6{height:53.821431pt;}
.h4{height:63.044531pt;}
.hc{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.266683pt;}
.h0{height:1058.267985pt;}
.w2{width:793.701333pt;}
.w0{width:793.701335pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:50.023981pt;}
.xc{left:56.844000pt;}
.x19{left:58.129067pt;}
.x9{left:66.065235pt;}
.x21{left:69.996590pt;}
.x35{left:72.188199pt;}
.x3{left:83.602858pt;}
.x2b{left:119.507731pt;}
.x29{left:129.034450pt;}
.x1c{left:145.964315pt;}
.x4{left:176.578027pt;}
.x28{left:188.069333pt;}
.x20{left:192.604000pt;}
.x27{left:203.565333pt;}
.x2a{left:209.232796pt;}
.x1d{left:212.482805pt;}
.x1a{left:215.660000pt;}
.xd{left:231.909194pt;}
.x1b{left:255.798667pt;}
.x10{left:263.886667pt;}
.x5{left:267.288000pt;}
.x8{left:269.329333pt;}
.x6{left:272.580000pt;}
.xf{left:273.562667pt;}
.x1e{left:278.775162pt;}
.x1{left:289.743981pt;}
.xe{left:304.554667pt;}
.x1f{left:345.293652pt;}
.x12{left:394.943981pt;}
.xa{left:408.790162pt;}
.x2c{left:413.329333pt;}
.xb{left:424.738863pt;}
.x2d{left:430.638627pt;}
.x2f{left:446.815560pt;}
.x32{left:450.972647pt;}
.x33{left:506.833182pt;}
.x15{left:515.602667pt;}
.x16{left:520.138667pt;}
.x7{left:532.230667pt;}
.x31{left:548.483111pt;}
.x11{left:562.410648pt;}
.x25{left:583.937333pt;}
.x26{left:588.397333pt;}
.x2e{left:599.128160pt;}
.x24{left:619.237333pt;}
.x22{left:622.941333pt;}
.x23{left:627.401333pt;}
.x17{left:633.221333pt;}
.x18{left:641.234667pt;}
.x30{left:656.122755pt;}
.x34{left:716.443870pt;}
.x13{left:736.101333pt;}
.x14{left:740.560000pt;}
}




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