
    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_72847fc5d937d1b6b5d6c12a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.041000;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_ba51c791788fbb99e9b7fd88.woff')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_ba756b875989e14360bc504f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_cf2cd9b00ec45db3b5115c06.woff')format("woff");}.ff4{font-family:ff4;line-height:0.799000;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_4d10fe6390aead7f098c3fc3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.036000;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_c059869e58ddd22f9ef0c5cc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.712000;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_e62245bd83c246611da94d8f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_cca4995bb66c19182d36615d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.041000;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_d461f9af8d720089bad0823c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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_b0e81329b7f7fa1db0bc65b7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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:ffb;src:url('chunks/assets/font_92ca403783d32152553fbacb.woff')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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:ffc;src:url('chunks/assets/font_2f63cabd9deb24bf7a6f3d8c.woff')format("woff");}.ffc{font-family:ffc;line-height:0.907227;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:ffd;src:url('chunks/assets/font_e62245bd83c246611da94d8f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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);}
.v4{vertical-align:-26.549865px;}
.v1{vertical-align:-12.068099px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:25.343013px;}
.v3{vertical-align:26.549818px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000090px;}
.ls4{letter-spacing:0.000141px;}
.ls3{letter-spacing:0.000180px;}
.ls5{letter-spacing:4.486785px;}
.ls2{letter-spacing:35.986861px;}
.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;}
}
.ws5{word-spacing:-17.292000px;}
.ws0{word-spacing:-16.980000px;}
.ws2{word-spacing:-13.584000px;}
.ws4{word-spacing:-12.912000px;}
.ws3{word-spacing:-12.576000px;}
.ws6{word-spacing:-10.375200px;}
.ws7{word-spacing:-9.903600px;}
.ws8{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-3.835379px;}
._1{margin-left:-2.619325px;}
._0{margin-left:-1.292327px;}
._2{width:1.296365px;}
._3{width:4.442701px;}
._9{width:8.348550px;}
._26{width:9.427072px;}
._c{width:12.679322px;}
._25{width:13.912350px;}
._1c{width:17.222945px;}
._5{width:18.310842px;}
._4{width:22.463815px;}
._24{width:23.580002px;}
._18{width:26.320092px;}
._10{width:27.382114px;}
._a{width:31.350606px;}
._f{width:35.849832px;}
._e{width:40.708216px;}
._6{width:44.066632px;}
._7{width:45.873255px;}
._8{width:53.997384px;}
._14{width:57.925378px;}
._28{width:59.208905px;}
._13{width:62.909657px;}
._29{width:65.495999px;}
._d{width:71.927871px;}
._20{width:76.545557px;}
._19{width:80.246144px;}
._1f{width:84.901337px;}
._16{width:89.789766px;}
._15{width:90.822290px;}
._11{width:94.623067px;}
._1b{width:98.052527px;}
._1d{width:103.368130px;}
._1e{width:107.928736px;}
._12{width:117.083975px;}
._b{width:143.115016px;}
._1a{width:251.396593px;}
._17{width:287.901277px;}
._21{width:306.132489px;}
._23{width:341.668129px;}
._22{width:354.689742px;}
.fc7{color:rgb(255,0,0);}
.fc5{color:transparent;}
.fc3{color:rgb(3,72,96);}
.fc2{color:rgb(68,114,196);}
.fc4{color:rgb(9,56,77);}
.fc1{color:rgb(129,180,226);}
.fc6{color:rgb(111,164,219);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:37.799998px;}
.fs6{font-size:39.600001px;}
.fs4{font-size:41.999999px;}
.fs3{font-size:48.000002px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs5{font-size:66.000002px;}
.fs2{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y3b{bottom:2.635252px;}
.y42{bottom:2.635437px;}
.y2d{bottom:2.635438px;}
.y45{bottom:2.635620px;}
.y62{bottom:3.011737px;}
.y4b{bottom:3.011926px;}
.y47{bottom:3.011929px;}
.y2b{bottom:3.011937px;}
.y52{bottom:3.012102px;}
.y77{bottom:3.012108px;}
.y5e{bottom:3.012111px;}
.y28{bottom:3.012113px;}
.y70{bottom:3.012120px;}
.y84{bottom:3.012289px;}
.yb0{bottom:4.141403px;}
.yad{bottom:4.141770px;}
.ya4{bottom:12.907368px;}
.y21{bottom:12.907459px;}
.y4{bottom:12.907506px;}
.y7c{bottom:12.907734px;}
.y121{bottom:14.196455px;}
.y124{bottom:14.197922px;}
.y11e{bottom:14.199387px;}
.y41{bottom:15.434877px;}
.y3a{bottom:15.434887px;}
.y44{bottom:15.435060px;}
.y59{bottom:17.639854px;}
.y50{bottom:17.639857px;}
.y4a{bottom:17.640031px;}
.y5d{bottom:17.640036px;}
.y2a{bottom:17.640042px;}
.y6f{bottom:17.640045px;}
.y65{bottom:17.640051px;}
.y76{bottom:17.640228px;}
.y83{bottom:17.640409px;}
.yaf{bottom:24.255173px;}
.y13{bottom:26.267978px;}
.y11{bottom:26.268025px;}
.y40{bottom:28.234497px;}
.y39{bottom:28.234507px;}
.y1d{bottom:30.351045px;}
.ya2{bottom:31.641600px;}
.y86{bottom:31.641960px;}
.y61{bottom:32.267782px;}
.y4f{bottom:32.267962px;}
.y6e{bottom:32.267970px;}
.y49{bottom:32.267971px;}
.y58{bottom:32.267974px;}
.y75{bottom:32.268153px;}
.y5c{bottom:32.268156px;}
.y82{bottom:32.268334px;}
.yf5{bottom:40.334736px;}
.y20{bottom:40.334919px;}
.y3{bottom:40.335000px;}
.y7b{bottom:40.335102px;}
.ya3{bottom:40.335468px;}
.y3f{bottom:41.033937px;}
.y38{bottom:41.033947px;}
.y120{bottom:44.367845px;}
.y57{bottom:46.895899px;}
.y4e{bottom:46.895902px;}
.y6d{bottom:46.895910px;}
.y74{bottom:46.896093px;}
.y81{bottom:46.896274px;}
.y1c{bottom:53.583765px;}
.y78{bottom:53.583855px;}
.y37{bottom:53.833372px;}
.y3e{bottom:53.833557px;}
.y56{bottom:61.523839px;}
.y6c{bottom:61.524015px;}
.y73{bottom:61.524198px;}
.y80{bottom:61.524381px;}
.ye1{bottom:64.919940px;}
.y104{bottom:65.013360px;}
.y36{bottom:66.632812px;}
.y3d{bottom:66.632997px;}
.y119{bottom:67.373210px;}
.yf4{bottom:67.761738px;}
.y1f{bottom:67.762470px;}
.y2{bottom:67.762500px;}
.y7a{bottom:67.762653px;}
.y166{bottom:67.763203px;}
.y55{bottom:76.151944px;}
.y7f{bottom:76.152127px;}
.y146{bottom:76.409266px;}
.y1b{bottom:76.977750px;}
.y15c{bottom:77.260350px;}
.y35{bottom:79.432432px;}
.yce{bottom:79.868337px;}
.y165{bottom:82.007010px;}
.ya1{bottom:86.531178px;}
.yf3{bottom:91.620770px;}
.y34{bottom:92.231872px;}
.y103{bottom:95.184014px;}
.y118{bottom:97.544595px;}
.y33{bottom:105.031312px;}
.y145{bottom:105.208095px;}
.ycd{bottom:110.038260px;}
.ye0{bottom:114.637860px;}
.ya0{bottom:116.701094px;}
.y32{bottom:117.830932px;}
.y15b{bottom:121.705076px;}
.yf2{bottom:121.792155px;}
.y72{bottom:124.977537px;}
.y102{bottom:125.354669px;}
.y164{bottom:127.177736px;}
.y117{bottom:127.714534px;}
.y31{bottom:130.630372px;}
.y135{bottom:135.068040px;}
.y30{bottom:143.429992px;}
.ydf{bottom:144.808514px;}
.y9f{bottom:146.871750px;}
.y144{bottom:149.651363px;}
.y101{bottom:155.524589px;}
.y2f{bottom:156.229432px;}
.y116{bottom:157.884450px;}
.ycc{bottom:160.563075px;}
.yf1{bottom:172.962075px;}
.yde{bottom:174.979170px;}
.y134{bottom:180.237960px;}
.y71{bottom:183.489622px;}
.y150{bottom:184.319010px;}
.y100{bottom:185.694510px;}
.y115{bottom:188.054366px;}
.y9e{bottom:198.041674px;}
.y6b{bottom:199.242735px;}
.ycb{bottom:211.007801px;}
.y114{bottom:218.225759px;}
.yf0{bottom:224.132730px;}
.y133{bottom:225.407891px;}
.ydd{bottom:226.149119px;}
.y9d{bottom:228.212329px;}
.y14f{bottom:234.843840px;}
.yff{bottom:236.864420px;}
.y113{bottom:248.394215px;}
.y132{bottom:255.577804px;}
.ydc{bottom:256.319032px;}
.y6a{bottom:257.754637px;}
.y9c{bottom:258.382605px;}
.y14e{bottom:263.642669px;}
.yfe{bottom:267.035805px;}
.yef{bottom:275.302973px;}
.y112{bottom:278.565600px;}
.y131{bottom:285.747716px;}
.ydb{bottom:286.489677px;}
.y1a{bottom:288.469566px;}
.y9b{bottom:288.552898px;}
.y69{bottom:302.751708px;}
.y14d{bottom:314.085926px;}
.yc1{bottom:315.410450px;}
.y19{bottom:315.897023px;}
.y130{bottom:315.919114px;}
.yda{bottom:316.659602px;}
.y68{bottom:317.379637px;}
.y9a{bottom:318.722823px;}
.yfd{bottom:320.455741px;}
.yab{bottom:321.593925px;}
.y111{bottom:329.090431px;}
.y18{bottom:343.324485px;}
.yc0{bottom:345.580739px;}
.y12f{bottom:346.089030px;}
.yd9{bottom:346.830257px;}
.y143{bottom:347.600756px;}
.y99{bottom:348.893474px;}
.y110{bottom:357.889260px;}
.y67{bottom:362.376708px;}
.y15a{bottom:366.903000px;}
.y17{bottom:368.170470px;}
.yfc{bottom:373.875659px;}
.ybf{bottom:375.750660px;}
.y12e{bottom:376.258945px;}
.yd8{bottom:377.000177px;}
.y66{bottom:377.004637px;}
.y142{bottom:377.770691px;}
.y98{bottom:379.063395px;}
.y16{bottom:380.911475px;}
.yfb{bottom:404.045580px;}
.y12d{bottom:406.430338px;}
.yd7{bottom:407.170098px;}
.y64{bottom:407.373594px;}
.y10f{bottom:407.688075px;}
.y141{bottom:407.940604px;}
.y159{bottom:412.072916px;}
.y16d{bottom:425.231955px;}
.ybe{bottom:425.630383px;}
.y163{bottom:427.500660px;}
.y97{bottom:432.483316px;}
.y15{bottom:433.699490px;}
.y12c{bottom:436.600259px;}
.y63{bottom:436.629637px;}
.y140{bottom:438.112001px;}
.y158{bottom:442.242840px;}
.yd6{bottom:447.907740px;}
.y60{bottom:452.382938px;}
.yfa{bottom:455.216306px;}
.y10e{bottom:458.132730px;}
.y12b{bottom:466.770180px;}
.y13f{bottom:468.281914px;}
.y16c{bottom:470.661150px;}
.y157{bottom:472.414229px;}
.y162{bottom:472.672046px;}
.ybd{bottom:483.786615px;}
.y96{bottom:485.903978px;}
.y14{bottom:486.487521px;}
.y5f{bottom:496.266727px;}
.yd5{bottom:497.625731px;}
.y13e{bottom:498.451830px;}
.yca{bottom:500.455740px;}
.y156{bottom:502.584150px;}
.y161{bottom:502.840499px;}
.yaa{bottom:503.900385px;}
.y10d{bottom:509.302665px;}
.y95{bottom:516.074265px;}
.y16b{bottom:516.088889px;}
.y12a{bottom:517.940115px;}
.ybc{bottom:525.138420px;}
.y5b{bottom:526.635684px;}
.y13d{bottom:528.621746px;}
.y160{bottom:533.010420px;}
.y12{bottom:539.275491px;}
.ybb{bottom:546.377190px;}
.y155{bottom:547.754070px;}
.yc9{bottom:551.625664px;}
.y5a{bottom:555.891727px;}
.y13c{bottom:558.793139px;}
.y10c{bottom:560.472585px;}
.y16a{bottom:562.805340px;}
.y94{bottom:567.244553px;}
.yba{bottom:567.615240px;}
.yee{bottom:567.802665px;}
.y129{bottom:570.069840px;}
.y54{bottom:571.644835px;}
.y15f{bottom:578.183280px;}
.yc8{bottom:581.795580px;}
.yb9{bottom:588.854010px;}
.y13b{bottom:588.961595px;}
.y10{bottom:592.063474px;}
.y154{bottom:592.923990px;}
.y93{bottom:597.414840px;}
.y169{bottom:607.978199px;}
.yb8{bottom:610.092405px;}
.y10b{bottom:611.642505px;}
.yc7{bottom:611.966234px;}
.y14c{bottom:612.160320px;}
.y128{bottom:617.747580px;}
.yed{bottom:618.972585px;}
.y13a{bottom:619.132980px;}
.y15e{bottom:623.351730px;}
.yb7{bottom:631.331175px;}
.y168{bottom:638.148120px;}
.y92{bottom:640.894680px;}
.yc6{bottom:642.136889px;}
.y153{bottom:643.450284px;}
.y53{bottom:644.784667px;}
.yb6{bottom:652.569585px;}
.y4d{bottom:660.537787px;}
.y14b{bottom:662.685154px;}
.y10a{bottom:662.813160px;}
.y127{bottom:663.175306px;}
.y139{bottom:664.302900px;}
.yf{bottom:665.468265px;}
.y15d{bottom:668.522456px;}
.yec{bottom:670.142503px;}
.y152{bottom:672.247649px;}
.yc5{bottom:672.306809px;}
.yb5{bottom:673.808355px;}
.y167{bottom:683.317379px;}
.y91{bottom:686.322038px;}
.y51{bottom:689.793648px;}
.y14a{bottom:691.483980px;}
.yb4{bottom:695.046390px;}
.y126{bottom:696.820318px;}
.ye{bottom:699.153000px;}
.yeb{bottom:700.313158px;}
.yc4{bottom:702.476730px;}
.y4c{bottom:704.421760px;}
.y90{bottom:713.749780px;}
.y109{bottom:713.983080px;}
.y138{bottom:715.474290px;}
.yb3{bottom:716.285160px;}
.y149{bottom:720.282809px;}
.y151{bottom:722.692379px;}
.y125{bottom:728.113773px;}
.yea{bottom:730.483812px;}
.y48{bottom:734.790719px;}
.yb2{bottom:737.523195px;}
.y8f{bottom:741.176778px;}
.yc3{bottom:753.647385px;}
.yd{bottom:754.780513px;}
.yb1{bottom:758.761965px;}
.y123{bottom:759.410158px;}
.ye9{bottom:760.653000px;}
.y46{bottom:764.046760px;}
.y108{bottom:765.153000px;}
.y137{bottom:765.997650px;}
.y8e{bottom:768.604515px;}
.y148{bottom:770.727533px;}
.y2e{bottom:779.799863px;}
.yae{bottom:780.000728px;}
.y122{bottom:790.705083px;}
.yac{bottom:800.114130px;}
.yc2{bottom:804.817379px;}
.y8d{bottom:807.632340px;}
.y136{bottom:810.442379px;}
.ye8{bottom:811.824394px;}
.yc{bottom:813.149235px;}
.yd4{bottom:816.323655px;}
.y107{bottom:816.323658px;}
.y11f{bottom:822.001465px;}
.ye7{bottom:841.994310px;}
.yb{bottom:846.834015px;}
.y11d{bottom:852.169923px;}
.y8c{bottom:853.059710px;}
.yd3{bottom:867.494303px;}
.y106{bottom:867.494309px;}
.y3c{bottom:869.396298px;}
.ye6{bottom:872.164225px;}
.ya9{bottom:876.664598px;}
.y8b{bottom:880.487077px;}
.ya{bottom:880.518746px;}
.yd2{bottom:897.664235px;}
.yf9{bottom:897.664962px;}
.y105{bottom:897.664965px;}
.y11c{bottom:897.665700px;}
.ye5{bottom:902.335618px;}
.ya8{bottom:906.834885px;}
.y8a{bottom:907.914815px;}
.y43{bottom:920.594235px;}
.yf8{bottom:927.834149px;}
.y11b{bottom:927.834150px;}
.yd1{bottom:927.834152px;}
.y85{bottom:929.779440px;}
.ye4{bottom:932.504804px;}
.y2c{bottom:933.393857px;}
.y89{bottom:935.342178px;}
.y7e{bottom:945.424256px;}
.ya7{bottom:958.005173px;}
.yd0{bottom:958.005535px;}
.y11a{bottom:958.005540px;}
.yf7{bottom:958.005542px;}
.ye3{bottom:962.675460px;}
.y88{bottom:962.769915px;}
.y29{bottom:965.312253px;}
.y147{bottom:973.175460px;}
.y27{bottom:979.940182px;}
.yf6{bottom:988.174727px;}
.ycf{bottom:988.175460px;}
.ya6{bottom:988.175462px;}
.y26{bottom:999.458211px;}
.y87{bottom:1001.797384px;}
.y9{bottom:1003.510491px;}
.ye2{bottom:1016.095384px;}
.y25{bottom:1017.743214px;}
.ya5{bottom:1018.345383px;}
.y7d{bottom:1018.564453px;}
.y79{bottom:1034.317383px;}
.y8{bottom:1037.195260px;}
.y24{bottom:1043.879937px;}
.y7{bottom:1061.880006px;}
.y23{bottom:1077.564751px;}
.y6{bottom:1086.564751px;}
.y5{bottom:1111.249497px;}
.y22{bottom:1111.249566px;}
.y1{bottom:1124.317497px;}
.y1e{bottom:1124.317566px;}
.hd{height:12.799438px;}
.h12{height:14.627930px;}
.hb{height:14.628113px;}
.h20{height:20.113770px;}
.h11{height:25.599060px;}
.hc{height:29.256042px;}
.h2a{height:30.169922px;}
.h28{height:30.171387px;}
.he{height:35.363999px;}
.h21{height:40.227172px;}
.h8{height:40.416001px;}
.h4{height:42.498000px;}
.h13{height:43.883972px;}
.h16{height:43.884156px;}
.h1c{height:44.519999px;}
.h3{height:45.468000px;}
.h2d{height:46.200001px;}
.h2{height:50.519999px;}
.h7{height:51.662979px;}
.h6{height:51.663026px;}
.h26{height:53.046000px;}
.h1d{height:55.572001px;}
.h2e{height:57.170604px;}
.h22{height:57.170611px;}
.h14{height:58.511903px;}
.h1e{height:58.724850px;}
.h1b{height:58.725225px;}
.h27{height:58.725585px;}
.h23{height:59.893019px;}
.h25{height:59.893021px;}
.h2b{height:59.893034px;}
.h24{height:59.893039px;}
.h2c{height:59.893066px;}
.h29{height:60.339845px;}
.h17{height:73.140015px;}
.h18{height:73.140198px;}
.h10{height:76.796997px;}
.h15{height:87.767944px;}
.h1a{height:87.768127px;}
.h9{height:88.593750px;}
.h5{height:122.772005px;}
.ha{height:138.682434px;}
.h1{height:138.682503px;}
.hf{height:166.393433px;}
.h19{height:228.682617px;}
.h1f{height:337.565925px;}
.h0{height:1263.000000px;}
.wc{width:65.250000px;}
.w9{width:76.500000px;}
.w5{width:84.375012px;}
.w8{width:94.499954px;}
.wa{width:113.624954px;}
.wd{width:115.875000px;}
.w7{width:126.000000px;}
.w10{width:178.874954px;}
.wf{width:178.875000px;}
.we{width:178.875012px;}
.w6{width:198.000000px;}
.w3{width:274.500030px;}
.w4{width:437.624910px;}
.wb{width:523.124955px;}
.w2{width:713.249910px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xa{left:6.750000px;}
.xf{left:7.875000px;}
.x24{left:27.151260px;}
.x14{left:29.250011px;}
.x2c{left:37.118416px;}
.x2e{left:45.601416px;}
.x2d{left:49.121495px;}
.x2b{left:53.136527px;}
.x28{left:54.777274px;}
.x29{left:59.072328px;}
.x2a{left:60.779071px;}
.x27{left:62.955316px;}
.x25{left:69.418754px;}
.x1{left:85.049996px;}
.x9{left:86.174995px;}
.xd{left:94.049996px;}
.xe{left:97.424996px;}
.x31{left:112.049996px;}
.x18{left:121.049996px;}
.x19{left:148.049996px;}
.x20{left:156.946497px;}
.x22{left:177.300007px;}
.x30{left:181.054522px;}
.x10{left:182.925007px;}
.x1a{left:184.050007px;}
.x16{left:259.424996px;}
.x35{left:278.647049px;}
.x6{left:291.697454px;}
.x37{left:310.065566px;}
.x8{left:332.403431px;}
.x7{left:342.069498px;}
.x1b{left:355.050015px;}
.x23{left:357.300015px;}
.xb{left:361.800015px;}
.x11{left:382.050015px;}
.x1c{left:421.425015px;}
.x15{left:439.283651px;}
.xc{left:440.680934px;}
.x17{left:442.649651px;}
.x2{left:446.456696px;}
.x3{left:450.956696px;}
.x33{left:489.206696px;}
.x2f{left:500.456696px;}
.x5{left:509.524736px;}
.x26{left:537.300015px;}
.x34{left:563.456696px;}
.x38{left:596.081696px;}
.x12{left:604.799970px;}
.x1e{left:608.456696px;}
.x1f{left:647.269196px;}
.x13{left:682.424970px;}
.x21{left:703.519162px;}
.x32{left:724.331662px;}
.x36{left:748.799996px;}
.x4{left:807.863384px;}
.x1d{left:812.924996px;}
@media print{
.v4{vertical-align:-23.599880pt;}
.v1{vertical-align:-10.727199pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:22.527122pt;}
.v3{vertical-align:23.599838pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000080pt;}
.ls4{letter-spacing:0.000125pt;}
.ls3{letter-spacing:0.000160pt;}
.ls5{letter-spacing:3.988253pt;}
.ls2{letter-spacing:31.988321pt;}
.ws5{word-spacing:-15.370667pt;}
.ws0{word-spacing:-15.093333pt;}
.ws2{word-spacing:-12.074667pt;}
.ws4{word-spacing:-11.477334pt;}
.ws3{word-spacing:-11.178667pt;}
.ws6{word-spacing:-9.222400pt;}
.ws7{word-spacing:-8.803200pt;}
.ws8{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-3.409226pt;}
._1{margin-left:-2.328289pt;}
._0{margin-left:-1.148735pt;}
._2{width:1.152324pt;}
._3{width:3.949067pt;}
._9{width:7.420933pt;}
._26{width:8.379620pt;}
._c{width:11.270508pt;}
._25{width:12.366534pt;}
._1c{width:15.309284pt;}
._5{width:16.276304pt;}
._4{width:19.967835pt;}
._24{width:20.960002pt;}
._18{width:23.395638pt;}
._10{width:24.339657pt;}
._a{width:27.867205pt;}
._f{width:31.866517pt;}
._e{width:36.185081pt;}
._6{width:39.170339pt;}
._7{width:40.776227pt;}
._8{width:47.997674pt;}
._14{width:51.489225pt;}
._28{width:52.630138pt;}
._13{width:55.919695pt;}
._29{width:58.218666pt;}
._d{width:63.935885pt;}
._20{width:68.040495pt;}
._19{width:71.329906pt;}
._1f{width:75.467855pt;}
._16{width:79.813125pt;}
._15{width:80.730924pt;}
._11{width:84.109393pt;}
._1b{width:87.157802pt;}
._1d{width:91.882782pt;}
._1e{width:95.936654pt;}
._12{width:104.074644pt;}
._b{width:127.213348pt;}
._1a{width:223.463638pt;}
._17{width:255.912246pt;}
._21{width:272.117768pt;}
._23{width:303.705003pt;}
._22{width:315.279771pt;}
.fs8{font-size:33.599998pt;}
.fs6{font-size:35.200001pt;}
.fs4{font-size:37.333332pt;}
.fs3{font-size:42.666668pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.666668pt;}
.fs2{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:2.342446pt;}
.y42{bottom:2.342610pt;}
.y2d{bottom:2.342612pt;}
.y45{bottom:2.342773pt;}
.y62{bottom:2.677100pt;}
.y4b{bottom:2.677268pt;}
.y47{bottom:2.677271pt;}
.y2b{bottom:2.677277pt;}
.y52{bottom:2.677424pt;}
.y77{bottom:2.677429pt;}
.y5e{bottom:2.677432pt;}
.y28{bottom:2.677433pt;}
.y70{bottom:2.677440pt;}
.y84{bottom:2.677590pt;}
.yb0{bottom:3.681247pt;}
.yad{bottom:3.681573pt;}
.ya4{bottom:11.473216pt;}
.y21{bottom:11.473297pt;}
.y4{bottom:11.473339pt;}
.y7c{bottom:11.473541pt;}
.y121{bottom:12.619071pt;}
.y124{bottom:12.620375pt;}
.y11e{bottom:12.621677pt;}
.y41{bottom:13.719890pt;}
.y3a{bottom:13.719900pt;}
.y44{bottom:13.720053pt;}
.y59{bottom:15.679870pt;}
.y50{bottom:15.679873pt;}
.y4a{bottom:15.680028pt;}
.y5d{bottom:15.680032pt;}
.y2a{bottom:15.680037pt;}
.y6f{bottom:15.680040pt;}
.y65{bottom:15.680045pt;}
.y76{bottom:15.680202pt;}
.y83{bottom:15.680364pt;}
.yaf{bottom:21.560153pt;}
.y13{bottom:23.349314pt;}
.y11{bottom:23.349356pt;}
.y40{bottom:25.097330pt;}
.y39{bottom:25.097340pt;}
.y1d{bottom:26.978706pt;}
.ya2{bottom:28.125866pt;}
.y86{bottom:28.126186pt;}
.y61{bottom:28.682473pt;}
.y4f{bottom:28.682633pt;}
.y6e{bottom:28.682640pt;}
.y49{bottom:28.682641pt;}
.y58{bottom:28.682644pt;}
.y75{bottom:28.682802pt;}
.y5c{bottom:28.682805pt;}
.y82{bottom:28.682964pt;}
.yf5{bottom:35.853099pt;}
.y20{bottom:35.853261pt;}
.y3{bottom:35.853333pt;}
.y7b{bottom:35.853424pt;}
.ya3{bottom:35.853749pt;}
.y3f{bottom:36.474610pt;}
.y38{bottom:36.474620pt;}
.y120{bottom:39.438084pt;}
.y57{bottom:41.685244pt;}
.y4e{bottom:41.685246pt;}
.y6d{bottom:41.685253pt;}
.y74{bottom:41.685416pt;}
.y81{bottom:41.685577pt;}
.y1c{bottom:47.630013pt;}
.y78{bottom:47.630093pt;}
.y37{bottom:47.851886pt;}
.y3e{bottom:47.852050pt;}
.y56{bottom:54.687857pt;}
.y6c{bottom:54.688013pt;}
.y73{bottom:54.688176pt;}
.y80{bottom:54.688338pt;}
.ye1{bottom:57.706613pt;}
.y104{bottom:57.789653pt;}
.y36{bottom:59.229166pt;}
.y3d{bottom:59.229330pt;}
.y119{bottom:59.887298pt;}
.yf4{bottom:60.232656pt;}
.y1f{bottom:60.233307pt;}
.y2{bottom:60.233333pt;}
.y7a{bottom:60.233469pt;}
.y166{bottom:60.233959pt;}
.y55{bottom:67.690617pt;}
.y7f{bottom:67.690780pt;}
.y146{bottom:67.919348pt;}
.y1b{bottom:68.424666pt;}
.y15c{bottom:68.675867pt;}
.y35{bottom:70.606606pt;}
.yce{bottom:70.994077pt;}
.y165{bottom:72.895120pt;}
.ya1{bottom:76.916603pt;}
.yf3{bottom:81.440685pt;}
.y34{bottom:81.983886pt;}
.y103{bottom:84.608012pt;}
.y118{bottom:86.706307pt;}
.y33{bottom:93.361166pt;}
.y145{bottom:93.518307pt;}
.ycd{bottom:97.811787pt;}
.ye0{bottom:101.900320pt;}
.ya0{bottom:103.734306pt;}
.y32{bottom:104.738606pt;}
.y15b{bottom:108.182290pt;}
.yf2{bottom:108.259693pt;}
.y72{bottom:111.091144pt;}
.y102{bottom:111.426372pt;}
.y164{bottom:113.046877pt;}
.y117{bottom:113.524030pt;}
.y31{bottom:116.115886pt;}
.y135{bottom:120.060480pt;}
.y30{bottom:127.493326pt;}
.ydf{bottom:128.718679pt;}
.y9f{bottom:130.552667pt;}
.y144{bottom:133.023434pt;}
.y101{bottom:138.244079pt;}
.y2f{bottom:138.870606pt;}
.y116{bottom:140.341733pt;}
.ycc{bottom:142.722733pt;}
.yf1{bottom:153.744067pt;}
.yde{bottom:155.537040pt;}
.y134{bottom:160.211520pt;}
.y71{bottom:163.101886pt;}
.y150{bottom:163.839120pt;}
.y100{bottom:165.061787pt;}
.y115{bottom:167.159436pt;}
.y9e{bottom:176.037043pt;}
.y6b{bottom:177.104653pt;}
.ycb{bottom:187.562490pt;}
.y114{bottom:193.978452pt;}
.yf0{bottom:199.229093pt;}
.y133{bottom:200.362570pt;}
.ydd{bottom:201.021439pt;}
.y9d{bottom:202.855403pt;}
.y14f{bottom:208.750080pt;}
.yff{bottom:210.546151pt;}
.y113{bottom:220.794858pt;}
.y132{bottom:227.180270pt;}
.ydc{bottom:227.839139pt;}
.y6a{bottom:229.115233pt;}
.y9c{bottom:229.673426pt;}
.y14e{bottom:234.349039pt;}
.yfe{bottom:237.365160pt;}
.yef{bottom:244.713753pt;}
.y112{bottom:247.613867pt;}
.y131{bottom:253.997970pt;}
.ydb{bottom:254.657490pt;}
.y1a{bottom:256.417392pt;}
.y9b{bottom:256.491465pt;}
.y69{bottom:269.112629pt;}
.y14d{bottom:279.187490pt;}
.yc1{bottom:280.364844pt;}
.y19{bottom:280.797354pt;}
.y130{bottom:280.816990pt;}
.yda{bottom:281.475201pt;}
.y68{bottom:282.115233pt;}
.y9a{bottom:283.309176pt;}
.yfd{bottom:284.849548pt;}
.yab{bottom:285.861267pt;}
.y111{bottom:292.524828pt;}
.y18{bottom:305.177320pt;}
.yc0{bottom:307.182879pt;}
.y12f{bottom:307.634693pt;}
.yd9{bottom:308.293561pt;}
.y143{bottom:308.978450pt;}
.y99{bottom:310.127532pt;}
.y110{bottom:318.123787pt;}
.y67{bottom:322.112629pt;}
.y15a{bottom:326.136000pt;}
.y17{bottom:327.262640pt;}
.yfc{bottom:332.333919pt;}
.ybf{bottom:334.000587pt;}
.y12e{bottom:334.452396pt;}
.yd8{bottom:335.111268pt;}
.y66{bottom:335.115233pt;}
.y142{bottom:335.796170pt;}
.y98{bottom:336.945240pt;}
.y16{bottom:338.587977pt;}
.yfb{bottom:359.151627pt;}
.y12d{bottom:361.271412pt;}
.yd7{bottom:361.928976pt;}
.y64{bottom:362.109861pt;}
.y10f{bottom:362.389400pt;}
.y141{bottom:362.613870pt;}
.y159{bottom:366.287036pt;}
.y16d{bottom:377.983960pt;}
.ybe{bottom:378.338119pt;}
.y163{bottom:380.000587pt;}
.y97{bottom:384.429614pt;}
.y15{bottom:385.510657pt;}
.y12c{bottom:388.089119pt;}
.y63{bottom:388.115233pt;}
.y140{bottom:389.432890pt;}
.y158{bottom:393.104747pt;}
.yd6{bottom:398.140213pt;}
.y60{bottom:402.118167pt;}
.yfa{bottom:404.636717pt;}
.y10e{bottom:407.229093pt;}
.y12b{bottom:414.906827pt;}
.y13f{bottom:416.250590pt;}
.y16c{bottom:418.365467pt;}
.y157{bottom:419.923759pt;}
.y162{bottom:420.152929pt;}
.ybd{bottom:430.032547pt;}
.y96{bottom:431.914647pt;}
.y14{bottom:432.433352pt;}
.y5f{bottom:441.125980pt;}
.yd5{bottom:442.333983pt;}
.y13e{bottom:443.068293pt;}
.yca{bottom:444.849547pt;}
.y156{bottom:446.741467pt;}
.y161{bottom:446.969332pt;}
.yaa{bottom:447.911453pt;}
.y10d{bottom:452.713480pt;}
.y95{bottom:458.732680pt;}
.y16b{bottom:458.745680pt;}
.y12a{bottom:460.391213pt;}
.ybc{bottom:466.789707pt;}
.y5b{bottom:468.120608pt;}
.y13d{bottom:469.885996pt;}
.y160{bottom:473.787040pt;}
.y12{bottom:479.355992pt;}
.ybb{bottom:485.668614pt;}
.y155{bottom:486.892507pt;}
.yc9{bottom:490.333923pt;}
.y5a{bottom:494.125980pt;}
.y13c{bottom:496.705012pt;}
.y10c{bottom:498.197853pt;}
.y16a{bottom:500.271413pt;}
.y94{bottom:504.217380pt;}
.yba{bottom:504.546880pt;}
.yee{bottom:504.713480pt;}
.y129{bottom:506.728747pt;}
.y54{bottom:508.128743pt;}
.y15f{bottom:513.940693pt;}
.yc8{bottom:517.151626pt;}
.yb9{bottom:523.425787pt;}
.y13b{bottom:523.521418pt;}
.y10{bottom:526.278644pt;}
.y154{bottom:527.043547pt;}
.y93{bottom:531.035413pt;}
.y169{bottom:540.425066pt;}
.yb8{bottom:542.304360pt;}
.y10b{bottom:543.682227pt;}
.yc7{bottom:543.969985pt;}
.y14c{bottom:544.142507pt;}
.y128{bottom:549.108960pt;}
.yed{bottom:550.197853pt;}
.y13a{bottom:550.340427pt;}
.y15e{bottom:554.090427pt;}
.yb7{bottom:561.183267pt;}
.y168{bottom:567.242773pt;}
.y92{bottom:569.684160pt;}
.yc6{bottom:570.788345pt;}
.y153{bottom:571.955808pt;}
.y53{bottom:573.141926pt;}
.yb6{bottom:580.061854pt;}
.y4d{bottom:587.144700pt;}
.y14b{bottom:589.053470pt;}
.y10a{bottom:589.167253pt;}
.y127{bottom:589.489161pt;}
.y139{bottom:590.491467pt;}
.yf{bottom:591.527346pt;}
.y15d{bottom:594.242183pt;}
.yec{bottom:595.682225pt;}
.y152{bottom:597.553466pt;}
.yc5{bottom:597.606052pt;}
.yb5{bottom:598.940760pt;}
.y167{bottom:607.393226pt;}
.y91{bottom:610.064034pt;}
.y51{bottom:613.149909pt;}
.y14a{bottom:614.652427pt;}
.yb4{bottom:617.819014pt;}
.y126{bottom:619.395839pt;}
.ye{bottom:621.469333pt;}
.yeb{bottom:622.500585pt;}
.yc4{bottom:624.423760pt;}
.y4c{bottom:626.152676pt;}
.y90{bottom:634.444249pt;}
.y109{bottom:634.651627pt;}
.y138{bottom:635.977147pt;}
.yb3{bottom:636.697920pt;}
.y149{bottom:640.251386pt;}
.y151{bottom:642.393226pt;}
.y125{bottom:647.212243pt;}
.yea{bottom:649.318944pt;}
.y48{bottom:653.147305pt;}
.yb2{bottom:655.576174pt;}
.y8f{bottom:658.823803pt;}
.yc3{bottom:669.908787pt;}
.yd{bottom:670.916012pt;}
.yb1{bottom:674.455080pt;}
.y123{bottom:675.031252pt;}
.ye9{bottom:676.136000pt;}
.y46{bottom:679.152676pt;}
.y108{bottom:680.136000pt;}
.y137{bottom:680.886800pt;}
.y8e{bottom:683.204013pt;}
.y148{bottom:685.091140pt;}
.y2e{bottom:693.155433pt;}
.yae{bottom:693.333980pt;}
.y122{bottom:702.848963pt;}
.yac{bottom:711.212560pt;}
.yc2{bottom:715.393226pt;}
.y8d{bottom:717.895413pt;}
.y136{bottom:720.393226pt;}
.ye8{bottom:721.621683pt;}
.yc{bottom:722.799320pt;}
.yd4{bottom:725.621027pt;}
.y107{bottom:725.621029pt;}
.y11f{bottom:730.667969pt;}
.ye7{bottom:748.439386pt;}
.yb{bottom:752.741346pt;}
.y11d{bottom:757.484376pt;}
.y8c{bottom:758.275298pt;}
.yd3{bottom:771.106047pt;}
.y106{bottom:771.106053pt;}
.y3c{bottom:772.796709pt;}
.ye6{bottom:775.257089pt;}
.ya9{bottom:779.257421pt;}
.y8b{bottom:782.655180pt;}
.ya{bottom:782.683330pt;}
.yd2{bottom:797.923765pt;}
.yf9{bottom:797.924410pt;}
.y105{bottom:797.924413pt;}
.y11c{bottom:797.925067pt;}
.ye5{bottom:802.076105pt;}
.ya8{bottom:806.075453pt;}
.y8a{bottom:807.035391pt;}
.y43{bottom:818.305987pt;}
.yf8{bottom:824.741465pt;}
.y11b{bottom:824.741467pt;}
.yd1{bottom:824.741469pt;}
.y85{bottom:826.470613pt;}
.ye4{bottom:828.893159pt;}
.y2c{bottom:829.683428pt;}
.y89{bottom:831.415270pt;}
.y7e{bottom:840.377116pt;}
.ya7{bottom:851.560153pt;}
.yd0{bottom:851.560476pt;}
.y11a{bottom:851.560480pt;}
.yf7{bottom:851.560481pt;}
.ye3{bottom:855.711520pt;}
.y88{bottom:855.795480pt;}
.y29{bottom:858.055336pt;}
.y147{bottom:865.044853pt;}
.y27{bottom:871.057940pt;}
.yf6{bottom:878.377535pt;}
.ycf{bottom:878.378187pt;}
.ya6{bottom:878.378188pt;}
.y26{bottom:888.407299pt;}
.y87{bottom:890.486564pt;}
.y9{bottom:892.009325pt;}
.ye2{bottom:903.195897pt;}
.y25{bottom:904.660635pt;}
.ya5{bottom:905.195896pt;}
.y7d{bottom:905.390625pt;}
.y79{bottom:919.393229pt;}
.y8{bottom:921.951342pt;}
.y24{bottom:927.893277pt;}
.y7{bottom:943.893338pt;}
.y23{bottom:957.835334pt;}
.y6{bottom:965.835334pt;}
.y5{bottom:987.777330pt;}
.y22{bottom:987.777392pt;}
.y1{bottom:999.393331pt;}
.y1e{bottom:999.393392pt;}
.hd{height:11.377279pt;}
.h12{height:13.002604pt;}
.hb{height:13.002767pt;}
.h20{height:17.878906pt;}
.h11{height:22.754720pt;}
.hc{height:26.005371pt;}
.h2a{height:26.817708pt;}
.h28{height:26.819011pt;}
.he{height:31.434666pt;}
.h21{height:35.757487pt;}
.h8{height:35.925334pt;}
.h4{height:37.776000pt;}
.h13{height:39.007975pt;}
.h16{height:39.008139pt;}
.h1c{height:39.573332pt;}
.h3{height:40.416000pt;}
.h2d{height:41.066668pt;}
.h2{height:44.906666pt;}
.h7{height:45.922648pt;}
.h6{height:45.922689pt;}
.h26{height:47.152000pt;}
.h1d{height:49.397334pt;}
.h2e{height:50.818315pt;}
.h22{height:50.818321pt;}
.h14{height:52.010580pt;}
.h1e{height:52.199867pt;}
.h1b{height:52.200200pt;}
.h27{height:52.200520pt;}
.h23{height:53.238239pt;}
.h25{height:53.238241pt;}
.h2b{height:53.238253pt;}
.h24{height:53.238257pt;}
.h2c{height:53.238281pt;}
.h29{height:53.635417pt;}
.h17{height:65.013347pt;}
.h18{height:65.013509pt;}
.h10{height:68.263997pt;}
.h15{height:78.015951pt;}
.h1a{height:78.016113pt;}
.h9{height:78.750000pt;}
.h5{height:109.130671pt;}
.ha{height:123.273275pt;}
.h1{height:123.273336pt;}
.hf{height:147.905273pt;}
.h19{height:203.273437pt;}
.h1f{height:300.058600pt;}
.h0{height:1122.666667pt;}
.wc{width:58.000000pt;}
.w9{width:68.000000pt;}
.w5{width:75.000011pt;}
.w8{width:83.999959pt;}
.wa{width:100.999959pt;}
.wd{width:103.000000pt;}
.w7{width:112.000000pt;}
.w10{width:158.999959pt;}
.wf{width:159.000000pt;}
.we{width:159.000011pt;}
.w6{width:176.000000pt;}
.w3{width:244.000027pt;}
.w4{width:388.999920pt;}
.wb{width:464.999960pt;}
.w2{width:633.999920pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xa{left:6.000000pt;}
.xf{left:7.000000pt;}
.x24{left:24.134453pt;}
.x14{left:26.000009pt;}
.x2c{left:32.994148pt;}
.x2e{left:40.534592pt;}
.x2d{left:43.663551pt;}
.x2b{left:47.232468pt;}
.x28{left:48.690910pt;}
.x29{left:52.508736pt;}
.x2a{left:54.025841pt;}
.x27{left:55.960281pt;}
.x25{left:61.705559pt;}
.x1{left:75.599996pt;}
.x9{left:76.599996pt;}
.xd{left:83.599996pt;}
.xe{left:86.599996pt;}
.x31{left:99.599996pt;}
.x18{left:107.599996pt;}
.x19{left:131.599996pt;}
.x20{left:139.507997pt;}
.x22{left:157.600007pt;}
.x30{left:160.937353pt;}
.x10{left:162.600007pt;}
.x1a{left:163.600007pt;}
.x16{left:230.599996pt;}
.x35{left:247.686266pt;}
.x6{left:259.286626pt;}
.x37{left:275.613836pt;}
.x8{left:295.469716pt;}
.x7{left:304.061776pt;}
.x1b{left:315.600013pt;}
.x23{left:317.600013pt;}
.xb{left:321.600013pt;}
.x11{left:339.600013pt;}
.x1c{left:374.600013pt;}
.x15{left:390.474356pt;}
.xc{left:391.716386pt;}
.x17{left:393.466356pt;}
.x2{left:396.850396pt;}
.x3{left:400.850396pt;}
.x33{left:434.850396pt;}
.x2f{left:444.850396pt;}
.x5{left:452.910876pt;}
.x26{left:477.600013pt;}
.x34{left:500.850396pt;}
.x38{left:529.850396pt;}
.x12{left:537.599973pt;}
.x1e{left:540.850396pt;}
.x1f{left:575.350396pt;}
.x13{left:606.599973pt;}
.x21{left:625.350366pt;}
.x32{left:643.850366pt;}
.x36{left:665.599996pt;}
.x4{left:718.100786pt;}
.x1d{left:722.599996pt;}
}




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