
    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_2f88c710f539a83751f364f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_d13ecbc94f16055c76b1b782.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.994141;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_8f5fb68d26a8ebe7bd9bcdab.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010742;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_0cce197ef2f53ac457c5b1a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3deda45b4c87be43776c4641.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_d4300a5342bbf7433fff608c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bd8ab873a25b7fa4a674d9c9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.239988px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.187842px;}
.lsa{letter-spacing:0.189257px;}
.ls4{letter-spacing:0.272306px;}
.ls3{letter-spacing:0.272340px;}
.ls5{letter-spacing:0.374281px;}
.ls9{letter-spacing:0.378602px;}
.ls1{letter-spacing:46.065102px;}
.ls7{letter-spacing:64.076247px;}
.ls6{letter-spacing:64.076494px;}
.ls8{letter-spacing:64.079226px;}
.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;}
}
.ws4{word-spacing:-35.855986px;}
.ws1{word-spacing:-14.939994px;}
.ws3{word-spacing:-12.434276px;}
.ws0{word-spacing:-12.059995px;}
.ws2{word-spacing:0.000000px;}
._20{margin-left:-3.940991px;}
._a{margin-left:-2.676261px;}
._0{margin-left:-1.440826px;}
._2{width:1.002396px;}
._5{width:2.623696px;}
._9{width:4.068055px;}
._d{width:5.153303px;}
._e{width:6.446369px;}
._b{width:7.539555px;}
._8{width:8.642872px;}
._7{width:10.278212px;}
._6{width:11.404722px;}
._11{width:13.121105px;}
._19{width:16.161324px;}
._13{width:17.255335px;}
._f{width:19.137214px;}
._26{width:20.214411px;}
._14{width:21.457251px;}
._15{width:22.469792px;}
._12{width:24.007725px;}
._10{width:25.153345px;}
._16{width:26.889975px;}
._1b{width:28.489225px;}
._1c{width:31.266899px;}
._1d{width:39.022981px;}
._17{width:40.515539px;}
._28{width:45.634513px;}
._29{width:46.998821px;}
._27{width:51.398064px;}
._2f{width:58.847678px;}
._1e{width:71.783902px;}
._2b{width:85.673809px;}
._2e{width:93.399203px;}
._1{width:100.137638px;}
._2a{width:113.624580px;}
._1f{width:124.748291px;}
._1a{width:148.445535px;}
._21{width:172.902945px;}
._c{width:211.638515px;}
._3{width:231.194081px;}
._25{width:256.314212px;}
._24{width:257.427725px;}
._18{width:323.515819px;}
._2d{width:370.631120px;}
._2c{width:371.855091px;}
._23{width:603.763538px;}
._22{width:604.782289px;}
._4{width:1036.867572px;}
.fc4{color:rgb(19,52,59);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:12.239995px;}
.fs1{font-size:17.999993px;}
.fs4{font-size:23.759990px;}
.fsa{font-size:30.239988px;}
.fs5{font-size:35.999986px;}
.fs8{font-size:38.879984px;}
.fs6{font-size:41.759983px;}
.fs2{font-size:48.239981px;}
.fs0{font-size:53.999978px;}
.fs3{font-size:59.759976px;}
.fsb{font-size:66.239974px;}
.fs7{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.yad{bottom:3.419026px;}
.yaf{bottom:3.419033px;}
.yb1{bottom:3.419040px;}
.yb3{bottom:3.419049px;}
.yda{bottom:3.419056px;}
.yb5{bottom:3.419059px;}
.ydc{bottom:3.419062px;}
.yb8{bottom:3.419068px;}
.yba{bottom:3.419075px;}
.ybc{bottom:3.419084px;}
.ye1{bottom:3.419086px;}
.ybe{bottom:3.419091px;}
.yc0{bottom:3.419097px;}
.ye4{bottom:3.419104px;}
.ye8{bottom:3.419123px;}
.yeb{bottom:3.419135px;}
.yef{bottom:3.419153px;}
.yf3{bottom:3.419171px;}
.yf7{bottom:3.419189px;}
.y9{bottom:68.880272px;}
.y8{bottom:78.600269px;}
.y7{bottom:96.599961px;}
.yd2{bottom:136.919945px;}
.y77{bottom:137.100245px;}
.y10c{bottom:142.679943px;}
.y43{bottom:148.619941px;}
.y128{bottom:154.739938px;}
.y76{bottom:155.639938px;}
.y11d{bottom:156.179938px;}
.ya1{bottom:156.899937px;}
.y15a{bottom:161.039936px;}
.y10b{bottom:161.219936px;}
.y42{bottom:167.159933px;}
.y127{bottom:173.459931px;}
.yd1{bottom:174.179930px;}
.y75{bottom:174.359930px;}
.y11c{bottom:174.899930px;}
.ya0{bottom:175.439930px;}
.y159{bottom:179.579928px;}
.y10a{bottom:179.939928px;}
.y41{bottom:185.879926px;}
.y126{bottom:191.999923px;}
.y74{bottom:192.899923px;}
.y11b{bottom:193.619923px;}
.y9f{bottom:194.159922px;}
.y158{bottom:198.299921px;}
.y109{bottom:198.479921px;}
.y40{bottom:204.419918px;}
.yd0{bottom:211.439915px;}
.y73{bottom:211.619915px;}
.y11a{bottom:212.159915px;}
.y9e{bottom:212.699915px;}
.y108{bottom:217.199913px;}
.y157{bottom:217.559913px;}
.y3f{bottom:223.139911px;}
.y125{bottom:229.979908px;}
.ycf{bottom:230.159908px;}
.y72{bottom:230.339908px;}
.y119{bottom:230.879908px;}
.y9d{bottom:231.239908px;}
.y107{bottom:235.739906px;}
.y156{bottom:236.279905px;}
.y3e{bottom:241.859903px;}
.y124{bottom:248.699901px;}
.y71{bottom:248.879900px;}
.y9c{bottom:249.239900px;}
.y118{bottom:249.419900px;}
.y106{bottom:254.459898px;}
.y155{bottom:254.819898px;}
.y3d{bottom:260.399896px;}
.y123{bottom:267.239893px;}
.yce{bottom:267.419893px;}
.y70{bottom:267.599893px;}
.y117{bottom:268.139893px;}
.y105{bottom:273.179891px;}
.y154{bottom:274.259890px;}
.y3c{bottom:279.119888px;}
.y6f{bottom:286.139886px;}
.y116{bottom:286.679885px;}
.y104{bottom:291.719883px;}
.y153{bottom:292.799883px;}
.y3b{bottom:297.659881px;}
.y6e{bottom:304.679878px;}
.y9b{bottom:304.859878px;}
.y122{bottom:305.219878px;}
.y115{bottom:305.399878px;}
.y103{bottom:310.439876px;}
.y152{bottom:311.519875px;}
.y3a{bottom:316.379873px;}
.y6d{bottom:322.679871px;}
.y9a{bottom:323.399871px;}
.y114{bottom:323.939870px;}
.y102{bottom:328.979868px;}
.y151{bottom:329.519868px;}
.y39{bottom:334.919866px;}
.y6c{bottom:341.039864px;}
.ycd{bottom:341.939863px;}
.y99{bottom:342.119863px;}
.y121{bottom:342.479863px;}
.y113{bottom:342.659863px;}
.y101{bottom:347.699861px;}
.y150{bottom:348.779860px;}
.y38{bottom:353.639859px;}
.y6b{bottom:359.579856px;}
.y98{bottom:360.659856px;}
.y112{bottom:361.379855px;}
.y120{bottom:361.919855px;}
.y100{bottom:366.239854px;}
.y14f{bottom:367.499853px;}
.y37{bottom:372.179851px;}
.y6a{bottom:378.299849px;}
.ycc{bottom:379.199848px;}
.y97{bottom:379.379848px;}
.y111{bottom:379.919848px;}
.yff{bottom:384.959846px;}
.y14e{bottom:386.039846px;}
.y36{bottom:390.899844px;}
.y69{bottom:396.839841px;}
.ycb{bottom:397.919841px;}
.y96{bottom:398.099841px;}
.y110{bottom:398.639841px;}
.yfe{bottom:403.499839px;}
.y14d{bottom:405.479838px;}
.y35{bottom:409.619836px;}
.y68{bottom:415.559834px;}
.y95{bottom:416.639833px;}
.y10f{bottom:417.179833px;}
.yfd{bottom:422.219831px;}
.y14c{bottom:424.019830px;}
.y34{bottom:428.159829px;}
.y67{bottom:434.279826px;}
.yca{bottom:435.179826px;}
.y94{bottom:435.359826px;}
.yfc{bottom:440.939824px;}
.y14b{bottom:442.739823px;}
.y33{bottom:446.879821px;}
.y66{bottom:452.819819px;}
.y93{bottom:453.899818px;}
.yfb{bottom:459.479816px;}
.y14a{bottom:461.999815px;}
.y32{bottom:465.239814px;}
.y65{bottom:471.539811px;}
.yc9{bottom:472.439811px;}
.y92{bottom:472.619811px;}
.yfa{bottom:478.199809px;}
.y31{bottom:480.539808px;}
.y149{bottom:480.719808px;}
.y30{bottom:488.099805px;}
.y64{bottom:490.079804px;}
.y91{bottom:491.159804px;}
.yf9{bottom:496.919801px;}
.y148{bottom:499.259800px;}
.y2f{bottom:499.619800px;}
.y63{bottom:508.799796px;}
.y2e{bottom:509.699796px;}
.y90{bottom:509.879796px;}
.yf8{bottom:511.859795px;}
.y147{bottom:518.699793px;}
.yf6{bottom:523.200600px;}
.y62{bottom:527.339789px;}
.y2d{bottom:528.239789px;}
.y8f{bottom:528.419789px;}
.y146{bottom:537.239785px;}
.yf5{bottom:542.279783px;}
.y2c{bottom:544.619782px;}
.y61{bottom:546.059782px;}
.yc8{bottom:546.959781px;}
.y8e{bottom:547.139781px;}
.y2b{bottom:555.959778px;}
.y145{bottom:556.679777px;}
.yf4{bottom:557.219777px;}
.y60{bottom:564.599774px;}
.yc7{bottom:565.679774px;}
.y8d{bottom:565.859774px;}
.yf2{bottom:568.740600px;}
.y2a{bottom:574.679770px;}
.y144{bottom:575.219770px;}
.y5f{bottom:583.319767px;}
.y8c{bottom:584.399766px;}
.yf1{bottom:587.819765px;}
.y29{bottom:593.219763px;}
.y143{bottom:593.759762px;}
.y5e{bottom:602.039759px;}
.yf0{bottom:602.759759px;}
.yc6{bottom:602.939759px;}
.y8b{bottom:603.119759px;}
.y28{bottom:611.939755px;}
.y142{bottom:613.199755px;}
.yee{bottom:614.280600px;}
.y5d{bottom:620.579752px;}
.y8a{bottom:621.659751px;}
.y27{bottom:630.479748px;}
.y141{bottom:631.739747px;}
.yed{bottom:633.359747px;}
.y5c{bottom:639.299744px;}
.yc5{bottom:640.199744px;}
.y89{bottom:640.379744px;}
.yec{bottom:648.299741px;}
.y26{bottom:649.199740px;}
.y140{bottom:651.179740px;}
.y5b{bottom:657.839737px;}
.y88{bottom:658.919736px;}
.yea{bottom:659.640600px;}
.y25{bottom:667.739733px;}
.y13f{bottom:669.719732px;}
.y5a{bottom:676.559729px;}
.yc4{bottom:677.459729px;}
.y87{bottom:677.639729px;}
.ye9{bottom:678.719729px;}
.y24{bottom:686.459725px;}
.y13e{bottom:689.159724px;}
.ye7{bottom:690.240600px;}
.y59{bottom:695.099722px;}
.yc3{bottom:695.999722px;}
.y86{bottom:696.359721px;}
.y23{bottom:705.179718px;}
.y13d{bottom:707.699717px;}
.ye6{bottom:709.319716px;}
.y58{bottom:713.819714px;}
.yc2{bottom:713.999714px;}
.y10e{bottom:714.719714px;}
.y85{bottom:714.899714px;}
.y22{bottom:723.719711px;}
.ye5{bottom:724.259710px;}
.y13c{bottom:726.959709px;}
.yc1{bottom:731.819707px;}
.y57{bottom:732.359707px;}
.y10d{bottom:732.719707px;}
.y84{bottom:733.619707px;}
.ye3{bottom:735.780600px;}
.y21{bottom:742.439703px;}
.y13b{bottom:745.679702px;}
.y56{bottom:751.079700px;}
.y11f{bottom:751.979699px;}
.y83{bottom:752.159699px;}
.ybf{bottom:754.320600px;}
.ye2{bottom:754.859698px;}
.y20{bottom:760.979696px;}
.y13a{bottom:764.939694px;}
.y55{bottom:769.799692px;}
.ybd{bottom:769.980600px;}
.y11e{bottom:770.159692px;}
.y82{bottom:770.879692px;}
.y1f{bottom:779.699688px;}
.ye0{bottom:781.320600px;}
.y139{bottom:783.659687px;}
.ybb{bottom:786.540600px;}
.y54{bottom:788.339685px;}
.y81{bottom:789.419684px;}
.y1e{bottom:795.719682px;}
.ydf{bottom:800.399680px;}
.y138{bottom:802.199679px;}
.y1d{bottom:805.619678px;}
.y53{bottom:807.059677px;}
.y80{bottom:808.139677px;}
.yb9{bottom:809.940600px;}
.yde{bottom:815.339674px;}
.y137{bottom:821.639671px;}
.y1c{bottom:823.079671px;}
.y52{bottom:825.599670px;}
.yb7{bottom:825.600600px;}
.y7f{bottom:826.679669px;}
.yb6{bottom:829.199668px;}
.ydd{bottom:830.099668px;}
.y1b{bottom:838.019665px;}
.y136{bottom:840.179664px;}
.ydb{bottom:841.620600px;}
.y51{bottom:844.319662px;}
.y7e{bottom:845.399662px;}
.yb4{bottom:849.720600px;}
.y1a{bottom:853.679659px;}
.y15f{bottom:854.579658px;}
.yd9{bottom:857.280600px;}
.y135{bottom:858.899656px;}
.yd7{bottom:861.059656px;}
.y50{bottom:862.859655px;}
.y7d{bottom:864.119654px;}
.y19{bottom:872.219651px;}
.yd8{bottom:872.940600px;}
.y15e{bottom:873.839650px;}
.yb2{bottom:873.840600px;}
.yd6{bottom:875.999650px;}
.y134{bottom:878.159649px;}
.y4f{bottom:881.579647px;}
.y7c{bottom:882.659647px;}
.y18{bottom:890.939644px;}
.yd5{bottom:892.739643px;}
.y15d{bottom:894.359642px;}
.y133{bottom:896.699641px;}
.yb0{bottom:897.420600px;}
.y4e{bottom:900.119640px;}
.y7b{bottom:901.379639px;}
.y17{bottom:909.659636px;}
.yd4{bottom:911.459635px;}
.yae{bottom:913.080600px;}
.y15c{bottom:914.879634px;}
.y132{bottom:916.139634px;}
.y4d{bottom:918.839632px;}
.y7a{bottom:919.919632px;}
.yd3{bottom:927.479629px;}
.y16{bottom:928.199629px;}
.yac{bottom:932.700600px;}
.y131{bottom:934.859626px;}
.yab{bottom:936.299625px;}
.y4c{bottom:937.559625px;}
.y79{bottom:938.459625px;}
.y15{bottom:943.499623px;}
.y13{bottom:950.339620px;}
.y130{bottom:953.399619px;}
.y14{bottom:954.119618px;}
.y4b{bottom:956.099618px;}
.y78{bottom:956.459617px;}
.yaa{bottom:959.699616px;}
.ya6{bottom:967.259613px;}
.y12{bottom:968.519613px;}
.y15b{bottom:971.939611px;}
.y12f{bottom:972.659611px;}
.ya9{bottom:974.639610px;}
.y4a{bottom:974.819610px;}
.ya4{bottom:982.199607px;}
.y11{bottom:989.399604px;}
.ya8{bottom:989.579604px;}
.y12e{bottom:991.379603px;}
.y49{bottom:993.359603px;}
.ya5{bottom:997.139601px;}
.ya7{bottom:1004.519598px;}
.y12d{bottom:1009.919596px;}
.y48{bottom:1012.079595px;}
.y10{bottom:1018.379593px;}
.ya3{bottom:1028.819588px;}
.y12c{bottom:1029.359588px;}
.y47{bottom:1030.619588px;}
.yf{bottom:1047.179581px;}
.y12b{bottom:1047.899581px;}
.ya2{bottom:1048.079581px;}
.y46{bottom:1049.339580px;}
.y12a{bottom:1067.339573px;}
.y45{bottom:1067.879573px;}
.ye{bottom:1073.099571px;}
.y129{bottom:1085.879566px;}
.y44{bottom:1086.599565px;}
.yd{bottom:1088.039565px;}
.y6{bottom:1113.059555px;}
.y5{bottom:1125.479550px;}
.y4{bottom:1133.759546px;}
.y3{bottom:1150.499540px;}
.yc{bottom:1159.319536px;}
.y2{bottom:1163.639535px;}
.yb{bottom:1171.379531px;}
.ya{bottom:1182.179527px;}
.y1{bottom:1196.039522px;}
.hc{height:8.923004px;}
.h2{height:13.104487px;}
.h14{height:14.760000px;}
.h6{height:15.836126px;}
.he{height:17.297923px;}
.hf{height:22.074601px;}
.h7{height:26.244130px;}
.hb{height:28.343661px;}
.h11{height:30.402410px;}
.h8{height:30.483972px;}
.hd{height:35.120025px;}
.h3{height:35.167134px;}
.h4{height:35.214244px;}
.h1{height:39.313461px;}
.h12{height:39.366195px;}
.h16{height:43.360998px;}
.h5{height:43.506897px;}
.ha{height:43.565256px;}
.h10{height:43.623615px;}
.h13{height:48.224512px;}
.h15{height:65.360013px;}
.h9{height:69.809386px;}
.h0{height:1263.000000px;}
.w16{width:2.880000px;}
.w10{width:3.780000px;}
.w1{width:7.200000px;}
.w18{width:7.560000px;}
.wa{width:9.000000px;}
.w14{width:9.900000px;}
.w9{width:12.060000px;}
.wd{width:13.680000px;}
.wb{width:14.760000px;}
.w4{width:14.940000px;}
.w13{width:16.020000px;}
.w15{width:20.520000px;}
.w3{width:21.060000px;}
.wc{width:21.240000px;}
.w8{width:25.200000px;}
.w7{width:26.460000px;}
.w12{width:27.900000px;}
.we{width:30.780000px;}
.wf{width:33.120000px;}
.w2{width:35.100000px;}
.w1a{width:35.460000px;}
.w11{width:37.260000px;}
.w5{width:41.400000px;}
.w6{width:52.200000px;}
.w19{width:53.280000px;}
.w17{width:92.340000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:107.999957px;}
.x6a{left:123.660000px;}
.x47{left:127.079949px;}
.x46{left:130.679948px;}
.x6b{left:132.660000px;}
.x7b{left:135.000008px;}
.x43{left:136.079946px;}
.x18{left:153.179939px;}
.x17{left:154.793938px;}
.x4{left:160.019662px;}
.x2d{left:161.100000px;}
.x1a{left:164.159934px;}
.x3b{left:166.859933px;}
.x28{left:172.979931px;}
.x42{left:174.780000px;}
.x41{left:175.860000px;}
.xb{left:182.519927px;}
.x3f{left:186.300000px;}
.x3a{left:187.560000px;}
.x15{left:192.419140px;}
.x2e{left:196.200000px;}
.x13{left:199.079920px;}
.x5{left:200.519920px;}
.x38{left:202.320000px;}
.x39{left:213.300000px;}
.x45{left:218.879862px;}
.x79{left:225.179910px;}
.xc{left:236.159954px;}
.x19{left:248.399901px;}
.x1b{left:250.919900px;}
.x6c{left:269.100000px;}
.x44{left:270.539892px;}
.x57{left:274.860000px;}
.xd{left:281.519889px;}
.x58{left:289.620000px;}
.x48{left:296.820000px;}
.x2f{left:299.880000px;}
.x6d{left:311.760000px;}
.xa{left:313.559875px;}
.x59{left:316.980000px;}
.x30{left:320.940000px;}
.x49{left:329.940000px;}
.x14{left:332.279108px;}
.x4a{left:333.720000px;}
.x16{left:338.579284px;}
.xe{left:342.899851px;}
.x2{left:353.160301px;}
.x5a{left:355.140000px;}
.x4b{left:370.980000px;}
.x6e{left:373.320000px;}
.x4c{left:374.760000px;}
.x5b{left:380.340000px;}
.x29{left:384.300000px;}
.x1c{left:390.419844px;}
.x5c{left:399.420000px;}
.x1d{left:400.499840px;}
.x4d{left:402.660000px;}
.x31{left:418.860000px;}
.x6f{left:420.480000px;}
.x6{left:424.619830px;}
.xf{left:425.879830px;}
.x10{left:430.739828px;}
.x32{left:433.800000px;}
.x3{left:446.400357px;}
.x5d{left:452.520000px;}
.x7a{left:462.599815px;}
.x5e{left:467.280000px;}
.x2a{left:476.100000px;}
.x1f{left:477.719809px;}
.x1e{left:482.399807px;}
.x70{left:489.240000px;}
.x8{left:490.859858px;}
.x20{left:496.079802px;}
.x33{left:507.600000px;}
.x4e{left:509.760000px;}
.x4f{left:513.540000px;}
.x3c{left:518.220000px;}
.x40{left:519.660000px;}
.x34{left:528.660000px;}
.x5f{left:532.260000px;}
.x77{left:543.780000px;}
.x11{left:545.219782px;}
.x12{left:550.079780px;}
.x71{left:552.780000px;}
.x50{left:554.580000px;}
.x60{left:557.460000px;}
.x2b{left:567.900000px;}
.x22{left:569.879772px;}
.x72{left:574.200000px;}
.x7{left:576.539769px;}
.x21{left:582.299767px;}
.x23{left:584.099766px;}
.x24{left:589.679764px;}
.x61{left:596.160000px;}
.x62{left:599.040000px;}
.x35{left:607.680000px;}
.x73{left:616.860000px;}
.x3d{left:618.300000px;}
.x63{left:621.000000px;}
.x36{left:628.740000px;}
.x64{left:635.760000px;}
.x9{left:637.919745px;}
.x51{left:651.960000px;}
.x74{left:655.920000px;}
.x65{left:660.960000px;}
.x66{left:674.640000px;}
.x2c{left:676.260000px;}
.x26{left:681.479727px;}
.x52{left:685.080000px;}
.x53{left:688.860000px;}
.x25{left:690.119724px;}
.x27{left:696.059722px;}
.x3e{left:706.140000px;}
.x37{left:716.760000px;}
.x78{left:717.840000px;}
.x67{left:721.620000px;}
.x54{left:726.120000px;}
.x55{left:729.900000px;}
.x75{left:738.360000px;}
.x56{left:739.800000px;}
.x68{left:741.060000px;}
.x76{left:759.420000px;}
.x69{left:771.840000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.879989pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.166971pt;}
.lsa{letter-spacing:0.168228pt;}
.ls4{letter-spacing:0.242050pt;}
.ls3{letter-spacing:0.242080pt;}
.ls5{letter-spacing:0.332694pt;}
.ls9{letter-spacing:0.336535pt;}
.ls1{letter-spacing:40.946757pt;}
.ls7{letter-spacing:56.956664pt;}
.ls6{letter-spacing:56.956884pt;}
.ls8{letter-spacing:56.959312pt;}
.ws4{word-spacing:-31.871987pt;}
.ws1{word-spacing:-13.279995pt;}
.ws3{word-spacing:-11.052689pt;}
.ws0{word-spacing:-10.719996pt;}
.ws2{word-spacing:0.000000pt;}
._20{margin-left:-3.503104pt;}
._a{margin-left:-2.378898pt;}
._0{margin-left:-1.280735pt;}
._2{width:0.891019pt;}
._5{width:2.332174pt;}
._9{width:3.616049pt;}
._d{width:4.580714pt;}
._e{width:5.730106pt;}
._b{width:6.701827pt;}
._8{width:7.682553pt;}
._7{width:9.136188pt;}
._6{width:10.137530pt;}
._11{width:11.663204pt;}
._19{width:14.365621pt;}
._13{width:15.338075pt;}
._f{width:17.010857pt;}
._26{width:17.968365pt;}
._14{width:19.073112pt;}
._15{width:19.973149pt;}
._12{width:21.340200pt;}
._10{width:22.358529pt;}
._16{width:23.902200pt;}
._1b{width:25.323755pt;}
._1c{width:27.792799pt;}
._1d{width:34.687094pt;}
._17{width:36.013813pt;}
._28{width:40.564011pt;}
._29{width:41.776730pt;}
._27{width:45.687168pt;}
._2f{width:52.309048pt;}
._1e{width:63.807913pt;}
._2b{width:76.154497pt;}
._2e{width:83.021513pt;}
._1{width:89.011234pt;}
._2a{width:100.999627pt;}
._1f{width:110.887370pt;}
._1a{width:131.951587pt;}
._21{width:153.691507pt;}
._c{width:188.123125pt;}
._3{width:205.505850pt;}
._25{width:227.834855pt;}
._24{width:228.824645pt;}
._18{width:287.569617pt;}
._2d{width:329.449885pt;}
._2c{width:330.537859pt;}
._23{width:536.678701pt;}
._22{width:537.584257pt;}
._4{width:921.660064pt;}
.fs9{font-size:10.879996pt;}
.fs1{font-size:15.999994pt;}
.fs4{font-size:21.119992pt;}
.fsa{font-size:26.879989pt;}
.fs5{font-size:31.999987pt;}
.fs8{font-size:34.559986pt;}
.fs6{font-size:37.119985pt;}
.fs2{font-size:42.879983pt;}
.fs0{font-size:47.999981pt;}
.fs3{font-size:53.119979pt;}
.fsb{font-size:58.879976pt;}
.fs7{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:3.039134pt;}
.yaf{bottom:3.039141pt;}
.yb1{bottom:3.039146pt;}
.yb3{bottom:3.039155pt;}
.yda{bottom:3.039161pt;}
.yb5{bottom:3.039163pt;}
.ydc{bottom:3.039166pt;}
.yb8{bottom:3.039172pt;}
.yba{bottom:3.039177pt;}
.ybc{bottom:3.039186pt;}
.ye1{bottom:3.039188pt;}
.ybe{bottom:3.039192pt;}
.yc0{bottom:3.039197pt;}
.ye4{bottom:3.039204pt;}
.ye8{bottom:3.039220pt;}
.yeb{bottom:3.039231pt;}
.yef{bottom:3.039247pt;}
.yf3{bottom:3.039263pt;}
.yf7{bottom:3.039279pt;}
.y9{bottom:61.226909pt;}
.y8{bottom:69.866905pt;}
.y7{bottom:85.866632pt;}
.yd2{bottom:121.706618pt;}
.y77{bottom:121.866885pt;}
.y10c{bottom:126.826616pt;}
.y43{bottom:132.106614pt;}
.y128{bottom:137.546612pt;}
.y76{bottom:138.346611pt;}
.y11d{bottom:138.826611pt;}
.ya1{bottom:139.466611pt;}
.y15a{bottom:143.146609pt;}
.y10b{bottom:143.306609pt;}
.y42{bottom:148.586607pt;}
.y127{bottom:154.186605pt;}
.yd1{bottom:154.826605pt;}
.y75{bottom:154.986605pt;}
.y11c{bottom:155.466604pt;}
.ya0{bottom:155.946604pt;}
.y159{bottom:159.626603pt;}
.y10a{bottom:159.946603pt;}
.y41{bottom:165.226601pt;}
.y126{bottom:170.666598pt;}
.y74{bottom:171.466598pt;}
.y11b{bottom:172.106598pt;}
.y9f{bottom:172.586598pt;}
.y158{bottom:176.266596pt;}
.y109{bottom:176.426596pt;}
.y40{bottom:181.706594pt;}
.yd0{bottom:187.946591pt;}
.y73{bottom:188.106591pt;}
.y11a{bottom:188.586591pt;}
.y9e{bottom:189.066591pt;}
.y108{bottom:193.066589pt;}
.y157{bottom:193.386589pt;}
.y3f{bottom:198.346587pt;}
.y125{bottom:204.426585pt;}
.ycf{bottom:204.586585pt;}
.y72{bottom:204.746585pt;}
.y119{bottom:205.226585pt;}
.y9d{bottom:205.546584pt;}
.y107{bottom:209.546583pt;}
.y156{bottom:210.026583pt;}
.y3e{bottom:214.986581pt;}
.y124{bottom:221.066578pt;}
.y71{bottom:221.226578pt;}
.y9c{bottom:221.546578pt;}
.y118{bottom:221.706578pt;}
.y106{bottom:226.186576pt;}
.y155{bottom:226.506576pt;}
.y3d{bottom:231.466574pt;}
.y123{bottom:237.546572pt;}
.yce{bottom:237.706572pt;}
.y70{bottom:237.866572pt;}
.y117{bottom:238.346571pt;}
.y105{bottom:242.826570pt;}
.y154{bottom:243.786569pt;}
.y3c{bottom:248.106567pt;}
.y6f{bottom:254.346565pt;}
.y116{bottom:254.826565pt;}
.y104{bottom:259.306563pt;}
.y153{bottom:260.266563pt;}
.y3b{bottom:264.586561pt;}
.y6e{bottom:270.826558pt;}
.y9b{bottom:270.986558pt;}
.y122{bottom:271.306558pt;}
.y115{bottom:271.466558pt;}
.y103{bottom:275.946556pt;}
.y152{bottom:276.906556pt;}
.y3a{bottom:281.226554pt;}
.y6d{bottom:286.826552pt;}
.y9a{bottom:287.466552pt;}
.y114{bottom:287.946551pt;}
.y102{bottom:292.426550pt;}
.y151{bottom:292.906550pt;}
.y39{bottom:297.706548pt;}
.y6c{bottom:303.146545pt;}
.ycd{bottom:303.946545pt;}
.y99{bottom:304.106545pt;}
.y121{bottom:304.426545pt;}
.y113{bottom:304.586545pt;}
.y101{bottom:309.066543pt;}
.y150{bottom:310.026543pt;}
.y38{bottom:314.346541pt;}
.y6b{bottom:319.626539pt;}
.y98{bottom:320.586538pt;}
.y112{bottom:321.226538pt;}
.y120{bottom:321.706538pt;}
.y100{bottom:325.546536pt;}
.y14f{bottom:326.666536pt;}
.y37{bottom:330.826534pt;}
.y6a{bottom:336.266532pt;}
.ycc{bottom:337.066532pt;}
.y97{bottom:337.226532pt;}
.y111{bottom:337.706532pt;}
.yff{bottom:342.186530pt;}
.y14e{bottom:343.146529pt;}
.y36{bottom:347.466528pt;}
.y69{bottom:352.746526pt;}
.ycb{bottom:353.706525pt;}
.y96{bottom:353.866525pt;}
.y110{bottom:354.346525pt;}
.yfe{bottom:358.666523pt;}
.y14d{bottom:360.426522pt;}
.y35{bottom:364.106521pt;}
.y68{bottom:369.386519pt;}
.y95{bottom:370.346519pt;}
.y10f{bottom:370.826518pt;}
.yfd{bottom:375.306517pt;}
.y14c{bottom:376.906516pt;}
.y34{bottom:380.586514pt;}
.y67{bottom:386.026512pt;}
.yca{bottom:386.826512pt;}
.y94{bottom:386.986512pt;}
.yfc{bottom:391.946510pt;}
.y14b{bottom:393.546509pt;}
.y33{bottom:397.226508pt;}
.y66{bottom:402.506506pt;}
.y93{bottom:403.466505pt;}
.yfb{bottom:408.426503pt;}
.y14a{bottom:410.666502pt;}
.y32{bottom:413.546501pt;}
.y65{bottom:419.146499pt;}
.yc9{bottom:419.946499pt;}
.y92{bottom:420.106499pt;}
.yfa{bottom:425.066497pt;}
.y31{bottom:427.146496pt;}
.y149{bottom:427.306496pt;}
.y30{bottom:433.866493pt;}
.y64{bottom:435.626492pt;}
.y91{bottom:436.586492pt;}
.yf9{bottom:441.706490pt;}
.y148{bottom:443.786489pt;}
.y2f{bottom:444.106489pt;}
.y63{bottom:452.266486pt;}
.y2e{bottom:453.066485pt;}
.y90{bottom:453.226485pt;}
.yf8{bottom:454.986485pt;}
.y147{bottom:461.066482pt;}
.yf6{bottom:465.067200pt;}
.y62{bottom:468.746479pt;}
.y2d{bottom:469.546479pt;}
.y8f{bottom:469.706479pt;}
.y146{bottom:477.546476pt;}
.yf5{bottom:482.026474pt;}
.y2c{bottom:484.106473pt;}
.y61{bottom:485.386473pt;}
.yc8{bottom:486.186472pt;}
.y8e{bottom:486.346472pt;}
.y2b{bottom:494.186469pt;}
.y145{bottom:494.826469pt;}
.yf4{bottom:495.306469pt;}
.y60{bottom:501.866466pt;}
.yc7{bottom:502.826466pt;}
.y8d{bottom:502.986465pt;}
.yf2{bottom:505.547200pt;}
.y2a{bottom:510.826462pt;}
.y144{bottom:511.306462pt;}
.y5f{bottom:518.506459pt;}
.y8c{bottom:519.466459pt;}
.yf1{bottom:522.506458pt;}
.y29{bottom:527.306456pt;}
.y143{bottom:527.786456pt;}
.y5e{bottom:535.146453pt;}
.yf0{bottom:535.786452pt;}
.yc6{bottom:535.946452pt;}
.y8b{bottom:536.106452pt;}
.y28{bottom:543.946449pt;}
.y142{bottom:545.066449pt;}
.yee{bottom:546.027200pt;}
.y5d{bottom:551.626446pt;}
.y8a{bottom:552.586446pt;}
.y27{bottom:560.426442pt;}
.y141{bottom:561.546442pt;}
.yed{bottom:562.986441pt;}
.y5c{bottom:568.266439pt;}
.yc5{bottom:569.066439pt;}
.y89{bottom:569.226439pt;}
.yec{bottom:576.266436pt;}
.y26{bottom:577.066436pt;}
.y140{bottom:578.826435pt;}
.y5b{bottom:584.746433pt;}
.y88{bottom:585.706432pt;}
.yea{bottom:586.347200pt;}
.y25{bottom:593.546429pt;}
.y13f{bottom:595.306429pt;}
.y5a{bottom:601.386426pt;}
.yc4{bottom:602.186426pt;}
.y87{bottom:602.346426pt;}
.ye9{bottom:603.306425pt;}
.y24{bottom:610.186423pt;}
.y13e{bottom:612.586422pt;}
.ye7{bottom:613.547200pt;}
.y59{bottom:617.866420pt;}
.yc3{bottom:618.666419pt;}
.y86{bottom:618.986419pt;}
.y23{bottom:626.826416pt;}
.y13d{bottom:629.066415pt;}
.ye6{bottom:630.506414pt;}
.y58{bottom:634.506413pt;}
.yc2{bottom:634.666413pt;}
.y10e{bottom:635.306413pt;}
.y85{bottom:635.466412pt;}
.y22{bottom:643.306409pt;}
.ye5{bottom:643.786409pt;}
.y13c{bottom:646.186408pt;}
.yc1{bottom:650.506406pt;}
.y57{bottom:650.986406pt;}
.y10d{bottom:651.306406pt;}
.y84{bottom:652.106406pt;}
.ye3{bottom:654.027200pt;}
.y21{bottom:659.946403pt;}
.y13b{bottom:662.826402pt;}
.y56{bottom:667.626400pt;}
.y11f{bottom:668.426399pt;}
.y83{bottom:668.586399pt;}
.ybf{bottom:670.507200pt;}
.ye2{bottom:670.986398pt;}
.y20{bottom:676.426396pt;}
.y13a{bottom:679.946395pt;}
.y55{bottom:684.266393pt;}
.ybd{bottom:684.427200pt;}
.y11e{bottom:684.586393pt;}
.y82{bottom:685.226393pt;}
.y1f{bottom:693.066389pt;}
.ye0{bottom:694.507200pt;}
.y139{bottom:696.586388pt;}
.ybb{bottom:699.147200pt;}
.y54{bottom:700.746386pt;}
.y81{bottom:701.706386pt;}
.y1e{bottom:707.306384pt;}
.ydf{bottom:711.466382pt;}
.y138{bottom:713.066381pt;}
.y1d{bottom:716.106380pt;}
.y53{bottom:717.386380pt;}
.y80{bottom:718.346379pt;}
.yb9{bottom:719.947200pt;}
.yde{bottom:724.746377pt;}
.y137{bottom:730.346375pt;}
.y1c{bottom:731.626374pt;}
.y52{bottom:733.866373pt;}
.yb7{bottom:733.867200pt;}
.y7f{bottom:734.826373pt;}
.yb6{bottom:737.066372pt;}
.ydd{bottom:737.866372pt;}
.y1b{bottom:744.906369pt;}
.y136{bottom:746.826368pt;}
.ydb{bottom:748.107200pt;}
.y51{bottom:750.506366pt;}
.y7e{bottom:751.466366pt;}
.yb4{bottom:755.307200pt;}
.y1a{bottom:758.826363pt;}
.y15f{bottom:759.626363pt;}
.yd9{bottom:762.027200pt;}
.y135{bottom:763.466361pt;}
.yd7{bottom:765.386361pt;}
.y50{bottom:766.986360pt;}
.y7d{bottom:768.106359pt;}
.y19{bottom:775.306357pt;}
.yd8{bottom:775.947200pt;}
.y15e{bottom:776.746356pt;}
.yb2{bottom:776.747200pt;}
.yd6{bottom:778.666355pt;}
.y134{bottom:780.586354pt;}
.y4f{bottom:783.626353pt;}
.y7c{bottom:784.586353pt;}
.y18{bottom:791.946350pt;}
.yd5{bottom:793.546349pt;}
.y15d{bottom:794.986349pt;}
.y133{bottom:797.066348pt;}
.yb0{bottom:797.707200pt;}
.y4e{bottom:800.106347pt;}
.y7b{bottom:801.226346pt;}
.y17{bottom:808.586343pt;}
.yd4{bottom:810.186343pt;}
.yae{bottom:811.627200pt;}
.y15c{bottom:813.226341pt;}
.y132{bottom:814.346341pt;}
.y4d{bottom:816.746340pt;}
.y7a{bottom:817.706340pt;}
.yd3{bottom:824.426337pt;}
.y16{bottom:825.066337pt;}
.yac{bottom:829.067200pt;}
.y131{bottom:830.986334pt;}
.yab{bottom:832.266334pt;}
.y4c{bottom:833.386333pt;}
.y79{bottom:834.186333pt;}
.y15{bottom:838.666331pt;}
.y13{bottom:844.746329pt;}
.y130{bottom:847.466328pt;}
.y14{bottom:848.106327pt;}
.y4b{bottom:849.866327pt;}
.y78{bottom:850.186327pt;}
.yaa{bottom:853.066325pt;}
.ya6{bottom:859.786323pt;}
.y12{bottom:860.906322pt;}
.y15b{bottom:863.946321pt;}
.y12f{bottom:864.586321pt;}
.ya9{bottom:866.346320pt;}
.y4a{bottom:866.506320pt;}
.ya4{bottom:873.066317pt;}
.y11{bottom:879.466315pt;}
.ya8{bottom:879.626315pt;}
.y12e{bottom:881.226314pt;}
.y49{bottom:882.986313pt;}
.ya5{bottom:886.346312pt;}
.ya7{bottom:892.906310pt;}
.y12d{bottom:897.706308pt;}
.y48{bottom:899.626307pt;}
.y10{bottom:905.226305pt;}
.ya3{bottom:914.506301pt;}
.y12c{bottom:914.986301pt;}
.y47{bottom:916.106300pt;}
.yf{bottom:930.826294pt;}
.y12b{bottom:931.466294pt;}
.ya2{bottom:931.626294pt;}
.y46{bottom:932.746294pt;}
.y12a{bottom:948.746287pt;}
.y45{bottom:949.226287pt;}
.ye{bottom:953.866285pt;}
.y129{bottom:965.226281pt;}
.y44{bottom:965.866280pt;}
.yd{bottom:967.146280pt;}
.y6{bottom:989.386271pt;}
.y5{bottom:1000.426266pt;}
.y4{bottom:1007.786264pt;}
.y3{bottom:1022.666258pt;}
.yc{bottom:1030.506254pt;}
.y2{bottom:1034.346253pt;}
.yb{bottom:1041.226250pt;}
.ya{bottom:1050.826246pt;}
.y1{bottom:1063.146241pt;}
.hc{height:7.931559pt;}
.h2{height:11.648433pt;}
.h14{height:13.120000pt;}
.h6{height:14.076557pt;}
.he{height:15.375931pt;}
.hf{height:19.621867pt;}
.h7{height:23.328116pt;}
.hb{height:25.194365pt;}
.h11{height:27.024364pt;}
.h8{height:27.096864pt;}
.hd{height:31.217800pt;}
.h3{height:31.259675pt;}
.h4{height:31.301550pt;}
.h1{height:34.945299pt;}
.h12{height:34.992174pt;}
.h16{height:38.543110pt;}
.h5{height:38.672797pt;}
.ha{height:38.724672pt;}
.h10{height:38.776547pt;}
.h13{height:42.866233pt;}
.h15{height:58.097789pt;}
.h9{height:62.052788pt;}
.h0{height:1122.666667pt;}
.w16{width:2.560000pt;}
.w10{width:3.360000pt;}
.w1{width:6.400000pt;}
.w18{width:6.720000pt;}
.wa{width:8.000000pt;}
.w14{width:8.800000pt;}
.w9{width:10.720000pt;}
.wd{width:12.160000pt;}
.wb{width:13.120000pt;}
.w4{width:13.280000pt;}
.w13{width:14.240000pt;}
.w15{width:18.240000pt;}
.w3{width:18.720000pt;}
.wc{width:18.880000pt;}
.w8{width:22.400000pt;}
.w7{width:23.520000pt;}
.w12{width:24.800000pt;}
.we{width:27.360000pt;}
.wf{width:29.440000pt;}
.w2{width:31.200000pt;}
.w1a{width:31.520000pt;}
.w11{width:33.120000pt;}
.w5{width:36.800000pt;}
.w6{width:46.400000pt;}
.w19{width:47.360000pt;}
.w17{width:82.080000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:95.999962pt;}
.x6a{left:109.920000pt;}
.x47{left:112.959955pt;}
.x46{left:116.159954pt;}
.x6b{left:117.920000pt;}
.x7b{left:120.000007pt;}
.x43{left:120.959952pt;}
.x18{left:136.159946pt;}
.x17{left:137.594612pt;}
.x4{left:142.239699pt;}
.x2d{left:143.200000pt;}
.x1a{left:145.919942pt;}
.x3b{left:148.319941pt;}
.x28{left:153.759938pt;}
.x42{left:155.360000pt;}
.x41{left:156.320000pt;}
.xb{left:162.239935pt;}
.x3f{left:165.600000pt;}
.x3a{left:166.720000pt;}
.x15{left:171.039236pt;}
.x2e{left:174.400000pt;}
.x13{left:176.959929pt;}
.x5{left:178.239929pt;}
.x38{left:179.840000pt;}
.x39{left:189.600000pt;}
.x45{left:194.559878pt;}
.x79{left:200.159920pt;}
.xc{left:209.919959pt;}
.x19{left:220.799912pt;}
.x1b{left:223.039911pt;}
.x6c{left:239.200000pt;}
.x44{left:240.479904pt;}
.x57{left:244.320000pt;}
.xd{left:250.239902pt;}
.x58{left:257.440000pt;}
.x48{left:263.840000pt;}
.x2f{left:266.560000pt;}
.x6d{left:277.120000pt;}
.xa{left:278.719889pt;}
.x59{left:281.760000pt;}
.x30{left:285.280000pt;}
.x49{left:293.280000pt;}
.x14{left:295.359207pt;}
.x4a{left:296.640000pt;}
.x16{left:300.959364pt;}
.xe{left:304.799867pt;}
.x2{left:313.920268pt;}
.x5a{left:315.680000pt;}
.x4b{left:329.760000pt;}
.x6e{left:331.840000pt;}
.x4c{left:333.120000pt;}
.x5b{left:338.080000pt;}
.x29{left:341.600000pt;}
.x1c{left:347.039861pt;}
.x5c{left:355.040000pt;}
.x1d{left:355.999858pt;}
.x4d{left:357.920000pt;}
.x31{left:372.320000pt;}
.x6f{left:373.760000pt;}
.x6{left:377.439849pt;}
.xf{left:378.559849pt;}
.x10{left:382.879847pt;}
.x32{left:385.600000pt;}
.x3{left:396.800317pt;}
.x5d{left:402.240000pt;}
.x7a{left:411.199836pt;}
.x5e{left:415.360000pt;}
.x2a{left:423.200000pt;}
.x1f{left:424.639830pt;}
.x1e{left:428.799828pt;}
.x70{left:434.880000pt;}
.x8{left:436.319874pt;}
.x20{left:440.959824pt;}
.x33{left:451.200000pt;}
.x4e{left:453.120000pt;}
.x4f{left:456.480000pt;}
.x3c{left:460.640000pt;}
.x40{left:461.920000pt;}
.x34{left:469.920000pt;}
.x5f{left:473.120000pt;}
.x77{left:483.360000pt;}
.x11{left:484.639806pt;}
.x12{left:488.959804pt;}
.x71{left:491.360000pt;}
.x50{left:492.960000pt;}
.x60{left:495.520000pt;}
.x2b{left:504.800000pt;}
.x22{left:506.559797pt;}
.x72{left:510.400000pt;}
.x7{left:512.479795pt;}
.x21{left:517.599793pt;}
.x23{left:519.199792pt;}
.x24{left:524.159790pt;}
.x61{left:529.920000pt;}
.x62{left:532.480000pt;}
.x35{left:540.160000pt;}
.x73{left:548.320000pt;}
.x3d{left:549.600000pt;}
.x63{left:552.000000pt;}
.x36{left:558.880000pt;}
.x64{left:565.120000pt;}
.x9{left:567.039773pt;}
.x51{left:579.520000pt;}
.x74{left:583.040000pt;}
.x65{left:587.520000pt;}
.x66{left:599.680000pt;}
.x2c{left:601.120000pt;}
.x26{left:605.759758pt;}
.x52{left:608.960000pt;}
.x53{left:612.320000pt;}
.x25{left:613.439755pt;}
.x27{left:618.719753pt;}
.x3e{left:627.680000pt;}
.x37{left:637.120000pt;}
.x78{left:638.080000pt;}
.x67{left:641.440000pt;}
.x54{left:645.440000pt;}
.x55{left:648.800000pt;}
.x75{left:656.320000pt;}
.x56{left:657.600000pt;}
.x68{left:658.720000pt;}
.x76{left:675.040000pt;}
.x69{left:686.080000pt;}
}




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