
    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_54a8c1b75e0f1a8137846de8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_4e77d9dbd8facc1c23b1c616.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.026667;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_f41df9f7cb5b370ce8a4c3ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_a276e3ba1db2905af7db0d7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_20336ec503513586967ce26d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.130371;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_34a66c0a37ec139d94a312d0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_63c54a32c5bafd31bd5d0ec2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fc18c6bc52bee1c53b9f29e4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.768555;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_b730e5ba7576724012737f03.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.941406;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_1af444414c0785e67f5d7381.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.118000;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_c2bce4262e87f98eac47c173.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_b6d0262351fbfcadbb8cbcc3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_cd680658dc108f7c44bea2fc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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:ffe;src:url('chunks/assets/font_d3b42b7b357cc954c5883a11.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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:fff;src:url('chunks/assets/font_ddfad15b9c3ccc22a1e234e5.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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;}
.m2{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m0{transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253656,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-40.316823px;}
.v2{vertical-align:-35.297281px;}
.v5{vertical-align:-27.362799px;}
.v6{vertical-align:-10.086842px;}
.v7{vertical-align:-5.038780px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:34.553559px;}
.v1{vertical-align:41.038964px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360720px;}
.ls4{letter-spacing:20.489160px;}
.ls1{letter-spacing:24.482333px;}
.ls6{letter-spacing:24.523381px;}
.ls5{letter-spacing:24.523444px;}
.ls2{letter-spacing:40.495026px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(189,31,37),0 0.015em rgb(189,31,37),0.015em 0 rgb(189,31,37),0 -0.015em  rgb(189,31,37);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(189,31,37);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-89.999768px;}
.ws15{word-spacing:-32.543916px;}
.ws1{word-spacing:-31.103920px;}
.ws10{word-spacing:-29.338571px;}
.ws11{word-spacing:-27.416004px;}
.ws1c{word-spacing:-25.297787px;}
.ws2a{word-spacing:-24.407937px;}
.ws1f{word-spacing:-23.106260px;}
.ws17{word-spacing:-21.641624px;}
.ws8{word-spacing:-20.339947px;}
.wsc{word-spacing:-19.439158px;}
.ws18{word-spacing:-19.038271px;}
.ws12{word-spacing:-18.269953px;}
.ws1a{word-spacing:-17.685350px;}
.ws6{word-spacing:-17.248382px;}
.wsb{word-spacing:-17.100748px;}
.ws21{word-spacing:-16.271958px;}
.ws0{word-spacing:-15.125731px;}
.wse{word-spacing:-14.157816px;}
.ws2{word-spacing:-14.031360px;}
.ws16{word-spacing:-13.505645px;}
.ws22{word-spacing:-12.862155px;}
.ws1b{word-spacing:-12.203968px;}
.ws19{word-spacing:-12.131177px;}
.ws13{word-spacing:-10.961972px;}
.ws14{word-spacing:-6.834302px;}
.ws25{word-spacing:-6.723379px;}
.wsf{word-spacing:-6.336000px;}
.ws26{word-spacing:-6.138776px;}
.ws23{word-spacing:-5.554173px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:0.078078px;}
.wsa{word-spacing:2.339994px;}
.wsd{word-spacing:3.449579px;}
.ws3{word-spacing:4.211989px;}
.ws1e{word-spacing:10.517671px;}
.ws7{word-spacing:28.950024px;}
.ws29{word-spacing:56.526711px;}
.ws20{word-spacing:146.635920px;}
.ws28{word-spacing:166.267611px;}
.ws27{word-spacing:166.987333px;}
.ws1d{word-spacing:246.925122px;}
.ws5{word-spacing:327.325478px;}
._12{margin-left:-1100.225299px;}
._f{margin-left:-13.571209px;}
._1f{margin-left:-11.463060px;}
._1{margin-left:-7.935816px;}
._11{margin-left:-6.795356px;}
._0{margin-left:-5.662835px;}
._5{margin-left:-4.328627px;}
._4{margin-left:-2.525032px;}
._2{margin-left:-1.082157px;}
._3{width:1.442876px;}
._b{width:2.710067px;}
._26{width:5.136396px;}
._16{width:9.938134px;}
._6{width:15.173961px;}
._18{width:18.143953px;}
._e{width:22.679941px;}
._17{width:24.023316px;}
._9{width:38.062427px;}
._a{width:49.028812px;}
._20{width:59.228162px;}
._24{width:76.022457px;}
._22{width:99.470372px;}
._25{width:105.308753px;}
._23{width:114.245020px;}
._21{width:122.520141px;}
._1d{width:139.110337px;}
._1c{width:154.753776px;}
._d{width:183.798823px;}
._c{width:203.213611px;}
._7{width:213.406230px;}
._1a{width:226.631429px;}
._1b{width:259.170989px;}
._19{width:282.719033px;}
._13{width:293.052500px;}
._1e{width:297.753802px;}
._15{width:318.445209px;}
._14{width:379.996374px;}
._10{width:416.632338px;}
._8{width:516.973549px;}
.fc5{color:rgb(70,120,134);}
.fc7{color:rgb(189,31,37);}
.fc4{color:rgb(41,0,136);}
.fc8{color:rgb(89,89,89);}
.fc6{color:rgb(70,54,136);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:22.320414px;}
.fs1a{font-size:23.759585px;}
.fs11{font-size:27.360000px;}
.fs8{font-size:27.360460px;}
.fs17{font-size:30.240276px;}
.fs7{font-size:31.679446px;}
.fs13{font-size:31.680000px;}
.fs1f{font-size:33.120091px;}
.fse{font-size:35.999907px;}
.fsb{font-size:40.320368px;}
.fs12{font-size:41.759538px;}
.fs4{font-size:53.999861px;}
.fs19{font-size:59.759492px;}
.fs5{font-size:62.645206px;}
.fs1e{font-size:63.360367px;}
.fs3{font-size:69.119999px;}
.fs1d{font-size:71.999814px;}
.fs0{font-size:74.510990px;}
.fsa{font-size:76.320275px;}
.fsf{font-size:84.240136px;}
.fs1b{font-size:87.119952px;}
.fs10{font-size:89.999768px;}
.fsd{font-size:95.759399px;}
.fs1c{font-size:102.240090px;}
.fsc{font-size:107.999721px;}
.fs15{font-size:113.759352px;}
.fs1{font-size:120.239640px;}
.fs14{font-size:120.240044px;}
.fs9{font-size:131.759306px;}
.fs18{font-size:143.999628px;}
.fs2{font-size:161.999582px;}
.fs6{font-size:215.999442px;}
.fs20{font-size:239.760502px;}
.y0{bottom:0.000000px;}
.y2{bottom:26.267044px;}
.y11{bottom:112.685920px;}
.ye5{bottom:150.301425px;}
.ya3{bottom:175.677170px;}
.y93{bottom:176.772829px;}
.y112{bottom:182.322678px;}
.yf0{bottom:189.356105px;}
.y48{bottom:190.262008px;}
.y19{bottom:190.431419px;}
.ye4{bottom:190.438641px;}
.y92{bottom:193.149754px;}
.y111{bottom:197.262534px;}
.yc3{bottom:198.178358px;}
.ye1{bottom:199.077078px;}
.y81{bottom:203.944128px;}
.y110{bottom:205.545421px;}
.ya6{bottom:207.184335px;}
.y6c{bottom:207.533510px;}
.ye3{bottom:207.715420px;}
.y2b{bottom:209.161842px;}
.y91{bottom:209.709140px;}
.y30{bottom:213.309197px;}
.y109{bottom:214.181215px;}
.yfe{bottom:214.198335px;}
.ye0{bottom:216.353857px;}
.y7b{bottom:217.628586px;}
.y62{bottom:222.642718px;}
.ya5{bottom:223.383602px;}
.ye2{bottom:224.997015px;}
.y7f{bottom:225.725863px;}
.y90{bottom:226.086065px;}
.y1b{bottom:226.429087px;}
.y6b{bottom:227.701525px;}
.yf8{bottom:229.314680px;}
.y2c{bottom:229.685650px;}
.ye{bottom:232.018898px;}
.y2a{bottom:233.819259px;}
.y7a{bottom:234.005601px;}
.y88{bottom:237.059230px;}
.y2f{bottom:237.959707px;}
.y1a{bottom:238.493980px;}
.y127{bottom:239.048155px;}
.ya4{bottom:239.582949px;}
.y7e{bottom:242.285249px;}
.yfd{bottom:244.443893px;}
.yd{bottom:246.965711px;}
.y121{bottom:247.145431px;}
.y6a{bottom:247.856611px;}
.y10a{bottom:248.563349px;}
.y79{bottom:250.564897px;}
.y126{bottom:255.425080px;}
.y29{bottom:258.483516px;}
.y7d{bottom:258.671346px;}
.yef{bottom:259.560176px;}
.y8f{bottom:261.726069px;}
.y87{bottom:262.265986px;}
.y2e{bottom:262.623964px;}
.yf{bottom:263.518925px;}
.y120{bottom:263.704728px;}
.yc{bottom:264.240326px;}
.y18{bottom:266.033463px;}
.y78{bottom:266.950994px;}
.yfc{bottom:267.118380px;}
.y58{bottom:267.120126px;}
.y5a{bottom:269.460160px;}
.y128{bottom:271.811177px;}
.y125{bottom:271.984465px;}
.y7c{bottom:275.230642px;}
.y69{bottom:275.396360px;}
.y8e{bottom:278.102994px;}
.y11f{bottom:280.090825px;}
.y122{bottom:280.264114px;}
.y5b{bottom:281.881546px;}
.yf7{bottom:282.234726px;}
.y10b{bottom:282.943445px;}
.y77{bottom:283.510291px;}
.ybb{bottom:283.679989px;}
.y57{bottom:284.407053px;}
.y47{bottom:286.380150px;}
.y17{bottom:286.558745px;}
.yb{bottom:287.455078px;}
.y86{bottom:287.459875px;}
.y28{bottom:287.466722px;}
.y124{bottom:288.370473px;}
.ydf{bottom:288.897845px;}
.yee{bottom:289.799270px;}
.y2d{bottom:291.607170px;}
.y68{bottom:295.557911px;}
.y11e{bottom:296.650211px;}
.y56{bottom:299.164369px;}
.y59{bottom:301.681589px;}
.ybf{bottom:302.403996px;}
.y82{bottom:302.942331px;}
.yff{bottom:304.915616px;}
.y123{bottom:304.929859px;}
.yde{bottom:306.174625px;}
.ya{bottom:306.355099px;}
.yed{bottom:312.473820px;}
.y85{bottom:312.660166px;}
.y67{bottom:315.712997px;}
.y27{bottom:316.257681px;}
.y46{bottom:316.432835px;}
.y55{bottom:316.443088px;}
.y10c{bottom:317.325660px;}
.ybe{bottom:321.671527px;}
.y6{bottom:324.727291px;}
.yba{bottom:325.989226px;}
.yc2{bottom:328.870660px;}
.yec{bottom:335.161174px;}
.y66{bottom:335.880950px;}
.y84{bottom:337.854055px;}
.y26{bottom:340.921938px;}
.ybd{bottom:340.929975px;}
.yfb{bottom:342.532908px;}
.y76{bottom:342.730894px;}
.yb9{bottom:345.247585px;}
.y45{bottom:346.678331px;}
.yc1{bottom:347.946737px;}
.y10d{bottom:351.526204px;}
.y54{bottom:352.622374px;}
.ya2{bottom:353.523603px;}
.yf6{bottom:357.835662px;}
.y75{bottom:359.290191px;}
.ybc{bottom:360.188424px;}
.y83{bottom:363.060811px;}
.y65{bottom:363.594240px;}
.yb8{bottom:364.506033px;}
.yeb{bottom:365.220262px;}
.y95{bottom:366.662612px;}
.y8d{bottom:370.807022px;}
.y74{bottom:375.667205px;}
.y44{bottom:376.923889px;}
.ydd{bottom:378.892618px;}
.y9{bottom:381.781065px;}
.y25{bottom:382.319716px;}
.y94{bottom:383.048709px;}
.y64{bottom:383.762193px;}
.yb7{bottom:383.764481px;}
.y10e{bottom:385.906299px;}
.y8c{bottom:387.183947px;}
.ydc{bottom:387.535870px;}
.yea{bottom:387.894812px;}
.y73{bottom:392.226501px;}
.yc0{bottom:393.843687px;}
.y80{bottom:396.358643px;}
.y7{bottom:400.855099px;}
.y63{bottom:404.650797px;}
.y43{bottom:406.976574px;}
.y24{bottom:406.983906px;}
.ye9{bottom:410.575701px;}
.y8{bottom:419.755068px;}
.y10f{bottom:420.286395px;}
.y8b{bottom:426.790442px;}
.y8a{bottom:443.349828px;}
.y72{bottom:447.119065px;}
.y4f{bottom:461.877537px;}
.y16{bottom:468.004226px;}
.y39{bottom:468.551073px;}
.y31{bottom:481.691592px;}
.ya1{bottom:488.704198px;}
.y4e{bottom:497.882031px;}
.y10{bottom:629.287056px;}
.y6f{bottom:658.075313px;}
.y14{bottom:660.609425px;}
.y89{bottom:662.940020px;}
.y22{bottom:664.379209px;}
.y6e{bottom:667.075541px;}
.y23{bottom:673.736162px;}
.y12c{bottom:674.995960px;}
.y6d{bottom:676.075724px;}
.y13{bottom:682.568670px;}
.y12b{bottom:683.996143px;}
.y11c{bottom:687.597953px;}
.y12a{bottom:692.996371px;}
.y9f{bottom:696.420942px;}
.yab{bottom:697.320272px;}
.y108{bottom:698.932189px;}
.y41{bottom:709.740690px;}
.y61{bottom:712.259977px;}
.yb5{bottom:712.444272px;}
.yaa{bottom:713.523684px;}
.y107{bottom:713.871963px;}
.yd1{bottom:715.140850px;}
.y11b{bottom:717.655785px;}
.y4d{bottom:718.201446px;}
.y100{bottom:721.440108px;}
.y12d{bottom:722.699430px;}
.yfa{bottom:723.054476px;}
.yb0{bottom:725.038699px;}
.y9e{bottom:726.663896px;}
.ya0{bottom:727.029017px;}
.y38{bottom:732.421808px;}
.yd0{bottom:734.942583px;}
.y42{bottom:735.301260px;}
.y40{bottom:735.667762px;}
.y52{bottom:737.460085px;}
.y11d{bottom:740.154517px;}
.ye8{bottom:740.870887px;}
.y12{bottom:740.892727px;}
.yf9{bottom:745.739288px;}
.y11a{bottom:747.898739px;}
.y9d{bottom:749.338415px;}
.ydb{bottom:749.520543px;}
.yaf{bottom:751.319278px;}
.y60{bottom:752.937183px;}
.ye7{bottom:753.297430px;}
.ycf{bottom:757.978650px;}
.yf5{bottom:760.855603px;}
.yda{bottom:766.087186px;}
.yae{bottom:767.522729px;}
.y3f{bottom:769.146127px;}
.y4c{bottom:775.982210px;}
.y21{bottom:776.522123px;}
.ycc{bottom:777.780356px;}
.y119{bottom:778.141693px;}
.y9c{bottom:779.581337px;}
.yd9{bottom:782.464155px;}
.yf4{bottom:783.540383px;}
.y15{bottom:788.932057px;}
.y5f{bottom:793.437183px;}
.y3e{bottom:795.061498px;}
.ycb{bottom:797.397473px;}
.y4b{bottom:798.656729px;}
.yd8{bottom:799.023496px;}
.y71{bottom:802.442400px;}
.yf3{bottom:806.214902px;}
.y118{bottom:808.199556px;}
.y9b{bottom:809.639201px;}
.y20{bottom:812.700769px;}
.y37{bottom:813.783337px;}
.yd7{bottom:815.400444px;}
.yca{bottom:817.199179px;}
.y4a{bottom:821.341510px;}
.y3d{bottom:828.364531px;}
.ye6{bottom:828.899683px;}
.yd6{bottom:831.959763px;}
.y9a{bottom:832.323982px;}
.y5e{bottom:833.937183px;}
.yc9{bottom:837.000911px;}
.y117{bottom:838.442510px;}
.yce{bottom:840.244043px;}
.ya7{bottom:841.136664px;}
.y36{bottom:844.015998px;}
.y70{bottom:845.649324px;}
.y1f{bottom:849.066413px;}
.yd5{bottom:851.225491px;}
.y49{bottom:851.584464px;}
.y3c{bottom:854.279902px;}
.yc8{bottom:856.802617px;}
.yf2{bottom:858.957515px;}
.ycd{bottom:860.036978px;}
.y5{bottom:860.934822px;}
.y99{bottom:862.556642px;}
.yd4{bottom:867.602460px;}
.y116{bottom:868.675171px;}
.y35{bottom:874.258952px;}
.y5d{bottom:874.622809px;}
.y102{bottom:876.417094px;}
.yc7{bottom:879.838684px;}
.yf1{bottom:881.642296px;}
.yd3{bottom:884.161779px;}
.y1e{bottom:885.420392px;}
.y129{bottom:885.431146px;}
.y53{bottom:887.223665px;}
.y3b{bottom:887.758268px;}
.y115{bottom:891.359951px;}
.y98{bottom:892.799596px;}
.y106{bottom:893.157766px;}
.y101{bottom:894.777390px;}
.y4{bottom:896.939911px;}
.y104{bottom:899.636238px;}
.yc6{bottom:899.640390px;}
.yd2{bottom:903.420227px;}
.y34{bottom:904.316815px;}
.y105{bottom:911.518061px;}
.y3a{bottom:913.685322px;}
.y5c{bottom:915.122809px;}
.y97{bottom:915.484377px;}
.yb2{bottom:917.097617px;}
.yb6{bottom:919.259720px;}
.y114{bottom:921.417815px;}
.y1d{bottom:921.599037px;}
.y33{bottom:927.001596px;}
.ya9{bottom:928.442064px;}
.y3{bottom:932.944999px;}
.yb1{bottom:933.300203px;}
.y103{bottom:933.479831px;}
.yc5{bottom:934.919427px;}
.y113{bottom:944.102596px;}
.ya8{bottom:944.638073px;}
.y96{bottom:945.542240px;}
.yb4{bottom:959.581647px;}
.yad{bottom:963.899255px;}
.y1c{bottom:966.595290px;}
.yb3{bottom:975.777635px;}
.yac{bottom:980.101841px;}
.y32{bottom:985.133774px;}
.y51{bottom:989.823751px;}
.yc4{bottom:993.593896px;}
.y50{bottom:1024.026552px;}
.y1{bottom:1165.142808px;}
.h2a{height:20.592414px;}
.h3a{height:22.104342px;}
.h20{height:22.200529px;}
.h35{height:23.713289px;}
.h17{height:24.268320px;}
.h38{height:26.209223px;}
.h37{height:26.253521px;}
.h9{height:27.213505px;}
.h1a{height:28.100160px;}
.h36{height:28.705157px;}
.h23{height:30.077852px;}
.h8{height:31.509293px;}
.h10{height:35.806548px;}
.h1d{height:37.494044px;}
.hd{height:40.103803px;}
.h19{height:41.535244px;}
.h5{height:46.801637px;}
.h29{height:51.881043px;}
.h2c{height:53.709822px;}
.h32{height:54.914381px;}
.h28{height:55.291849px;}
.h26{height:59.438518px;}
.h4{height:59.906249px;}
.h1f{height:60.007499px;}
.h6{height:62.308732px;}
.h1{height:64.578617px;}
.h13{height:68.334785px;}
.h30{height:71.613096px;}
.h16{height:73.010860px;}
.h2e{height:73.722466px;}
.h2b{height:75.506794px;}
.hb{height:75.910351px;}
.h1e{height:78.134564px;}
.h22{height:80.209114px;}
.h18{height:82.994596px;}
.h1c{height:85.986073px;}
.h11{height:86.255648px;}
.h34{height:89.467751px;}
.h31{height:89.467940px;}
.h12{height:89.516370px;}
.h1b{height:90.884564px;}
.h21{height:91.177162px;}
.hf{height:95.245066px;}
.h2{height:97.794907px;}
.h27{height:98.050517px;}
.ha{height:100.813883px;}
.h2d{height:101.690949px;}
.he{height:102.831766px;}
.h3b{height:107.419645px;}
.h15{height:113.874010px;}
.h33{height:124.021499px;}
.h14{height:125.454417px;}
.h2f{height:131.051614px;}
.h25{height:137.109021px;}
.h3{height:140.009404px;}
.h24{height:143.226193px;}
.hc{height:158.011479px;}
.h39{height:182.161787px;}
.h7{height:205.663532px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:98.997942px;}
.x3{left:115.376615px;}
.x28{left:128.526451px;}
.x1e{left:132.835357px;}
.x2f{left:134.644860px;}
.x2c{left:137.876234px;}
.x4{left:142.026491px;}
.x18{left:145.085082px;}
.x1f{left:149.754253px;}
.x29{left:154.083767px;}
.x47{left:157.320953px;}
.x1c{left:159.839685px;}
.x7e{left:163.258614px;}
.x82{left:164.339055px;}
.x2a{left:167.575360px;}
.x19{left:169.741495px;}
.x1d{left:172.078422px;}
.x31{left:173.704390px;}
.xd{left:174.972210px;}
.x48{left:179.818299px;}
.x89{left:184.502750px;}
.x3b{left:185.755942px;}
.x11{left:187.554359px;}
.x37{left:190.797192px;}
.x8f{left:192.241445px;}
.x3c{left:199.257958px;}
.x7b{left:201.241876px;}
.x8e{left:206.462593px;}
.x64{left:208.438670px;}
.x38{left:213.122809px;}
.x12{left:216.365008px;}
.x40{left:218.874986px;}
.x70{left:221.581373px;}
.x39{left:223.197186px;}
.x63{left:227.521881px;}
.x62{left:231.476949px;}
.x13{left:235.258747px;}
.x42{left:238.140714px;}
.x41{left:240.839798px;}
.x1b{left:243.722592px;}
.x3f{left:246.420362px;}
.x16{left:262.800998px;}
.x71{left:273.060414px;}
.x84{left:279.541211px;}
.x90{left:286.016861px;}
.x5c{left:287.096508px;}
.x5b{left:297.360382px;}
.x5a{left:299.519654px;}
.x97{left:302.393256px;}
.x33{left:309.958680px;}
.x45{left:312.475333px;}
.x44{left:313.737329px;}
.x43{left:318.055896px;}
.x34{left:320.037517px;}
.x46{left:323.636459px;}
.x32{left:330.116354px;}
.x85{left:336.961556px;}
.x66{left:346.859472px;}
.x77{left:350.452096px;}
.x67{left:354.420224px;}
.x65{left:359.640943px;}
.x22{left:361.976624px;}
.xe{left:365.210965px;}
.x78{left:367.917991px;}
.x68{left:370.800821px;}
.x23{left:378.895520px;}
.x10{left:382.147183px;}
.x72{left:390.413614px;}
.x86{left:394.564197px;}
.x21{left:401.395441px;}
.x20{left:402.658892px;}
.x5e{left:406.439250px;}
.x92{left:409.679320px;}
.x8a{left:413.285472px;}
.x61{left:417.597511px;}
.x53{left:419.756295px;}
.x91{left:424.436852px;}
.x93{left:426.413730px;}
.x55{left:428.755397px;}
.x58{left:431.097063px;}
.x73{left:432.186553px;}
.x59{left:434.335982px;}
.x54{left:437.035045px;}
.x60{left:441.900556px;}
.x2b{left:442.979758px;}
.x88{left:449.105900px;}
.x76{left:451.079883px;}
.x6a{left:453.061279px;}
.x9{left:456.477196px;}
.x30{left:458.635445px;}
.x69{left:460.798373px;}
.x5{left:465.302788px;}
.xa{left:466.557933px;}
.x80{left:469.079367px;}
.x15{left:470.701679px;}
.x2d{left:478.798458px;}
.x35{left:480.958240px;}
.x81{left:482.581240px;}
.x7d{left:488.520488px;}
.x2e{left:489.598633px;}
.x4b{left:498.956547px;}
.x4a{left:501.474402px;}
.x7c{left:504.182689px;}
.x49{left:505.799487px;}
.x3d{left:508.502799px;}
.x7f{left:512.467986px;}
.x5f{left:520.018506px;}
.x5d{left:528.829876px;}
.x94{left:540.535457px;}
.x8b{left:541.627408px;}
.x3e{left:545.043539px;}
.x95{left:552.052199px;}
.x17{left:554.045129px;}
.x74{left:559.251332px;}
.x3a{left:561.789104px;}
.x87{left:567.005184px;}
.x75{left:572.755951px;}
.x56{left:580.137410px;}
.x57{left:585.353253px;}
.x26{left:591.293676px;}
.x8c{left:595.631496px;}
.xb{left:596.700010px;}
.x14{left:597.964079px;}
.x6c{left:601.557619px;}
.x8{left:604.262089px;}
.x6b{left:606.060621px;}
.x27{left:608.223535px;}
.x6{left:609.482792px;}
.x24{left:620.275541px;}
.x7{left:622.618956px;}
.x6d{left:624.056172px;}
.x7a{left:628.382962px;}
.x25{left:630.723456px;}
.x36{left:637.381151px;}
.x79{left:652.133146px;}
.x4f{left:661.326720px;}
.x83{left:662.583767px;}
.x50{left:670.138191px;}
.x4c{left:673.563777px;}
.x96{left:677.692494px;}
.x4e{left:680.042193px;}
.x51{left:681.841756px;}
.x4d{left:684.001207px;}
.x8d{left:701.834078px;}
.x6f{left:704.517087px;}
.x1a{left:728.097828px;}
.x6e{left:752.220991px;}
.xf{left:753.824943px;}
.x1{left:815.773655px;}
.x52{left:887.947064px;}
.x2{left:898.023553px;}
@media print{
.v3{vertical-align:-35.837176pt;}
.v2{vertical-align:-31.375361pt;}
.v5{vertical-align:-24.322488pt;}
.v6{vertical-align:-8.966082pt;}
.v7{vertical-align:-4.478915pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:30.714275pt;}
.v1{vertical-align:36.479079pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320640pt;}
.ls4{letter-spacing:18.212587pt;}
.ls1{letter-spacing:21.762074pt;}
.ls6{letter-spacing:21.798561pt;}
.ls5{letter-spacing:21.798617pt;}
.ls2{letter-spacing:35.995579pt;}
.ws9{word-spacing:-79.999793pt;}
.ws15{word-spacing:-28.927925pt;}
.ws1{word-spacing:-27.647929pt;}
.ws10{word-spacing:-26.078729pt;}
.ws11{word-spacing:-24.369781pt;}
.ws1c{word-spacing:-22.486922pt;}
.ws2a{word-spacing:-21.695944pt;}
.ws1f{word-spacing:-20.538898pt;}
.ws17{word-spacing:-19.236999pt;}
.ws8{word-spacing:-18.079953pt;}
.wsc{word-spacing:-17.279252pt;}
.ws18{word-spacing:-16.922907pt;}
.ws12{word-spacing:-16.239958pt;}
.ws1a{word-spacing:-15.720311pt;}
.ws6{word-spacing:-15.331895pt;}
.wsb{word-spacing:-15.200665pt;}
.ws21{word-spacing:-14.463963pt;}
.ws0{word-spacing:-13.445094pt;}
.wse{word-spacing:-12.584726pt;}
.ws2{word-spacing:-12.472320pt;}
.ws16{word-spacing:-12.005018pt;}
.ws22{word-spacing:-11.433026pt;}
.ws1b{word-spacing:-10.847972pt;}
.ws19{word-spacing:-10.783268pt;}
.ws13{word-spacing:-9.743975pt;}
.ws14{word-spacing:-6.074935pt;}
.ws25{word-spacing:-5.976337pt;}
.wsf{word-spacing:-5.632000pt;}
.ws26{word-spacing:-5.456690pt;}
.ws23{word-spacing:-4.937043pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:0.069403pt;}
.wsa{word-spacing:2.079995pt;}
.wsd{word-spacing:3.066292pt;}
.ws3{word-spacing:3.743990pt;}
.ws1e{word-spacing:9.349041pt;}
.ws7{word-spacing:25.733355pt;}
.ws29{word-spacing:50.245965pt;}
.ws20{word-spacing:130.343040pt;}
.ws28{word-spacing:147.793432pt;}
.ws27{word-spacing:148.433185pt;}
.ws1d{word-spacing:219.488998pt;}
.ws5{word-spacing:290.955980pt;}
._12{margin-left:-977.978044pt;}
._f{margin-left:-12.063296pt;}
._1f{margin-left:-10.189386pt;}
._1{margin-left:-7.054059pt;}
._11{margin-left:-6.040317pt;}
._0{margin-left:-5.033631pt;}
._5{margin-left:-3.847668pt;}
._4{margin-left:-2.244473pt;}
._2{margin-left:-0.961917pt;}
._3{width:1.282556pt;}
._b{width:2.408948pt;}
._26{width:4.565685pt;}
._16{width:8.833897pt;}
._6{width:13.487965pt;}
._18{width:16.127958pt;}
._e{width:20.159948pt;}
._17{width:21.354058pt;}
._9{width:33.833269pt;}
._a{width:43.581166pt;}
._20{width:52.647255pt;}
._24{width:67.575518pt;}
._22{width:88.418108pt;}
._25{width:93.607780pt;}
._23{width:101.551129pt;}
._21{width:108.906792pt;}
._1d{width:123.653633pt;}
._1c{width:137.558912pt;}
._d{width:163.376732pt;}
._c{width:180.634321pt;}
._7{width:189.694427pt;}
._1a{width:201.450159pt;}
._1b{width:230.374213pt;}
._19{width:251.305807pt;}
._13{width:260.491111pt;}
._1e{width:264.670046pt;}
._15{width:283.062408pt;}
._14{width:337.774555pt;}
._10{width:370.339856pt;}
._8{width:459.532043pt;}
.fs16{font-size:19.840368pt;}
.fs1a{font-size:21.119631pt;}
.fs11{font-size:24.320000pt;}
.fs8{font-size:24.320409pt;}
.fs17{font-size:26.880245pt;}
.fs7{font-size:28.159508pt;}
.fs13{font-size:28.160000pt;}
.fs1f{font-size:29.440081pt;}
.fse{font-size:31.999917pt;}
.fsb{font-size:35.840327pt;}
.fs12{font-size:37.119590pt;}
.fs4{font-size:47.999876pt;}
.fs19{font-size:53.119548pt;}
.fs5{font-size:55.684627pt;}
.fs1e{font-size:56.320326pt;}
.fs3{font-size:61.439999pt;}
.fs1d{font-size:63.999835pt;}
.fs0{font-size:66.231991pt;}
.fsa{font-size:67.840244pt;}
.fsf{font-size:74.880121pt;}
.fs1b{font-size:77.439957pt;}
.fs10{font-size:79.999793pt;}
.fsd{font-size:85.119466pt;}
.fs1c{font-size:90.880080pt;}
.fsc{font-size:95.999752pt;}
.fs15{font-size:101.119424pt;}
.fs1{font-size:106.879680pt;}
.fs14{font-size:106.880039pt;}
.fs9{font-size:117.119383pt;}
.fs18{font-size:127.999670pt;}
.fs2{font-size:143.999628pt;}
.fs6{font-size:191.999504pt;}
.fs20{font-size:213.120446pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:23.348484pt;}
.y11{bottom:100.165262pt;}
.ye5{bottom:133.601267pt;}
.ya3{bottom:156.157484pt;}
.y93{bottom:157.131403pt;}
.y112{bottom:162.064603pt;}
.yf0{bottom:168.316538pt;}
.y48{bottom:169.121785pt;}
.y19{bottom:169.272372pt;}
.ye4{bottom:169.278792pt;}
.y92{bottom:171.688670pt;}
.y111{bottom:175.344474pt;}
.yc3{bottom:176.158541pt;}
.ye1{bottom:176.957402pt;}
.y81{bottom:181.283669pt;}
.y110{bottom:182.707041pt;}
.ya6{bottom:184.163853pt;}
.y6c{bottom:184.474231pt;}
.ye3{bottom:184.635929pt;}
.y2b{bottom:185.921637pt;}
.y91{bottom:186.408124pt;}
.y30{bottom:189.608175pt;}
.y109{bottom:190.383302pt;}
.yfe{bottom:190.398520pt;}
.ye0{bottom:192.314540pt;}
.y7b{bottom:193.447632pt;}
.y62{bottom:197.904638pt;}
.ya5{bottom:198.563202pt;}
.ye2{bottom:199.997347pt;}
.y7f{bottom:200.645212pt;}
.y90{bottom:200.965391pt;}
.y1b{bottom:201.270300pt;}
.y6b{bottom:202.401356pt;}
.yf8{bottom:203.835271pt;}
.y2c{bottom:204.165022pt;}
.ye{bottom:206.239020pt;}
.y2a{bottom:207.839341pt;}
.y7a{bottom:208.004978pt;}
.y88{bottom:210.719316pt;}
.y2f{bottom:211.519740pt;}
.y1a{bottom:211.994649pt;}
.y127{bottom:212.487249pt;}
.ya4{bottom:212.962622pt;}
.y7e{bottom:215.364666pt;}
.yfd{bottom:217.283460pt;}
.yd{bottom:219.525076pt;}
.y121{bottom:219.684828pt;}
.y6a{bottom:220.316988pt;}
.y10a{bottom:220.945199pt;}
.y79{bottom:222.724353pt;}
.y126{bottom:227.044515pt;}
.y29{bottom:229.763125pt;}
.y7d{bottom:229.930085pt;}
.yef{bottom:230.720157pt;}
.y8f{bottom:232.645394pt;}
.y87{bottom:233.125321pt;}
.y2e{bottom:233.443524pt;}
.yf{bottom:234.239044pt;}
.y120{bottom:234.404203pt;}
.yc{bottom:234.880290pt;}
.y18{bottom:236.474190pt;}
.y78{bottom:237.289773pt;}
.yfc{bottom:237.438560pt;}
.y58{bottom:237.440112pt;}
.y5a{bottom:239.520142pt;}
.y128{bottom:241.609935pt;}
.y125{bottom:241.763969pt;}
.y7c{bottom:244.649460pt;}
.y69{bottom:244.796764pt;}
.y8e{bottom:247.202661pt;}
.y11f{bottom:248.969622pt;}
.y122{bottom:249.123657pt;}
.y5b{bottom:250.561374pt;}
.yf7{bottom:250.875312pt;}
.y10b{bottom:251.505284pt;}
.y77{bottom:252.009147pt;}
.ybb{bottom:252.159990pt;}
.y57{bottom:252.806270pt;}
.y47{bottom:254.560133pt;}
.y17{bottom:254.718885pt;}
.yb{bottom:255.515625pt;}
.y86{bottom:255.519889pt;}
.y28{bottom:255.525975pt;}
.y124{bottom:256.329310pt;}
.ydf{bottom:256.798084pt;}
.yee{bottom:257.599351pt;}
.y2d{bottom:259.206374pt;}
.y68{bottom:262.718143pt;}
.y11e{bottom:263.689076pt;}
.y56{bottom:265.923883pt;}
.y59{bottom:268.161412pt;}
.ybf{bottom:268.803552pt;}
.y82{bottom:269.282072pt;}
.yff{bottom:271.036103pt;}
.y123{bottom:271.048764pt;}
.yde{bottom:272.155222pt;}
.ya{bottom:272.315643pt;}
.yed{bottom:277.754507pt;}
.y85{bottom:277.920148pt;}
.y67{bottom:280.633775pt;}
.y27{bottom:281.117939pt;}
.y46{bottom:281.273631pt;}
.y55{bottom:281.282745pt;}
.y10c{bottom:282.067253pt;}
.ybe{bottom:285.930246pt;}
.y6{bottom:288.646481pt;}
.yba{bottom:289.768201pt;}
.yc2{bottom:292.329475pt;}
.yec{bottom:297.921044pt;}
.y66{bottom:298.560844pt;}
.y84{bottom:300.314716pt;}
.y26{bottom:303.041722pt;}
.ybd{bottom:303.048867pt;}
.yfb{bottom:304.473696pt;}
.y76{bottom:304.649683pt;}
.yb9{bottom:306.886742pt;}
.y45{bottom:308.158516pt;}
.yc1{bottom:309.285988pt;}
.y10d{bottom:312.467737pt;}
.y54{bottom:313.442110pt;}
.ya2{bottom:314.243203pt;}
.yf6{bottom:318.076144pt;}
.y75{bottom:319.369058pt;}
.ybc{bottom:320.167488pt;}
.y83{bottom:322.720720pt;}
.y65{bottom:323.194880pt;}
.yb8{bottom:324.005363pt;}
.yeb{bottom:324.640233pt;}
.y95{bottom:325.922322pt;}
.y8d{bottom:329.606242pt;}
.y74{bottom:333.926404pt;}
.y44{bottom:335.043457pt;}
.ydd{bottom:336.793438pt;}
.y9{bottom:339.360947pt;}
.y25{bottom:339.839748pt;}
.y94{bottom:340.487741pt;}
.y64{bottom:341.121949pt;}
.yb7{bottom:341.123983pt;}
.y10e{bottom:343.027822pt;}
.y8c{bottom:344.163508pt;}
.ydc{bottom:344.476329pt;}
.yea{bottom:344.795388pt;}
.y73{bottom:348.645779pt;}
.yc0{bottom:350.083278pt;}
.y80{bottom:352.318794pt;}
.y7{bottom:356.315643pt;}
.y63{bottom:359.689597pt;}
.y43{bottom:361.756955pt;}
.y24{bottom:361.763472pt;}
.ye9{bottom:364.956179pt;}
.y8{bottom:373.115616pt;}
.y10f{bottom:373.587907pt;}
.y8b{bottom:379.369282pt;}
.y8a{bottom:394.088736pt;}
.y72{bottom:397.439169pt;}
.y4f{bottom:410.557811pt;}
.y16{bottom:416.003757pt;}
.y39{bottom:416.489843pt;}
.y31{bottom:428.170304pt;}
.ya1{bottom:434.403731pt;}
.y4e{bottom:442.561806pt;}
.y10{bottom:559.366272pt;}
.y6f{bottom:584.955834pt;}
.y14{bottom:587.208378pt;}
.y89{bottom:589.280018pt;}
.y22{bottom:590.559297pt;}
.y6e{bottom:592.956036pt;}
.y23{bottom:598.876588pt;}
.y12c{bottom:599.996409pt;}
.y6d{bottom:600.956199pt;}
.y13{bottom:606.727707pt;}
.y12b{bottom:607.996572pt;}
.y11c{bottom:611.198181pt;}
.y12a{bottom:615.996774pt;}
.y9f{bottom:619.040838pt;}
.yab{bottom:619.840242pt;}
.y108{bottom:621.273057pt;}
.y41{bottom:630.880613pt;}
.y61{bottom:633.119980pt;}
.yb5{bottom:633.283797pt;}
.yaa{bottom:634.243274pt;}
.y107{bottom:634.552856pt;}
.yd1{bottom:635.680756pt;}
.y11b{bottom:637.916254pt;}
.y4d{bottom:638.401285pt;}
.y100{bottom:641.280096pt;}
.y12d{bottom:642.399493pt;}
.yfa{bottom:642.715090pt;}
.yb0{bottom:644.478844pt;}
.y9e{bottom:645.923463pt;}
.ya0{bottom:646.248015pt;}
.y38{bottom:651.041607pt;}
.yd0{bottom:653.282296pt;}
.y42{bottom:653.601120pt;}
.y40{bottom:653.926899pt;}
.y52{bottom:655.520075pt;}
.y11d{bottom:657.915126pt;}
.ye8{bottom:658.551900pt;}
.y12{bottom:658.571313pt;}
.yf9{bottom:662.879367pt;}
.y11a{bottom:664.798879pt;}
.y9d{bottom:666.078591pt;}
.ydb{bottom:666.240482pt;}
.yaf{bottom:667.839358pt;}
.y60{bottom:669.277496pt;}
.ye7{bottom:669.597715pt;}
.ycf{bottom:673.758800pt;}
.yf5{bottom:676.316091pt;}
.yda{bottom:680.966387pt;}
.yae{bottom:682.242426pt;}
.y3f{bottom:683.685446pt;}
.y4c{bottom:689.761965pt;}
.y21{bottom:690.241887pt;}
.ycc{bottom:691.360316pt;}
.y119{bottom:691.681505pt;}
.y9c{bottom:692.961189pt;}
.yd9{bottom:695.523694pt;}
.yf4{bottom:696.480341pt;}
.y15{bottom:701.272939pt;}
.y5f{bottom:705.277496pt;}
.y3e{bottom:706.721332pt;}
.ycb{bottom:708.797753pt;}
.y4b{bottom:709.917093pt;}
.yd8{bottom:710.243108pt;}
.y71{bottom:713.282133pt;}
.yf3{bottom:716.635469pt;}
.y118{bottom:718.399606pt;}
.y9b{bottom:719.679290pt;}
.y20{bottom:722.400683pt;}
.y37{bottom:723.362966pt;}
.yd7{bottom:724.800394pt;}
.yca{bottom:726.399270pt;}
.y4a{bottom:730.081342pt;}
.y3d{bottom:736.324027pt;}
.ye6{bottom:736.799718pt;}
.yd6{bottom:739.519789pt;}
.y9a{bottom:739.843539pt;}
.y5e{bottom:741.277496pt;}
.yc9{bottom:744.000810pt;}
.y117{bottom:745.282231pt;}
.yce{bottom:746.883593pt;}
.ya7{bottom:747.677035pt;}
.y36{bottom:750.236442pt;}
.y70{bottom:751.688288pt;}
.y1f{bottom:754.725700pt;}
.yd5{bottom:756.644880pt;}
.y49{bottom:756.963968pt;}
.y3c{bottom:759.359913pt;}
.yc8{bottom:761.602327pt;}
.yf2{bottom:763.517791pt;}
.ycd{bottom:764.477314pt;}
.y5{bottom:765.275398pt;}
.y99{bottom:766.717015pt;}
.yd4{bottom:771.202187pt;}
.y116{bottom:772.155707pt;}
.y35{bottom:777.119068pt;}
.y5d{bottom:777.442497pt;}
.y102{bottom:779.037417pt;}
.yc7{bottom:782.078830pt;}
.yf1{bottom:783.682041pt;}
.yd3{bottom:785.921581pt;}
.y1e{bottom:787.040348pt;}
.y129{bottom:787.049907pt;}
.y53{bottom:788.643258pt;}
.y3b{bottom:789.118460pt;}
.y115{bottom:792.319957pt;}
.y98{bottom:793.599641pt;}
.y106{bottom:793.918014pt;}
.y101{bottom:795.357680pt;}
.y4{bottom:797.279921pt;}
.y104{bottom:799.676656pt;}
.yc6{bottom:799.680347pt;}
.yd2{bottom:803.040202pt;}
.y34{bottom:803.837169pt;}
.y105{bottom:810.238276pt;}
.y3a{bottom:812.164730pt;}
.y5c{bottom:813.442497pt;}
.y97{bottom:813.763890pt;}
.yb2{bottom:815.197881pt;}
.yb6{bottom:817.119751pt;}
.y114{bottom:819.038058pt;}
.y1d{bottom:819.199144pt;}
.y33{bottom:824.001418pt;}
.ya9{bottom:825.281835pt;}
.y3{bottom:829.284443pt;}
.yb1{bottom:829.600180pt;}
.y103{bottom:829.759850pt;}
.yc5{bottom:831.039491pt;}
.y113{bottom:839.202307pt;}
.ya8{bottom:839.678287pt;}
.y96{bottom:840.481991pt;}
.yb4{bottom:852.961464pt;}
.yad{bottom:856.799337pt;}
.y1c{bottom:859.195813pt;}
.yb3{bottom:867.357898pt;}
.yac{bottom:871.201636pt;}
.y32{bottom:875.674466pt;}
.y51{bottom:879.843334pt;}
.yc4{bottom:883.194574pt;}
.y50{bottom:910.245824pt;}
.y1{bottom:1035.682496pt;}
.h2a{height:18.304368pt;}
.h3a{height:19.648304pt;}
.h20{height:19.733804pt;}
.h35{height:21.078480pt;}
.h17{height:21.571840pt;}
.h38{height:23.297088pt;}
.h37{height:23.336463pt;}
.h9{height:24.189782pt;}
.h1a{height:24.977920pt;}
.h36{height:25.515695pt;}
.h23{height:26.735869pt;}
.h8{height:28.008261pt;}
.h10{height:31.828043pt;}
.h1d{height:33.328039pt;}
.hd{height:35.647825pt;}
.h19{height:36.920217pt;}
.h5{height:41.601455pt;}
.h29{height:46.116483pt;}
.h2c{height:47.742064pt;}
.h32{height:48.812783pt;}
.h28{height:49.148311pt;}
.h26{height:52.834238pt;}
.h4{height:53.249999pt;}
.h1f{height:53.339999pt;}
.h6{height:55.385540pt;}
.h1{height:57.403215pt;}
.h13{height:60.742031pt;}
.h30{height:63.656086pt;}
.h16{height:64.898543pt;}
.h2e{height:65.531081pt;}
.h2b{height:67.117151pt;}
.hb{height:67.475868pt;}
.h1e{height:69.452946pt;}
.h22{height:71.296990pt;}
.h18{height:73.772974pt;}
.h1c{height:76.432065pt;}
.h11{height:76.671687pt;}
.h34{height:79.526890pt;}
.h31{height:79.527058pt;}
.h12{height:79.570107pt;}
.h1b{height:80.786279pt;}
.h21{height:81.046366pt;}
.hf{height:84.662281pt;}
.h2{height:86.928806pt;}
.h27{height:87.156015pt;}
.ha{height:89.612340pt;}
.h2d{height:90.391955pt;}
.he{height:91.406014pt;}
.h3b{height:95.484129pt;}
.h15{height:101.221342pt;}
.h33{height:110.241333pt;}
.h14{height:111.515038pt;}
.h2f{height:116.490324pt;}
.h25{height:121.874685pt;}
.h3{height:124.452804pt;}
.h24{height:127.312171pt;}
.hc{height:140.454648pt;}
.h39{height:161.921589pt;}
.h7{height:182.812028pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:87.998170pt;}
.x3{left:102.556991pt;}
.x28{left:114.245734pt;}
.x1e{left:118.075873pt;}
.x2f{left:119.684320pt;}
.x2c{left:122.556652pt;}
.x4{left:126.245770pt;}
.x18{left:128.964517pt;}
.x1f{left:133.114891pt;}
.x29{left:136.963348pt;}
.x47{left:139.840848pt;}
.x1c{left:142.079720pt;}
.x7e{left:145.118768pt;}
.x82{left:146.079160pt;}
.x2a{left:148.955876pt;}
.x19{left:150.881329pt;}
.x1d{left:152.958598pt;}
.x31{left:154.403902pt;}
.xd{left:155.530853pt;}
.x48{left:159.838488pt;}
.x89{left:164.002445pt;}
.x3b{left:165.116393pt;}
.x11{left:166.714986pt;}
.x37{left:169.597504pt;}
.x8f{left:170.881284pt;}
.x3c{left:177.118185pt;}
.x7b{left:178.881667pt;}
.x8e{left:183.522305pt;}
.x64{left:185.278818pt;}
.x38{left:189.442497pt;}
.x12{left:192.324451pt;}
.x40{left:194.555543pt;}
.x70{left:196.961220pt;}
.x39{left:198.397499pt;}
.x63{left:202.241672pt;}
.x62{left:205.757288pt;}
.x13{left:209.118886pt;}
.x42{left:211.680634pt;}
.x41{left:214.079821pt;}
.x1b{left:216.642304pt;}
.x3f{left:219.040322pt;}
.x16{left:233.600887pt;}
.x71{left:242.720368pt;}
.x84{left:248.481076pt;}
.x90{left:254.237210pt;}
.x5c{left:255.196896pt;}
.x5b{left:264.320339pt;}
.x5a{left:266.239692pt;}
.x97{left:268.794005pt;}
.x33{left:275.518827pt;}
.x45{left:277.755851pt;}
.x44{left:278.877626pt;}
.x43{left:282.716352pt;}
.x34{left:284.477793pt;}
.x46{left:287.676853pt;}
.x32{left:293.436760pt;}
.x85{left:299.521383pt;}
.x66{left:308.319530pt;}
.x77{left:311.512974pt;}
.x67{left:315.040199pt;}
.x65{left:319.680838pt;}
.x22{left:321.757000pt;}
.xe{left:324.631969pt;}
.x78{left:327.038214pt;}
.x68{left:329.600730pt;}
.x23{left:336.796018pt;}
.x10{left:339.686385pt;}
.x72{left:347.034324pt;}
.x86{left:350.723730pt;}
.x21{left:356.795947pt;}
.x20{left:357.919015pt;}
.x5e{left:361.279333pt;}
.x92{left:364.159395pt;}
.x8a{left:367.364864pt;}
.x61{left:371.197787pt;}
.x53{left:373.116706pt;}
.x91{left:377.277202pt;}
.x93{left:379.034427pt;}
.x55{left:381.115908pt;}
.x58{left:383.197389pt;}
.x73{left:384.165825pt;}
.x59{left:386.076429pt;}
.x54{left:388.475595pt;}
.x60{left:392.800494pt;}
.x2b{left:393.759785pt;}
.x88{left:399.205244pt;}
.x76{left:400.959896pt;}
.x6a{left:402.721137pt;}
.x9{left:405.757507pt;}
.x30{left:407.675951pt;}
.x69{left:409.598554pt;}
.x5{left:413.602478pt;}
.xa{left:414.718162pt;}
.x80{left:416.959438pt;}
.x15{left:418.401492pt;}
.x2d{left:425.598630pt;}
.x35{left:427.518436pt;}
.x81{left:428.961102pt;}
.x7d{left:434.240434pt;}
.x2e{left:435.198785pt;}
.x4b{left:443.516931pt;}
.x4a{left:445.755024pt;}
.x7c{left:448.162390pt;}
.x49{left:449.599544pt;}
.x3d{left:452.002488pt;}
.x7f{left:455.527098pt;}
.x5f{left:462.238672pt;}
.x5d{left:470.071001pt;}
.x94{left:480.475962pt;}
.x8b{left:481.446585pt;}
.x3e{left:484.483146pt;}
.x95{left:490.713066pt;}
.x17{left:492.484559pt;}
.x74{left:497.112295pt;}
.x3a{left:499.368093pt;}
.x87{left:504.004608pt;}
.x75{left:509.116401pt;}
.x56{left:515.677698pt;}
.x57{left:520.314003pt;}
.x26{left:525.594379pt;}
.x8c{left:529.450218pt;}
.xb{left:530.400009pt;}
.x14{left:531.523625pt;}
.x6c{left:534.717884pt;}
.x8{left:537.121857pt;}
.x6b{left:538.720552pt;}
.x27{left:540.643142pt;}
.x6{left:541.762482pt;}
.x24{left:551.356037pt;}
.x7{left:553.439072pt;}
.x6d{left:554.716598pt;}
.x7a{left:558.562633pt;}
.x25{left:560.643072pt;}
.x36{left:566.561023pt;}
.x79{left:579.673908pt;}
.x4f{left:587.845973pt;}
.x83{left:588.963349pt;}
.x50{left:595.678392pt;}
.x4c{left:598.723357pt;}
.x96{left:602.393328pt;}
.x4e{left:604.481949pt;}
.x51{left:606.081561pt;}
.x4d{left:608.001073pt;}
.x8d{left:623.852513pt;}
.x6f{left:626.237411pt;}
.x1a{left:647.198069pt;}
.x6e{left:668.640881pt;}
.xf{left:670.066616pt;}
.x1{left:725.132138pt;}
.x52{left:789.286279pt;}
.x2{left:798.243158pt;}
}




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