
    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_8f6a04dfbbd046350b566331.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_a5dc1bbd085c51e2bbb7dbb0.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_98a077fce3a7e2f7bb4c17ff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.118652;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_5ba7766bffefb3dbb03181c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.017578;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_41381fcd8df3d461790e36bc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.774902;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_d717ba370c7610bec3b585e6.woff')format("woff");}.ff6{font-family:ff6;line-height:1.001953;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_dc2acb5bdf42559f57593e68.woff')format("woff");}.ff7{font-family:ff7;line-height:1.118652;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_8d958c7b900a1ec5ec91fff3.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d832e96d236a5f8e651d90fa.woff')format("woff");}.ff9{font-family:ff9;line-height:1.002930;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_aab4503d46cfab0aecc12fb6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.002930;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_dacdd2507dfe2c7638150318.woff')format("woff");}.ffb{font-family:ffb;line-height:0.862793;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_9755b1347ba215664a8f00db.woff')format("woff");}.ffc{font-family:ffc;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-62.789040px;}
.v5{vertical-align:-19.999980px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:20.000040px;}
.v2{vertical-align:22.000020px;}
.v4{vertical-align:24.000000px;}
.v6{vertical-align:27.133020px;}
.v8{vertical-align:30.466980px;}
.v9{vertical-align:42.000000px;}
.v7{vertical-align:46.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.000060px;}
.ls5{letter-spacing:1.260000px;}
.ls4{letter-spacing:2.709840px;}
.ls7{letter-spacing:9.677940px;}
.ls6{letter-spacing:13.416600px;}
.ls3{letter-spacing:1626.662820px;}
.ls2{letter-spacing:1626.711000px;}
.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;}
}
.ws23{word-spacing:-21.696000px;}
.ws3{word-spacing:-17.628000px;}
.ws7{word-spacing:-15.840000px;}
.ws4{word-spacing:-14.520000px;}
.wsc{word-spacing:-13.560000px;}
.ws18{word-spacing:-13.200000px;}
.ws5{word-spacing:-12.204000px;}
.ws14{word-spacing:-11.880000px;}
.ws12{word-spacing:-10.890000px;}
.ws15{word-spacing:-10.560000px;}
.wsb{word-spacing:-10.170000px;}
.ws1b{word-spacing:-9.900000px;}
.ws2{word-spacing:-8.910000px;}
.ws24{word-spacing:-0.072000px;}
.ws1e{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.054000px;}
.wsd{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws9{word-spacing:303.251400px;}
.wsf{word-spacing:303.251460px;}
.ws8{word-spacing:446.252700px;}
.ws10{word-spacing:525.672900px;}
.ws13{word-spacing:710.523960px;}
.wsa{word-spacing:736.808400px;}
.ws11{word-spacing:770.913840px;}
.ws1f{word-spacing:1584.878820px;}
.ws1c{word-spacing:1584.878940px;}
.ws21{word-spacing:1584.926940px;}
.ws1{word-spacing:1718.609820px;}
.ws22{word-spacing:2005.129200px;}
.ws20{word-spacing:2005.142220px;}
.ws25{word-spacing:2005.143660px;}
.ws1d{word-spacing:2005.148880px;}
.ws16{word-spacing:2034.982320px;}
.wse{word-spacing:2034.990480px;}
.ws17{word-spacing:2034.996240px;}
.ws19{word-spacing:2034.998160px;}
.ws1a{word-spacing:2034.999420px;}
._2c{margin-left:-13.847640px;}
._28{margin-left:-7.488000px;}
._1{margin-left:-6.336000px;}
._d{margin-left:-4.980000px;}
._c{margin-left:-3.308940px;}
._4{margin-left:-2.115060px;}
._0{margin-left:-1.080000px;}
._3{width:1.006140px;}
._7{width:2.277780px;}
._6{width:3.406200px;}
._9{width:4.436220px;}
._8{width:5.558760px;}
._b{width:6.924720px;}
._11{width:8.798580px;}
._a{width:10.317720px;}
._13{width:11.654820px;}
._5{width:12.695520px;}
._29{width:14.529240px;}
._2{width:15.983460px;}
._e{width:17.815800px;}
._f{width:19.571580px;}
._10{width:20.995380px;}
._14{width:22.229160px;}
._15{width:23.453160px;}
._16{width:24.724560px;}
._17{width:26.020740px;}
._18{width:27.581880px;}
._2f{width:28.617420px;}
._12{width:29.648580px;}
._30{width:30.787680px;}
._2e{width:32.080080px;}
._2b{width:33.735720px;}
._2d{width:35.485080px;}
._19{width:43.741260px;}
._23{width:106.709460px;}
._22{width:134.966580px;}
._2a{width:192.096000px;}
._25{width:346.579020px;}
._26{width:391.991460px;}
._1f{width:457.142700px;}
._1a{width:463.033200px;}
._24{width:468.151080px;}
._27{width:483.734460px;}
._1d{width:510.840900px;}
._21{width:654.215520px;}
._1e{width:677.239080px;}
._1b{width:785.558580px;}
._1c{width:839.153520px;}
._20{width:941.434020px;}
.fc1{color:rgb(1,101,172);}
.fc2{color:rgb(172,172,172);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:40.500000px;}
.fsb{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs5{font-size:49.500000px;}
.fs1{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fsa{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:38.845560px;}
.y93{bottom:38.845575px;}
.y1e{bottom:40.110840px;}
.y71{bottom:45.628815px;}
.y16d{bottom:45.628860px;}
.y49{bottom:53.245560px;}
.y92{bottom:53.245590px;}
.y1d{bottom:56.310840px;}
.y1c{bottom:102.135105px;}
.y70{bottom:132.808995px;}
.yfd{bottom:137.808960px;}
.y48{bottom:137.808990px;}
.y193{bottom:146.963700px;}
.y6f{bottom:150.808995px;}
.y1d3{bottom:151.463805px;}
.y91{bottom:151.763880px;}
.y10a{bottom:153.563760px;}
.y117{bottom:155.808960px;}
.y47{bottom:162.058995px;}
.y163{bottom:164.963790px;}
.y192{bottom:168.563730px;}
.y6e{bottom:168.808995px;}
.y1d2{bottom:173.063835px;}
.y90{bottom:173.363910px;}
.y137{bottom:173.808960px;}
.y109{bottom:175.163790px;}
.y1af{bottom:176.663850px;}
.y16c{bottom:179.363715px;}
.y16b{bottom:180.058995px;}
.y46{bottom:185.058990px;}
.y162{bottom:186.563820px;}
.y6d{bottom:186.808995px;}
.y191{bottom:190.163760px;}
.yfc{bottom:190.163955px;}
.yb5{bottom:191.808960px;}
.y108{bottom:196.763820px;}
.y16a{bottom:198.058995px;}
.y1ae{bottom:198.263880px;}
.y116{bottom:200.963745px;}
.y1d1{bottom:202.163865px;}
.y6c{bottom:204.808995px;}
.y161{bottom:208.163850px;}
.y190{bottom:211.763790px;}
.yfb{bottom:211.763985px;}
.y8f{bottom:212.963940px;}
.y169{bottom:216.058995px;}
.y107{bottom:218.363850px;}
.y115{bottom:222.563775px;}
.ye0{bottom:222.808995px;}
.y1ad{bottom:227.363910px;}
.y6b{bottom:227.808960px;}
.y160{bottom:229.763880px;}
.y1d0{bottom:231.263895px;}
.y18f{bottom:233.363820px;}
.yfa{bottom:233.364015px;}
.y168{bottom:234.058995px;}
.y8e{bottom:234.563970px;}
.yb4{bottom:237.563790px;}
.y106{bottom:239.963880px;}
.ydf{bottom:240.808995px;}
.y114{bottom:244.163805px;}
.y136{bottom:246.797610px;}
.y1ac{bottom:248.963940px;}
.y15f{bottom:251.363910px;}
.y167{bottom:252.058995px;}
.y1cf{bottom:252.863925px;}
.y18e{bottom:254.963850px;}
.yf9{bottom:254.964045px;}
.y45{bottom:256.451640px;}
.yde{bottom:258.808995px;}
.yb3{bottom:259.163820px;}
.y105{bottom:261.563910px;}
.y135{bottom:264.797610px;}
.y113{bottom:265.763835px;}
.y166{bottom:270.058995px;}
.y15e{bottom:272.963940px;}
.y8d{bottom:274.164000px;}
.y18d{bottom:276.563880px;}
.yf8{bottom:276.564075px;}
.ydd{bottom:276.808995px;}
.y1ab{bottom:278.063970px;}
.yb2{bottom:280.763850px;}
.y12a{bottom:281.808960px;}
.y1ce{bottom:281.963955px;}
.y134{bottom:282.797610px;}
.y104{bottom:283.163940px;}
.y112{bottom:287.363865px;}
.y44{bottom:287.801640px;}
.y165{bottom:288.058995px;}
.ydc{bottom:294.808995px;}
.y18c{bottom:298.163910px;}
.yf7{bottom:298.164105px;}
.y133{bottom:300.797610px;}
.yb1{bottom:302.363880px;}
.y1cd{bottom:303.563985px;}
.y15d{bottom:303.764940px;}
.y103{bottom:304.763970px;}
.y1aa{bottom:307.164000px;}
.y6a{bottom:308.513895px;}
.y111{bottom:308.963895px;}
.y164{bottom:311.059005px;}
.y1e2{bottom:311.063985px;}
.ydb{bottom:312.808995px;}
.y8c{bottom:313.764030px;}
.y132{bottom:318.797610px;}
.y43{bottom:319.151640px;}
.y18b{bottom:319.763940px;}
.yf6{bottom:319.764135px;}
.yb0{bottom:323.963910px;}
.y102{bottom:326.364000px;}
.y110{bottom:330.563925px;}
.yda{bottom:330.808995px;}
.y1cc{bottom:332.664015px;}
.y1a9{bottom:336.264030px;}
.y131{bottom:336.797610px;}
.y129{bottom:337.764120px;}
.y18a{bottom:341.363970px;}
.yf5{bottom:341.364165px;}
.yaf{bottom:345.563940px;}
.y42{bottom:346.376610px;}
.y101{bottom:347.964030px;}
.y69{bottom:348.113925px;}
.yd9{bottom:348.808995px;}
.y10f{bottom:352.163955px;}
.y8b{bottom:353.364060px;}
.y1cb{bottom:354.264045px;}
.y130{bottom:354.797610px;}
.y128{bottom:359.364150px;}
.y1e1{bottom:361.764045px;}
.y189{bottom:362.964000px;}
.yf4{bottom:362.964195px;}
.y15c{bottom:363.563985px;}
.y1a8{bottom:365.364060px;}
.y1b{bottom:365.915805px;}
.yd8{bottom:366.808995px;}
.yae{bottom:367.163970px;}
.y100{bottom:369.564060px;}
.y68{bottom:372.713955px;}
.y12f{bottom:372.797610px;}
.y10e{bottom:373.763985px;}
.y8a{bottom:377.964090px;}
.y127{bottom:380.964180px;}
.y1ca{bottom:383.364075px;}
.y188{bottom:384.564030px;}
.yf3{bottom:384.564225px;}
.yd7{bottom:384.808995px;}
.y15b{bottom:385.164015px;}
.y1a{bottom:385.715805px;}
.y1a7{bottom:386.964090px;}
.yad{bottom:388.764000px;}
.y12e{bottom:390.797610px;}
.yff{bottom:391.164090px;}
.y10d{bottom:395.364015px;}
.y41{bottom:400.164075px;}
.y89{bottom:402.564165px;}
.y126{bottom:402.564210px;}
.y19{bottom:405.515805px;}
.y187{bottom:406.164060px;}
.yf2{bottom:406.164255px;}
.y15a{bottom:406.764045px;}
.y1a6{bottom:408.564120px;}
.y12d{bottom:408.797610px;}
.yac{bottom:410.364075px;}
.y67{bottom:412.313985px;}
.y1c9{bottom:412.464105px;}
.y10c{bottom:416.964045px;}
.y40{bottom:421.764105px;}
.yfe{bottom:421.965090px;}
.y125{bottom:424.164240px;}
.y18{bottom:425.315805px;}
.y12c{bottom:426.797610px;}
.y186{bottom:427.764090px;}
.yf1{bottom:427.764285px;}
.y159{bottom:428.364075px;}
.yab{bottom:431.964105px;}
.y66{bottom:433.914015px;}
.y1c8{bottom:434.064135px;}
.y10b{bottom:438.564075px;}
.y1a5{bottom:440.115120px;}
.y88{bottom:442.164195px;}
.y3f{bottom:443.364135px;}
.y12b{bottom:444.797610px;}
.y17{bottom:445.115805px;}
.y124{bottom:445.764270px;}
.y185{bottom:449.364120px;}
.yf0{bottom:449.364315px;}
.y158{bottom:449.964105px;}
.yaa{bottom:453.564135px;}
.y65{bottom:455.514045px;}
.yd6{bottom:460.164105px;}
.y1c7{bottom:463.164165px;}
.y16{bottom:464.915805px;}
.y3e{bottom:464.964165px;}
.y123{bottom:467.364300px;}
.y184{bottom:470.964150px;}
.yef{bottom:470.964345px;}
.y157{bottom:471.564135px;}
.ya9{bottom:475.164165px;}
.y64{bottom:477.114075px;}
.yd5{bottom:481.764135px;}
.y87{bottom:481.764225px;}
.y15{bottom:484.715805px;}
.y1c6{bottom:484.764195px;}
.y3d{bottom:486.564195px;}
.y122{bottom:488.964330px;}
.y183{bottom:492.564180px;}
.yee{bottom:492.564375px;}
.y156{bottom:493.164165px;}
.ya8{bottom:496.764195px;}
.y63{bottom:498.714105px;}
.y1a4{bottom:499.164165px;}
.yd4{bottom:503.364165px;}
.y14{bottom:504.515805px;}
.y86{bottom:506.364255px;}
.y3c{bottom:508.164225px;}
.y121{bottom:510.564360px;}
.y1c5{bottom:513.864225px;}
.y182{bottom:514.164210px;}
.yed{bottom:514.164405px;}
.y155{bottom:514.764195px;}
.ya7{bottom:518.364225px;}
.y62{bottom:520.314135px;}
.y1a3{bottom:520.764195px;}
.yd3{bottom:524.964195px;}
.y13{bottom:526.125030px;}
.y3b{bottom:529.764255px;}
.y120{bottom:532.164390px;}
.y1c4{bottom:535.464255px;}
.y181{bottom:535.764240px;}
.yec{bottom:535.764435px;}
.y154{bottom:536.364225px;}
.ya6{bottom:539.964255px;}
.y61{bottom:541.914165px;}
.y1a2{bottom:542.364225px;}
.y85{bottom:545.964285px;}
.yd2{bottom:546.564225px;}
.y3a{bottom:551.364285px;}
.y11f{bottom:553.764420px;}
.y180{bottom:557.364270px;}
.yeb{bottom:557.364465px;}
.y153{bottom:557.964255px;}
.ya5{bottom:561.564285px;}
.y60{bottom:563.514195px;}
.y1a1{bottom:563.964255px;}
.y1c3{bottom:564.564285px;}
.y12{bottom:566.315790px;}
.yd1{bottom:568.164255px;}
.y39{bottom:572.964315px;}
.y11e{bottom:575.364450px;}
.yea{bottom:578.964495px;}
.y152{bottom:579.564285px;}
.ya4{bottom:583.164315px;}
.y5f{bottom:585.114225px;}
.y1a0{bottom:585.564285px;}
.y84{bottom:585.564315px;}
.y11{bottom:586.115790px;}
.y1c2{bottom:586.164315px;}
.y17f{bottom:588.165270px;}
.yd0{bottom:589.764285px;}
.y1e0{bottom:593.664315px;}
.y38{bottom:594.564345px;}
.ye9{bottom:600.564525px;}
.y151{bottom:601.164315px;}
.ya3{bottom:604.764345px;}
.y10{bottom:605.915790px;}
.y5e{bottom:606.714255px;}
.y19f{bottom:607.164315px;}
.y83{bottom:610.164345px;}
.ycf{bottom:611.364315px;}
.y11d{bottom:613.997970px;}
.y1c1{bottom:615.264345px;}
.y37{bottom:616.164375px;}
.ye8{bottom:622.164555px;}
.y150{bottom:622.764345px;}
.yf{bottom:625.715790px;}
.ya2{bottom:626.364375px;}
.y5d{bottom:628.314285px;}
.y19e{bottom:628.764345px;}
.y11c{bottom:631.997970px;}
.yce{bottom:632.964345px;}
.y1c0{bottom:636.864375px;}
.y36{bottom:637.764405px;}
.y14f{bottom:644.364375px;}
.ye{bottom:645.515790px;}
.y17e{bottom:647.964315px;}
.ya1{bottom:647.964405px;}
.y82{bottom:649.764375px;}
.y5c{bottom:649.914315px;}
.y11b{bottom:649.997970px;}
.y19d{bottom:650.364375px;}
.y1df{bottom:651.864375px;}
.ycd{bottom:654.564375px;}
.y35{bottom:659.364435px;}
.ye7{bottom:660.798075px;}
.yd{bottom:665.315790px;}
.y14e{bottom:665.964405px;}
.y11a{bottom:667.997970px;}
.y17d{bottom:669.564345px;}
.ya0{bottom:669.564435px;}
.y5b{bottom:671.514345px;}
.y19c{bottom:671.964405px;}
.ycc{bottom:676.164405px;}
.ye6{bottom:678.798075px;}
.y1de{bottom:680.964405px;}
.y34{bottom:680.964465px;}
.yc{bottom:685.115790px;}
.y119{bottom:685.997970px;}
.y14d{bottom:687.564435px;}
.y81{bottom:689.364405px;}
.y17c{bottom:691.164375px;}
.y5a{bottom:693.114375px;}
.y19b{bottom:693.564435px;}
.ye5{bottom:696.798075px;}
.ycb{bottom:697.764435px;}
.y9f{bottom:700.365435px;}
.y1dd{bottom:702.564435px;}
.y33{bottom:702.564495px;}
.y118{bottom:703.997970px;}
.yb{bottom:704.915790px;}
.y14c{bottom:709.164465px;}
.y17b{bottom:712.764405px;}
.y80{bottom:713.964435px;}
.y59{bottom:714.714405px;}
.ye4{bottom:714.798075px;}
.y19a{bottom:715.164465px;}
.y1bf{bottom:716.664465px;}
.yca{bottom:719.364465px;}
.y1dc{bottom:724.164465px;}
.y32{bottom:724.164525px;}
.ya{bottom:724.715790px;}
.y14b{bottom:730.764495px;}
.ye3{bottom:732.798075px;}
.y17a{bottom:734.364435px;}
.y199{bottom:736.764495px;}
.y1be{bottom:738.264495px;}
.y7f{bottom:738.564465px;}
.yc9{bottom:740.964495px;}
.y58{bottom:745.515405px;}
.y31{bottom:745.764555px;}
.y9{bottom:746.325015px;}
.ye2{bottom:750.798075px;}
.y14a{bottom:752.364525px;}
.y1db{bottom:753.264495px;}
.y179{bottom:755.964465px;}
.y198{bottom:758.364525px;}
.y9e{bottom:760.164480px;}
.y7e{bottom:760.164495px;}
.yc8{bottom:762.564525px;}
.y1bd{bottom:767.364525px;}
.y30{bottom:767.364585px;}
.ye1{bottom:768.798075px;}
.y149{bottom:773.964555px;}
.y1da{bottom:774.864525px;}
.y178{bottom:777.564495px;}
.y197{bottom:779.964555px;}
.yc7{bottom:784.164585px;}
.y9d{bottom:784.764510px;}
.y7d{bottom:784.764525px;}
.y8{bottom:786.032535px;}
.y1bc{bottom:788.964540px;}
.y2f{bottom:788.964570px;}
.y148{bottom:795.564525px;}
.y1d9{bottom:796.464540px;}
.y177{bottom:799.164510px;}
.y196{bottom:801.564525px;}
.yc6{bottom:805.764570px;}
.y7c{bottom:806.364510px;}
.y2e{bottom:810.564555px;}
.y147{bottom:817.164510px;}
.y1bb{bottom:818.064525px;}
.y176{bottom:820.764495px;}
.y57{bottom:821.864670px;}
.y195{bottom:823.164510px;}
.y9c{bottom:824.364495px;}
.y1d8{bottom:825.564525px;}
.yc5{bottom:827.364555px;}
.y7b{bottom:827.964495px;}
.y2d{bottom:832.164540px;}
.y146{bottom:838.764495px;}
.y1ba{bottom:839.664510px;}
.y175{bottom:842.364480px;}
.y7{bottom:844.049280px;}
.y1d7{bottom:847.164510px;}
.yc4{bottom:848.964540px;}
.y7a{bottom:849.564480px;}
.y2c{bottom:853.764525px;}
.y194{bottom:853.965480px;}
.y6{bottom:856.514370px;}
.y145{bottom:860.364480px;}
.y174{bottom:863.964465px;}
.y9b{bottom:863.964480px;}
.y1b9{bottom:868.764495px;}
.yc3{bottom:870.564525px;}
.y2b{bottom:875.364510px;}
.y56{bottom:875.577225px;}
.y1d6{bottom:876.264495px;}
.y144{bottom:881.964465px;}
.y173{bottom:885.564450px;}
.y9a{bottom:885.564465px;}
.y55{bottom:887.127210px;}
.y79{bottom:889.164465px;}
.y1b8{bottom:890.364480px;}
.yc2{bottom:892.164510px;}
.y2a{bottom:896.964495px;}
.y1d5{bottom:897.864480px;}
.y143{bottom:903.564450px;}
.y172{bottom:907.164435px;}
.y78{bottom:910.764450px;}
.yc1{bottom:913.764495px;}
.y29{bottom:918.564480px;}
.y1b7{bottom:919.464465px;}
.y54{bottom:921.777195px;}
.y5{bottom:925.079325px;}
.y142{bottom:925.164435px;}
.y99{bottom:925.164450px;}
.y1d4{bottom:926.964465px;}
.y171{bottom:928.764420px;}
.y53{bottom:933.327195px;}
.yc0{bottom:935.364480px;}
.y28{bottom:940.164465px;}
.y141{bottom:946.764420px;}
.y1b6{bottom:948.564450px;}
.y170{bottom:950.364405px;}
.y77{bottom:950.364435px;}
.y4{bottom:951.959205px;}
.ybf{bottom:956.964465px;}
.y27{bottom:961.764450px;}
.y98{bottom:964.764435px;}
.y140{bottom:968.364405px;}
.y52{bottom:972.102195px;}
.y3{bottom:977.459205px;}
.y1b5{bottom:977.664435px;}
.ybe{bottom:978.564450px;}
.y26{bottom:983.364435px;}
.y97{bottom:986.364420px;}
.y16f{bottom:988.997895px;}
.y76{bottom:989.964420px;}
.y1b4{bottom:999.264420px;}
.y51{bottom:999.327195px;}
.ybd{bottom:1000.164435px;}
.y25{bottom:1004.964420px;}
.y13f{bottom:1006.997895px;}
.y96{bottom:1007.964405px;}
.y50{bottom:1010.877180px;}
.ybc{bottom:1021.764420px;}
.y13e{bottom:1024.997895px;}
.y24{bottom:1026.564405px;}
.y1b3{bottom:1028.364405px;}
.y75{bottom:1029.564405px;}
.y13d{bottom:1042.997895px;}
.ybb{bottom:1043.364405px;}
.y4f{bottom:1045.527195px;}
.y16e{bottom:1045.997895px;}
.y95{bottom:1047.564390px;}
.y23{bottom:1048.164390px;}
.y1b2{bottom:1049.964390px;}
.y2{bottom:1051.949280px;}
.y4e{bottom:1057.077195px;}
.y13c{bottom:1063.997895px;}
.yba{bottom:1064.964390px;}
.y1{bottom:1068.149280px;}
.y74{bottom:1069.164390px;}
.y22{bottom:1069.764375px;}
.y1b1{bottom:1079.064390px;}
.y13b{bottom:1081.997895px;}
.yb9{bottom:1086.564390px;}
.y94{bottom:1087.164390px;}
.y21{bottom:1091.364390px;}
.y4d{bottom:1091.727210px;}
.y13a{bottom:1099.997895px;}
.y1b0{bottom:1100.664390px;}
.y4c{bottom:1107.402195px;}
.yb8{bottom:1108.164390px;}
.y73{bottom:1108.764390px;}
.y139{bottom:1117.997895px;}
.y20{bottom:1122.165375px;}
.yb7{bottom:1129.764390px;}
.y72{bottom:1133.364390px;}
.y138{bottom:1135.997895px;}
.y4b{bottom:1146.177210px;}
.yb6{bottom:1151.364390px;}
.y1f{bottom:1220.410905px;}
.h6{height:35.239746px;}
.hb{height:35.991211px;}
.h13{height:37.111816px;}
.h19{height:41.765565px;}
.hd{height:41.765625px;}
.h12{height:43.070801px;}
.h11{height:43.070921px;}
.hc{height:44.534180px;}
.h2{height:46.986328px;}
.h14{height:49.482422px;}
.h7{height:52.207031px;}
.h4{height:54.703125px;}
.h9{height:57.427734px;}
.h1c{height:59.155313px;}
.ha{height:59.378906px;}
.h5{height:59.608418px;}
.hf{height:62.648438px;}
.h8{height:64.327148px;}
.h1e{height:69.275391px;}
.h10{height:70.986328px;}
.h1d{height:72.232425px;}
.h18{height:72.232605px;}
.h1a{height:74.119288px;}
.h15{height:74.119348px;}
.h1b{height:77.239746px;}
.he{height:79.171875px;}
.h3{height:84.041016px;}
.h17{height:89.270801px;}
.h16{height:89.270861px;}
.h0{height:1262.834655px;}
.h1{height:1263.000000px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039365px;}
.x6{left:98.563980px;}
.x2{left:116.934630px;}
.xc{left:127.550730px;}
.x3{left:182.078745px;}
.x5{left:353.994750px;}
.xb{left:369.052365px;}
.x4{left:450.343380px;}
.x9{left:459.226965px;}
.xa{left:502.477605px;}
.x7{left:526.633650px;}
.x8{left:543.587370px;}
.xd{left:603.954420px;}
@media print{
.v1{vertical-align:-55.812480pt;}
.v5{vertical-align:-17.777760pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:17.777813pt;}
.v2{vertical-align:19.555573pt;}
.v4{vertical-align:21.333333pt;}
.v6{vertical-align:24.118240pt;}
.v8{vertical-align:27.081760pt;}
.v9{vertical-align:37.333333pt;}
.v7{vertical-align:41.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.000053pt;}
.ls5{letter-spacing:1.120000pt;}
.ls4{letter-spacing:2.408747pt;}
.ls7{letter-spacing:8.602613pt;}
.ls6{letter-spacing:11.925867pt;}
.ls3{letter-spacing:1445.922507pt;}
.ls2{letter-spacing:1445.965333pt;}
.ws23{word-spacing:-19.285333pt;}
.ws3{word-spacing:-15.669333pt;}
.ws7{word-spacing:-14.080000pt;}
.ws4{word-spacing:-12.906667pt;}
.wsc{word-spacing:-12.053333pt;}
.ws18{word-spacing:-11.733333pt;}
.ws5{word-spacing:-10.848000pt;}
.ws14{word-spacing:-10.560000pt;}
.ws12{word-spacing:-9.680000pt;}
.ws15{word-spacing:-9.386667pt;}
.wsb{word-spacing:-9.040000pt;}
.ws1b{word-spacing:-8.800000pt;}
.ws2{word-spacing:-7.920000pt;}
.ws24{word-spacing:-0.064000pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.048000pt;}
.wsd{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws9{word-spacing:269.556800pt;}
.wsf{word-spacing:269.556853pt;}
.ws8{word-spacing:396.669067pt;}
.ws10{word-spacing:467.264800pt;}
.ws13{word-spacing:631.576853pt;}
.wsa{word-spacing:654.940800pt;}
.ws11{word-spacing:685.256747pt;}
.ws1f{word-spacing:1408.781173pt;}
.ws1c{word-spacing:1408.781280pt;}
.ws21{word-spacing:1408.823947pt;}
.ws1{word-spacing:1527.653173pt;}
.ws22{word-spacing:1782.337067pt;}
.ws20{word-spacing:1782.348640pt;}
.ws25{word-spacing:1782.349920pt;}
.ws1d{word-spacing:1782.354560pt;}
.ws16{word-spacing:1808.873173pt;}
.wse{word-spacing:1808.880427pt;}
.ws17{word-spacing:1808.885547pt;}
.ws19{word-spacing:1808.887253pt;}
.ws1a{word-spacing:1808.888373pt;}
._2c{margin-left:-12.309013pt;}
._28{margin-left:-6.656000pt;}
._1{margin-left:-5.632000pt;}
._d{margin-left:-4.426667pt;}
._c{margin-left:-2.941280pt;}
._4{margin-left:-1.880053pt;}
._0{margin-left:-0.960000pt;}
._3{width:0.894347pt;}
._7{width:2.024693pt;}
._6{width:3.027733pt;}
._9{width:3.943307pt;}
._8{width:4.941120pt;}
._b{width:6.155307pt;}
._11{width:7.820960pt;}
._a{width:9.171307pt;}
._13{width:10.359840pt;}
._5{width:11.284907pt;}
._29{width:12.914880pt;}
._2{width:14.207520pt;}
._e{width:15.836267pt;}
._f{width:17.396960pt;}
._10{width:18.662560pt;}
._14{width:19.759253pt;}
._15{width:20.847253pt;}
._16{width:21.977387pt;}
._17{width:23.129547pt;}
._18{width:24.517227pt;}
._2f{width:25.437707pt;}
._12{width:26.354293pt;}
._30{width:27.366827pt;}
._2e{width:28.515627pt;}
._2b{width:29.987307pt;}
._2d{width:31.542293pt;}
._19{width:38.881120pt;}
._23{width:94.852853pt;}
._22{width:119.970293pt;}
._2a{width:170.752000pt;}
._25{width:308.070240pt;}
._26{width:348.436853pt;}
._1f{width:406.349067pt;}
._1a{width:411.585067pt;}
._24{width:416.134293pt;}
._27{width:429.986187pt;}
._1d{width:454.080800pt;}
._21{width:581.524907pt;}
._1e{width:601.990293pt;}
._1b{width:698.274293pt;}
._1c{width:745.914240pt;}
._20{width:836.830240pt;}
.fs6{font-size:36.000000pt;}
.fsb{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs5{font-size:44.000000pt;}
.fs1{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fsa{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:34.529387pt;}
.y93{bottom:34.529400pt;}
.y1e{bottom:35.654080pt;}
.y71{bottom:40.558947pt;}
.y16d{bottom:40.558987pt;}
.y49{bottom:47.329387pt;}
.y92{bottom:47.329413pt;}
.y1d{bottom:50.054080pt;}
.y1c{bottom:90.786760pt;}
.y70{bottom:118.052440pt;}
.yfd{bottom:122.496853pt;}
.y48{bottom:122.496880pt;}
.y193{bottom:130.634400pt;}
.y6f{bottom:134.052440pt;}
.y1d3{bottom:134.634493pt;}
.y91{bottom:134.901227pt;}
.y10a{bottom:136.501120pt;}
.y117{bottom:138.496853pt;}
.y47{bottom:144.052440pt;}
.y163{bottom:146.634480pt;}
.y192{bottom:149.834427pt;}
.y6e{bottom:150.052440pt;}
.y1d2{bottom:153.834520pt;}
.y90{bottom:154.101253pt;}
.y137{bottom:154.496853pt;}
.y109{bottom:155.701147pt;}
.y1af{bottom:157.034533pt;}
.y16c{bottom:159.434413pt;}
.y16b{bottom:160.052440pt;}
.y46{bottom:164.496880pt;}
.y162{bottom:165.834507pt;}
.y6d{bottom:166.052440pt;}
.y191{bottom:169.034453pt;}
.yfc{bottom:169.034627pt;}
.yb5{bottom:170.496853pt;}
.y108{bottom:174.901173pt;}
.y16a{bottom:176.052440pt;}
.y1ae{bottom:176.234560pt;}
.y116{bottom:178.634440pt;}
.y1d1{bottom:179.701213pt;}
.y6c{bottom:182.052440pt;}
.y161{bottom:185.034533pt;}
.y190{bottom:188.234480pt;}
.yfb{bottom:188.234653pt;}
.y8f{bottom:189.301280pt;}
.y169{bottom:192.052440pt;}
.y107{bottom:194.101200pt;}
.y115{bottom:197.834467pt;}
.ye0{bottom:198.052440pt;}
.y1ad{bottom:202.101253pt;}
.y6b{bottom:202.496853pt;}
.y160{bottom:204.234560pt;}
.y1d0{bottom:205.567907pt;}
.y18f{bottom:207.434507pt;}
.yfa{bottom:207.434680pt;}
.y168{bottom:208.052440pt;}
.y8e{bottom:208.501307pt;}
.yb4{bottom:211.167813pt;}
.y106{bottom:213.301227pt;}
.ydf{bottom:214.052440pt;}
.y114{bottom:217.034493pt;}
.y136{bottom:219.375653pt;}
.y1ac{bottom:221.301280pt;}
.y15f{bottom:223.434587pt;}
.y167{bottom:224.052440pt;}
.y1cf{bottom:224.767933pt;}
.y18e{bottom:226.634533pt;}
.yf9{bottom:226.634707pt;}
.y45{bottom:227.957013pt;}
.yde{bottom:230.052440pt;}
.yb3{bottom:230.367840pt;}
.y105{bottom:232.501253pt;}
.y135{bottom:235.375653pt;}
.y113{bottom:236.234520pt;}
.y166{bottom:240.052440pt;}
.y15e{bottom:242.634613pt;}
.y8d{bottom:243.701333pt;}
.y18d{bottom:245.834560pt;}
.yf8{bottom:245.834733pt;}
.ydd{bottom:246.052440pt;}
.y1ab{bottom:247.167973pt;}
.yb2{bottom:249.567867pt;}
.y12a{bottom:250.496853pt;}
.y1ce{bottom:250.634627pt;}
.y134{bottom:251.375653pt;}
.y104{bottom:251.701280pt;}
.y112{bottom:255.434547pt;}
.y44{bottom:255.823680pt;}
.y165{bottom:256.052440pt;}
.ydc{bottom:262.052440pt;}
.y18c{bottom:265.034587pt;}
.yf7{bottom:265.034760pt;}
.y133{bottom:267.375653pt;}
.yb1{bottom:268.767893pt;}
.y1cd{bottom:269.834653pt;}
.y15d{bottom:270.013280pt;}
.y103{bottom:270.901307pt;}
.y1aa{bottom:273.034667pt;}
.y6a{bottom:274.234573pt;}
.y111{bottom:274.634573pt;}
.y164{bottom:276.496893pt;}
.y1e2{bottom:276.501320pt;}
.ydb{bottom:278.052440pt;}
.y8c{bottom:278.901360pt;}
.y132{bottom:283.375653pt;}
.y43{bottom:283.690347pt;}
.y18b{bottom:284.234613pt;}
.yf6{bottom:284.234787pt;}
.yb0{bottom:287.967920pt;}
.y102{bottom:290.101333pt;}
.y110{bottom:293.834600pt;}
.yda{bottom:294.052440pt;}
.y1cc{bottom:295.701347pt;}
.y1a9{bottom:298.901360pt;}
.y131{bottom:299.375653pt;}
.y129{bottom:300.234773pt;}
.y18a{bottom:303.434640pt;}
.yf5{bottom:303.434813pt;}
.yaf{bottom:307.167947pt;}
.y42{bottom:307.890320pt;}
.y101{bottom:309.301360pt;}
.y69{bottom:309.434600pt;}
.yd9{bottom:310.052440pt;}
.y10f{bottom:313.034627pt;}
.y8b{bottom:314.101387pt;}
.y1cb{bottom:314.901373pt;}
.y130{bottom:315.375653pt;}
.y128{bottom:319.434800pt;}
.y1e1{bottom:321.568040pt;}
.y189{bottom:322.634667pt;}
.yf4{bottom:322.634840pt;}
.y15c{bottom:323.167987pt;}
.y1a8{bottom:324.768053pt;}
.y1b{bottom:325.258493pt;}
.yd8{bottom:326.052440pt;}
.yae{bottom:326.367973pt;}
.y100{bottom:328.501387pt;}
.y68{bottom:331.301293pt;}
.y12f{bottom:331.375653pt;}
.y10e{bottom:332.234653pt;}
.y8a{bottom:335.968080pt;}
.y127{bottom:338.634827pt;}
.y1ca{bottom:340.768067pt;}
.y188{bottom:341.834693pt;}
.yf3{bottom:341.834867pt;}
.yd7{bottom:342.052440pt;}
.y15b{bottom:342.368013pt;}
.y1a{bottom:342.858493pt;}
.y1a7{bottom:343.968080pt;}
.yad{bottom:345.568000pt;}
.y12e{bottom:347.375653pt;}
.yff{bottom:347.701413pt;}
.y10d{bottom:351.434680pt;}
.y41{bottom:355.701400pt;}
.y89{bottom:357.834813pt;}
.y126{bottom:357.834853pt;}
.y19{bottom:360.458493pt;}
.y187{bottom:361.034720pt;}
.yf2{bottom:361.034893pt;}
.y15a{bottom:361.568040pt;}
.y1a6{bottom:363.168107pt;}
.y12d{bottom:363.375653pt;}
.yac{bottom:364.768067pt;}
.y67{bottom:366.501320pt;}
.y1c9{bottom:366.634760pt;}
.y10c{bottom:370.634707pt;}
.y40{bottom:374.901427pt;}
.yfe{bottom:375.080080pt;}
.y125{bottom:377.034880pt;}
.y18{bottom:378.058493pt;}
.y12c{bottom:379.375653pt;}
.y186{bottom:380.234747pt;}
.yf1{bottom:380.234920pt;}
.y159{bottom:380.768067pt;}
.yab{bottom:383.968093pt;}
.y66{bottom:385.701347pt;}
.y1c8{bottom:385.834787pt;}
.y10b{bottom:389.834733pt;}
.y1a5{bottom:391.213440pt;}
.y88{bottom:393.034840pt;}
.y3f{bottom:394.101453pt;}
.y12b{bottom:395.375653pt;}
.y17{bottom:395.658493pt;}
.y124{bottom:396.234907pt;}
.y185{bottom:399.434773pt;}
.yf0{bottom:399.434947pt;}
.y158{bottom:399.968093pt;}
.yaa{bottom:403.168120pt;}
.y65{bottom:404.901373pt;}
.yd6{bottom:409.034760pt;}
.y1c7{bottom:411.701480pt;}
.y16{bottom:413.258493pt;}
.y3e{bottom:413.301480pt;}
.y123{bottom:415.434933pt;}
.y184{bottom:418.634800pt;}
.yef{bottom:418.634973pt;}
.y157{bottom:419.168120pt;}
.ya9{bottom:422.368147pt;}
.y64{bottom:424.101400pt;}
.yd5{bottom:428.234787pt;}
.y87{bottom:428.234867pt;}
.y15{bottom:430.858493pt;}
.y1c6{bottom:430.901507pt;}
.y3d{bottom:432.501507pt;}
.y122{bottom:434.634960pt;}
.y183{bottom:437.834827pt;}
.yee{bottom:437.835000pt;}
.y156{bottom:438.368147pt;}
.ya8{bottom:441.568173pt;}
.y63{bottom:443.301427pt;}
.y1a4{bottom:443.701480pt;}
.yd4{bottom:447.434813pt;}
.y14{bottom:448.458493pt;}
.y86{bottom:450.101560pt;}
.y3c{bottom:451.701533pt;}
.y121{bottom:453.834987pt;}
.y1c5{bottom:456.768200pt;}
.y182{bottom:457.034853pt;}
.yed{bottom:457.035027pt;}
.y155{bottom:457.568173pt;}
.ya7{bottom:460.768200pt;}
.y62{bottom:462.501453pt;}
.y1a3{bottom:462.901507pt;}
.yd3{bottom:466.634840pt;}
.y13{bottom:467.666693pt;}
.y3b{bottom:470.901560pt;}
.y120{bottom:473.035013pt;}
.y1c4{bottom:475.968227pt;}
.y181{bottom:476.234880pt;}
.yec{bottom:476.235053pt;}
.y154{bottom:476.768200pt;}
.ya6{bottom:479.968227pt;}
.y61{bottom:481.701480pt;}
.y1a2{bottom:482.101533pt;}
.y85{bottom:485.301587pt;}
.yd2{bottom:485.834867pt;}
.y3a{bottom:490.101587pt;}
.y11f{bottom:492.235040pt;}
.y180{bottom:495.434907pt;}
.yeb{bottom:495.435080pt;}
.y153{bottom:495.968227pt;}
.ya5{bottom:499.168253pt;}
.y60{bottom:500.901507pt;}
.y1a1{bottom:501.301560pt;}
.y1c3{bottom:501.834920pt;}
.y12{bottom:503.391813pt;}
.yd1{bottom:505.034893pt;}
.y39{bottom:509.301613pt;}
.y11e{bottom:511.435067pt;}
.yea{bottom:514.635107pt;}
.y152{bottom:515.168253pt;}
.ya4{bottom:518.368280pt;}
.y5f{bottom:520.101533pt;}
.y1a0{bottom:520.501587pt;}
.y84{bottom:520.501613pt;}
.y11{bottom:520.991813pt;}
.y1c2{bottom:521.034947pt;}
.y17f{bottom:522.813573pt;}
.yd0{bottom:524.234920pt;}
.y1e0{bottom:527.701613pt;}
.y38{bottom:528.501640pt;}
.ye9{bottom:533.835133pt;}
.y151{bottom:534.368280pt;}
.ya3{bottom:537.568307pt;}
.y10{bottom:538.591813pt;}
.y5e{bottom:539.301560pt;}
.y19f{bottom:539.701613pt;}
.y83{bottom:542.368307pt;}
.ycf{bottom:543.434947pt;}
.y11d{bottom:545.775973pt;}
.y1c1{bottom:546.901640pt;}
.y37{bottom:547.701667pt;}
.ye8{bottom:553.035160pt;}
.y150{bottom:553.568307pt;}
.yf{bottom:556.191813pt;}
.ya2{bottom:556.768333pt;}
.y5d{bottom:558.501587pt;}
.y19e{bottom:558.901640pt;}
.y11c{bottom:561.775973pt;}
.yce{bottom:562.634973pt;}
.y1c0{bottom:566.101667pt;}
.y36{bottom:566.901693pt;}
.y14f{bottom:572.768333pt;}
.ye{bottom:573.791813pt;}
.y17e{bottom:575.968280pt;}
.ya1{bottom:575.968360pt;}
.y82{bottom:577.568333pt;}
.y5c{bottom:577.701613pt;}
.y11b{bottom:577.775973pt;}
.y19d{bottom:578.101667pt;}
.y1df{bottom:579.435000pt;}
.ycd{bottom:581.835000pt;}
.y35{bottom:586.101720pt;}
.ye7{bottom:587.376067pt;}
.yd{bottom:591.391813pt;}
.y14e{bottom:591.968360pt;}
.y11a{bottom:593.775973pt;}
.y17d{bottom:595.168307pt;}
.ya0{bottom:595.168387pt;}
.y5b{bottom:596.901640pt;}
.y19c{bottom:597.301693pt;}
.ycc{bottom:601.035027pt;}
.ye6{bottom:603.376067pt;}
.y1de{bottom:605.301693pt;}
.y34{bottom:605.301747pt;}
.yc{bottom:608.991813pt;}
.y119{bottom:609.775973pt;}
.y14d{bottom:611.168387pt;}
.y81{bottom:612.768360pt;}
.y17c{bottom:614.368333pt;}
.y5a{bottom:616.101667pt;}
.y19b{bottom:616.501720pt;}
.ye5{bottom:619.376067pt;}
.ycb{bottom:620.235053pt;}
.y9f{bottom:622.547053pt;}
.y1dd{bottom:624.501720pt;}
.y33{bottom:624.501773pt;}
.y118{bottom:625.775973pt;}
.yb{bottom:626.591813pt;}
.y14c{bottom:630.368413pt;}
.y17b{bottom:633.568360pt;}
.y80{bottom:634.635053pt;}
.y59{bottom:635.301693pt;}
.ye4{bottom:635.376067pt;}
.y19a{bottom:635.701747pt;}
.y1bf{bottom:637.035080pt;}
.yca{bottom:639.435080pt;}
.y1dc{bottom:643.701747pt;}
.y32{bottom:643.701800pt;}
.ya{bottom:644.191813pt;}
.y14b{bottom:649.568440pt;}
.ye3{bottom:651.376067pt;}
.y17a{bottom:652.768387pt;}
.y199{bottom:654.901773pt;}
.y1be{bottom:656.235107pt;}
.y7f{bottom:656.501747pt;}
.yc9{bottom:658.635107pt;}
.y58{bottom:662.680360pt;}
.y31{bottom:662.901827pt;}
.y9{bottom:663.400013pt;}
.ye2{bottom:667.376067pt;}
.y14a{bottom:668.768467pt;}
.y1db{bottom:669.568440pt;}
.y179{bottom:671.968413pt;}
.y198{bottom:674.101800pt;}
.y9e{bottom:675.701760pt;}
.y7e{bottom:675.701773pt;}
.yc8{bottom:677.835133pt;}
.y1bd{bottom:682.101800pt;}
.y30{bottom:682.101853pt;}
.ye1{bottom:683.376067pt;}
.y149{bottom:687.968493pt;}
.y1da{bottom:688.768467pt;}
.y178{bottom:691.168440pt;}
.y197{bottom:693.301827pt;}
.yc7{bottom:697.035187pt;}
.y9d{bottom:697.568453pt;}
.y7d{bottom:697.568467pt;}
.y8{bottom:698.695587pt;}
.y1bc{bottom:701.301813pt;}
.y2f{bottom:701.301840pt;}
.y148{bottom:707.168467pt;}
.y1d9{bottom:707.968480pt;}
.y177{bottom:710.368453pt;}
.y196{bottom:712.501800pt;}
.yc6{bottom:716.235173pt;}
.y7c{bottom:716.768453pt;}
.y2e{bottom:720.501827pt;}
.y147{bottom:726.368453pt;}
.y1bb{bottom:727.168467pt;}
.y176{bottom:729.568440pt;}
.y57{bottom:730.546373pt;}
.y195{bottom:731.701787pt;}
.y9c{bottom:732.768440pt;}
.y1d8{bottom:733.835133pt;}
.yc5{bottom:735.435160pt;}
.y7b{bottom:735.968440pt;}
.y2d{bottom:739.701813pt;}
.y146{bottom:745.568440pt;}
.y1ba{bottom:746.368453pt;}
.y175{bottom:748.768427pt;}
.y7{bottom:750.266027pt;}
.y1d7{bottom:753.035120pt;}
.yc4{bottom:754.635147pt;}
.y7a{bottom:755.168427pt;}
.y2c{bottom:758.901800pt;}
.y194{bottom:759.080427pt;}
.y6{bottom:761.346107pt;}
.y145{bottom:764.768427pt;}
.y174{bottom:767.968413pt;}
.y9b{bottom:767.968427pt;}
.y1b9{bottom:772.235107pt;}
.yc3{bottom:773.835133pt;}
.y2b{bottom:778.101787pt;}
.y56{bottom:778.290867pt;}
.y1d6{bottom:778.901773pt;}
.y144{bottom:783.968413pt;}
.y173{bottom:787.168400pt;}
.y9a{bottom:787.168413pt;}
.y55{bottom:788.557520pt;}
.y79{bottom:790.368413pt;}
.y1b8{bottom:791.435093pt;}
.yc2{bottom:793.035120pt;}
.y2a{bottom:797.301773pt;}
.y1d5{bottom:798.101760pt;}
.y143{bottom:803.168400pt;}
.y172{bottom:806.368387pt;}
.y78{bottom:809.568400pt;}
.yc1{bottom:812.235107pt;}
.y29{bottom:816.501760pt;}
.y1b7{bottom:817.301747pt;}
.y54{bottom:819.357507pt;}
.y5{bottom:822.292733pt;}
.y142{bottom:822.368387pt;}
.y99{bottom:822.368400pt;}
.y1d4{bottom:823.968413pt;}
.y171{bottom:825.568373pt;}
.y53{bottom:829.624173pt;}
.yc0{bottom:831.435093pt;}
.y28{bottom:835.701747pt;}
.y141{bottom:841.568373pt;}
.y1b6{bottom:843.168400pt;}
.y170{bottom:844.768360pt;}
.y77{bottom:844.768387pt;}
.y4{bottom:846.185960pt;}
.ybf{bottom:850.635080pt;}
.y27{bottom:854.901733pt;}
.y98{bottom:857.568387pt;}
.y140{bottom:860.768360pt;}
.y52{bottom:864.090840pt;}
.y3{bottom:868.852627pt;}
.y1b5{bottom:869.035053pt;}
.ybe{bottom:869.835067pt;}
.y26{bottom:874.101720pt;}
.y97{bottom:876.768373pt;}
.y16f{bottom:879.109240pt;}
.y76{bottom:879.968373pt;}
.y1b4{bottom:888.235040pt;}
.y51{bottom:888.290840pt;}
.ybd{bottom:889.035053pt;}
.y25{bottom:893.301707pt;}
.y13f{bottom:895.109240pt;}
.y96{bottom:895.968360pt;}
.y50{bottom:898.557493pt;}
.ybc{bottom:908.235040pt;}
.y13e{bottom:911.109240pt;}
.y24{bottom:912.501693pt;}
.y1b3{bottom:914.101693pt;}
.y75{bottom:915.168360pt;}
.y13d{bottom:927.109240pt;}
.ybb{bottom:927.435027pt;}
.y4f{bottom:929.357507pt;}
.y16e{bottom:929.775907pt;}
.y95{bottom:931.168347pt;}
.y23{bottom:931.701680pt;}
.y1b2{bottom:933.301680pt;}
.y2{bottom:935.066027pt;}
.y4e{bottom:939.624173pt;}
.y13c{bottom:945.775907pt;}
.yba{bottom:946.635013pt;}
.y1{bottom:949.466027pt;}
.y74{bottom:950.368347pt;}
.y22{bottom:950.901667pt;}
.y1b1{bottom:959.168347pt;}
.y13b{bottom:961.775907pt;}
.yb9{bottom:965.835013pt;}
.y94{bottom:966.368347pt;}
.y21{bottom:970.101680pt;}
.y4d{bottom:970.424187pt;}
.y13a{bottom:977.775907pt;}
.y1b0{bottom:978.368347pt;}
.y4c{bottom:984.357507pt;}
.yb8{bottom:985.035013pt;}
.y73{bottom:985.568347pt;}
.y139{bottom:993.775907pt;}
.y20{bottom:997.480333pt;}
.yb7{bottom:1004.235013pt;}
.y72{bottom:1007.435013pt;}
.y138{bottom:1009.775907pt;}
.y4b{bottom:1018.824187pt;}
.yb6{bottom:1023.435013pt;}
.y1f{bottom:1084.809693pt;}
.h6{height:31.324219pt;}
.hb{height:31.992188pt;}
.h13{height:32.988281pt;}
.h19{height:37.124947pt;}
.hd{height:37.125000pt;}
.h12{height:38.285156pt;}
.h11{height:38.285263pt;}
.hc{height:39.585938pt;}
.h2{height:41.765625pt;}
.h14{height:43.984375pt;}
.h7{height:46.406250pt;}
.h4{height:48.625000pt;}
.h9{height:51.046875pt;}
.h1c{height:52.582501pt;}
.ha{height:52.781250pt;}
.h5{height:52.985261pt;}
.hf{height:55.687500pt;}
.h8{height:57.179688pt;}
.h1e{height:61.578125pt;}
.h10{height:63.098958pt;}
.h1d{height:64.206600pt;}
.h18{height:64.206760pt;}
.h1a{height:65.883812pt;}
.h15{height:65.883865pt;}
.h1b{height:68.657552pt;}
.he{height:70.375000pt;}
.h3{height:74.703125pt;}
.h17{height:79.351823pt;}
.h16{height:79.351876pt;}
.h0{height:1122.519693pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590547pt;}
.x6{left:87.612427pt;}
.x2{left:103.941893pt;}
.xc{left:113.378427pt;}
.x3{left:161.847773pt;}
.x5{left:314.662000pt;}
.xb{left:328.046547pt;}
.x4{left:400.305227pt;}
.x9{left:408.201747pt;}
.xa{left:446.646760pt;}
.x7{left:468.118800pt;}
.x8{left:483.188773pt;}
.xd{left:536.848373pt;}
}




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