
    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_127cfb097982bcbab10a8c98.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_d5c9a840aea83155af23fbb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.123000;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_11bee95ebeb142c9634a267a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.847000;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_8c4df7b41a00a4ccb188b7f4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.062000;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_9333d7db287ed7d9c4f40b64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.844000;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_f1cb5513a405d87e40d69175.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079000;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_b83aba1724d53378743bcb96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.062000;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_b77f4e1dd2a054a87142bfbc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.852000;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_b470e58886076fdae5fa48c1.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4fd2b7ac7631863b34a36027.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.123000;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_6fb686204cb6f60962ae8958.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.852000;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_80baa6c6850baaae70d5dd8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.079000;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_1494b1ac614cd2cd527b7ee6.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061000;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_c1cfe3426db012f2f1afd5cc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.854000;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_aacd842aa07355702888b5b4.woff2')format("woff");}.fff{font-family:fff;line-height:1.075000;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:ff10;src:url('chunks/assets/font_6ce7909f68474fb7f92199f8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.062000;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:ff11;src:url('chunks/assets/font_66b778203a21b1796b0e206c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.028000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000096px;}
.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;}
}
.ws0{word-spacing:-23.089499px;}
.ws4{word-spacing:-22.099949px;}
.ws1{word-spacing:-17.999999px;}
.ws3{word-spacing:-16.492499px;}
.ws7{word-spacing:-14.996249px;}
.ws8{word-spacing:-10.500723px;}
.ws5{word-spacing:-6.993414px;}
.ws6{word-spacing:-4.667118px;}
.ws2{word-spacing:0.000000px;}
._35{margin-left:-17.010662px;}
._2c{margin-left:-15.715662px;}
._19{margin-left:-1.002955px;}
._a{width:1.563717px;}
._f{width:3.431924px;}
._e{width:4.447494px;}
._1b{width:5.878656px;}
._1{width:7.846613px;}
._15{width:8.864727px;}
._4{width:9.883522px;}
._3{width:10.950370px;}
._12{width:12.113885px;}
._11{width:13.557595px;}
._1a{width:14.660067px;}
._21{width:17.767484px;}
._1e{width:18.861086px;}
._6{width:20.644032px;}
._5{width:22.354821px;}
._9{width:23.507602px;}
._8{width:25.505534px;}
._20{width:26.964320px;}
._c{width:28.107729px;}
._0{width:29.287878px;}
._7{width:30.575193px;}
._24{width:31.723667px;}
._17{width:32.775136px;}
._25{width:34.407289px;}
._29{width:35.592908px;}
._30{width:36.746432px;}
._23{width:38.061264px;}
._b{width:39.768077px;}
._16{width:41.434940px;}
._10{width:42.457456px;}
._2{width:44.290491px;}
._1f{width:45.532683px;}
._36{width:47.195765px;}
._1d{width:48.346370px;}
._32{width:49.379462px;}
._2b{width:51.319797px;}
._2a{width:52.355769px;}
._2f{width:54.015354px;}
._41{width:55.909230px;}
._46{width:57.463217px;}
._27{width:58.787101px;}
._33{width:60.097762px;}
._2d{width:61.557913px;}
._18{width:62.563537px;}
._28{width:65.005579px;}
._1c{width:66.903802px;}
._44{width:68.032602px;}
._22{width:69.521843px;}
._42{width:70.545858px;}
._40{width:72.302166px;}
._38{width:74.712034px;}
._45{width:76.173853px;}
._3a{width:78.317722px;}
._14{width:80.146298px;}
._3c{width:82.231100px;}
._48{width:83.254333px;}
._31{width:85.014656px;}
._d{width:87.492514px;}
._34{width:90.608649px;}
._4b{width:97.271372px;}
._13{width:98.497941px;}
._37{width:99.906432px;}
._4a{width:103.989026px;}
._49{width:110.061903px;}
._3b{width:113.834986px;}
._43{width:116.022339px;}
._26{width:121.055449px;}
._2e{width:123.487100px;}
._47{width:162.837822px;}
._39{width:164.567860px;}
._3d{width:175.131133px;}
._3e{width:188.705780px;}
._3f{width:312.567849px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.668471px;}
.fs5{font-size:27.973655px;}
.fs8{font-size:29.739314px;}
.fs1{font-size:42.000967px;}
.fs9{font-size:42.002892px;}
.fs0{font-size:53.999998px;}
.fs7{font-size:59.984997px;}
.fs2{font-size:65.969996px;}
.fs4{font-size:71.999997px;}
.fs3{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y19c{bottom:5.693939px;}
.y19b{bottom:15.607044px;}
.ye4{bottom:16.397222px;}
.yb0{bottom:23.348122px;}
.y6{bottom:24.699501px;}
.y19a{bottom:25.520149px;}
.ye3{bottom:30.397545px;}
.y199{bottom:35.433253px;}
.yaf{bottom:37.348445px;}
.y5{bottom:38.699823px;}
.y190{bottom:42.449680px;}
.ye2{bottom:44.397867px;}
.y198{bottom:45.346358px;}
.y140{bottom:46.892548px;}
.y4{bottom:52.700145px;}
.ye1{bottom:58.398189px;}
.y197{bottom:63.855018px;}
.y3{bottom:66.700467px;}
.y193{bottom:69.791292px;}
.ye0{bottom:72.398511px;}
.y16f{bottom:82.348819px;}
.y192{bottom:88.140239px;}
.y195{bottom:89.013051px;}
.y139{bottom:89.955918px;}
.y54{bottom:90.902239px;}
.y10f{bottom:92.004649px;}
.yab{bottom:93.579145px;}
.y16e{bottom:104.848818px;}
.y191{bottom:105.272134px;}
.ydd{bottom:106.866525px;}
.y138{bottom:112.455917px;}
.y53{bottom:113.402238px;}
.y10e{bottom:114.504648px;}
.yaa{bottom:116.079144px;}
.y16d{bottom:127.348817px;}
.ydc{bottom:129.366524px;}
.y137{bottom:134.955916px;}
.y52{bottom:135.902237px;}
.y10d{bottom:137.004647px;}
.ya9{bottom:138.579143px;}
.y16c{bottom:149.848817px;}
.ydb{bottom:151.866523px;}
.y136{bottom:157.455915px;}
.y51{bottom:158.402236px;}
.y10c{bottom:159.504646px;}
.ya8{bottom:161.079142px;}
.y16b{bottom:172.348816px;}
.yda{bottom:174.366522px;}
.y19d{bottom:178.111026px;}
.y135{bottom:179.955914px;}
.y50{bottom:180.902235px;}
.y10b{bottom:182.004645px;}
.ya7{bottom:183.579141px;}
.y2b{bottom:191.517616px;}
.y16a{bottom:194.848815px;}
.yd9{bottom:196.866521px;}
.y134{bottom:202.455913px;}
.y4f{bottom:203.402234px;}
.y10a{bottom:204.504644px;}
.ya6{bottom:206.079140px;}
.y2a{bottom:214.017615px;}
.y169{bottom:217.348814px;}
.yd8{bottom:219.366520px;}
.y133{bottom:224.955912px;}
.y4e{bottom:225.902233px;}
.y7f{bottom:226.114619px;}
.y109{bottom:227.004643px;}
.ya5{bottom:228.579139px;}
.y29{bottom:236.517614px;}
.y168{bottom:239.848813px;}
.yd7{bottom:241.866519px;}
.y194{bottom:242.317430px;}
.y132{bottom:247.455911px;}
.y4d{bottom:248.402232px;}
.y7e{bottom:248.614618px;}
.y108{bottom:249.504642px;}
.ya4{bottom:251.079138px;}
.y28{bottom:259.017613px;}
.y167{bottom:262.348812px;}
.yd6{bottom:264.366518px;}
.y196{bottom:269.253097px;}
.y131{bottom:269.955910px;}
.y4c{bottom:270.902232px;}
.y7d{bottom:271.114617px;}
.y107{bottom:272.004641px;}
.ya3{bottom:273.579137px;}
.y27{bottom:281.517612px;}
.y166{bottom:284.848811px;}
.yd5{bottom:286.866517px;}
.y130{bottom:292.455909px;}
.y4b{bottom:293.402231px;}
.y7c{bottom:293.614616px;}
.y106{bottom:294.504641px;}
.ya2{bottom:296.079136px;}
.y26{bottom:304.017611px;}
.y165{bottom:307.348810px;}
.yd4{bottom:309.366516px;}
.y1af{bottom:313.508399px;}
.y12f{bottom:314.955908px;}
.y4a{bottom:315.902230px;}
.y7b{bottom:316.114615px;}
.y105{bottom:317.004640px;}
.ya1{bottom:318.579136px;}
.y25{bottom:326.517610px;}
.y164{bottom:329.848809px;}
.yd3{bottom:331.866515px;}
.y1ae{bottom:337.277974px;}
.y12e{bottom:337.455908px;}
.y49{bottom:338.402229px;}
.y7a{bottom:338.614614px;}
.y104{bottom:339.504639px;}
.ya0{bottom:341.079135px;}
.y18e{bottom:348.176279px;}
.y24{bottom:349.017609px;}
.y163{bottom:352.348808px;}
.yd2{bottom:354.366514px;}
.y12d{bottom:359.955907px;}
.y48{bottom:360.902228px;}
.y79{bottom:361.114613px;}
.y103{bottom:362.004638px;}
.y19e{bottom:362.938701px;}
.y9f{bottom:363.579134px;}
.y18d{bottom:370.676278px;}
.y162{bottom:374.848807px;}
.yd1{bottom:376.866513px;}
.y12c{bottom:382.455906px;}
.y47{bottom:383.402227px;}
.y78{bottom:383.614612px;}
.y102{bottom:384.504637px;}
.y9e{bottom:386.079133px;}
.y59{bottom:391.692548px;}
.y18c{bottom:393.176277px;}
.y161{bottom:397.348806px;}
.yd0{bottom:399.366513px;}
.y12b{bottom:404.955905px;}
.y46{bottom:405.902226px;}
.y77{bottom:406.114611px;}
.y101{bottom:407.004636px;}
.y9d{bottom:408.579132px;}
.y18b{bottom:415.676276px;}
.y160{bottom:419.848805px;}
.ycf{bottom:421.866512px;}
.y12a{bottom:427.455904px;}
.y45{bottom:428.402225px;}
.y76{bottom:428.614611px;}
.y100{bottom:429.504635px;}
.y9c{bottom:431.079131px;}
.y23{bottom:434.927199px;}
.y18a{bottom:438.176275px;}
.y15f{bottom:442.348804px;}
.yce{bottom:444.366511px;}
.y129{bottom:449.955903px;}
.y44{bottom:450.902224px;}
.y75{bottom:451.114610px;}
.yff{bottom:452.004634px;}
.y9b{bottom:453.579130px;}
.y22{bottom:457.427199px;}
.y189{bottom:460.676274px;}
.y15e{bottom:464.848803px;}
.ydf{bottom:466.866510px;}
.y128{bottom:472.455902px;}
.y43{bottom:473.402223px;}
.y74{bottom:473.614609px;}
.yfe{bottom:474.504633px;}
.y9a{bottom:476.079129px;}
.y21{bottom:479.927198px;}
.y188{bottom:483.176273px;}
.y15d{bottom:487.348802px;}
.ycd{bottom:489.366509px;}
.y127{bottom:494.955901px;}
.y42{bottom:495.902222px;}
.y73{bottom:496.114608px;}
.yfd{bottom:497.004632px;}
.y99{bottom:498.579128px;}
.y20{bottom:502.427197px;}
.y187{bottom:505.676272px;}
.y15c{bottom:509.848802px;}
.ycc{bottom:511.866508px;}
.y126{bottom:517.455900px;}
.y41{bottom:518.402221px;}
.y72{bottom:518.614607px;}
.yfc{bottom:519.504631px;}
.y98{bottom:521.079127px;}
.y1f{bottom:524.927196px;}
.y186{bottom:528.176271px;}
.y15b{bottom:532.348801px;}
.ycb{bottom:534.366507px;}
.y125{bottom:539.955899px;}
.y40{bottom:540.902220px;}
.y71{bottom:541.114606px;}
.yfb{bottom:542.004630px;}
.y97{bottom:543.579126px;}
.y1e{bottom:547.427195px;}
.y185{bottom:550.676270px;}
.y15a{bottom:554.848800px;}
.yca{bottom:556.866506px;}
.y124{bottom:562.455898px;}
.y3f{bottom:563.402219px;}
.y70{bottom:563.614605px;}
.yfa{bottom:564.504629px;}
.y96{bottom:566.079125px;}
.y1d{bottom:569.927194px;}
.y184{bottom:573.176269px;}
.y159{bottom:577.348799px;}
.yc9{bottom:579.366505px;}
.y123{bottom:584.955897px;}
.y3e{bottom:585.902218px;}
.y6f{bottom:586.114604px;}
.yf9{bottom:587.004628px;}
.y95{bottom:588.579124px;}
.y1c{bottom:592.427193px;}
.y183{bottom:595.676268px;}
.y158{bottom:599.848798px;}
.yc8{bottom:601.866504px;}
.y122{bottom:607.455896px;}
.y3d{bottom:608.402217px;}
.y6e{bottom:608.614603px;}
.yf8{bottom:609.504627px;}
.y94{bottom:611.079123px;}
.y1b{bottom:614.927192px;}
.y182{bottom:618.176267px;}
.y157{bottom:622.348797px;}
.yc7{bottom:624.366503px;}
.y121{bottom:629.955895px;}
.y3c{bottom:630.902217px;}
.y6d{bottom:631.114602px;}
.yf7{bottom:632.004626px;}
.y93{bottom:633.579122px;}
.y1a{bottom:637.427191px;}
.y181{bottom:640.676267px;}
.y156{bottom:644.848796px;}
.yc6{bottom:646.866502px;}
.y120{bottom:652.455894px;}
.y3b{bottom:653.402216px;}
.y6c{bottom:653.614601px;}
.yf6{bottom:654.504626px;}
.y92{bottom:656.079121px;}
.y19{bottom:659.927190px;}
.y180{bottom:663.176266px;}
.y155{bottom:667.348795px;}
.yc5{bottom:669.366501px;}
.y11f{bottom:674.955893px;}
.y3a{bottom:675.902215px;}
.y6b{bottom:676.114600px;}
.yf5{bottom:677.004625px;}
.y91{bottom:678.579121px;}
.y18{bottom:682.427189px;}
.y17f{bottom:685.676265px;}
.y154{bottom:689.848794px;}
.yc4{bottom:691.866500px;}
.y11e{bottom:697.455893px;}
.y39{bottom:698.402214px;}
.y6a{bottom:698.614599px;}
.yf4{bottom:699.504624px;}
.y90{bottom:701.079120px;}
.y17{bottom:704.927188px;}
.y17e{bottom:708.176264px;}
.y153{bottom:712.348793px;}
.yc3{bottom:714.366499px;}
.y11d{bottom:719.955892px;}
.y38{bottom:720.902213px;}
.y69{bottom:721.114598px;}
.yf3{bottom:722.004623px;}
.y8f{bottom:723.579119px;}
.y16{bottom:727.427187px;}
.y17d{bottom:730.676263px;}
.y152{bottom:734.848792px;}
.yc2{bottom:736.866498px;}
.y11c{bottom:742.455891px;}
.y37{bottom:743.402212px;}
.y68{bottom:743.614597px;}
.yf2{bottom:744.504622px;}
.y8e{bottom:746.079118px;}
.y15{bottom:749.927186px;}
.y17c{bottom:753.176262px;}
.y151{bottom:757.348791px;}
.yc1{bottom:759.366498px;}
.y11b{bottom:764.955890px;}
.y36{bottom:765.902211px;}
.y67{bottom:766.114596px;}
.yf1{bottom:767.004621px;}
.y8d{bottom:768.579117px;}
.y14{bottom:772.427185px;}
.y17b{bottom:775.676261px;}
.yc0{bottom:781.866497px;}
.y11a{bottom:787.455889px;}
.y35{bottom:788.402210px;}
.y66{bottom:788.614596px;}
.yf0{bottom:789.504620px;}
.y8c{bottom:791.079116px;}
.y13{bottom:794.927184px;}
.y17a{bottom:798.176260px;}
.y150{bottom:802.348789px;}
.ybf{bottom:804.366496px;}
.y119{bottom:809.955888px;}
.y34{bottom:810.902209px;}
.y65{bottom:811.114595px;}
.yef{bottom:812.004619px;}
.y8b{bottom:813.579115px;}
.y12{bottom:817.427184px;}
.y179{bottom:820.676259px;}
.y1ac{bottom:823.613103px;}
.y14f{bottom:824.848788px;}
.ybe{bottom:826.866495px;}
.y118{bottom:832.455887px;}
.y33{bottom:833.402208px;}
.yee{bottom:834.504618px;}
.y8a{bottom:836.079114px;}
.y11{bottom:839.927183px;}
.y178{bottom:843.176258px;}
.y1ab{bottom:846.113102px;}
.y14e{bottom:847.348787px;}
.ybd{bottom:849.366494px;}
.y117{bottom:854.955886px;}
.y32{bottom:855.902207px;}
.yed{bottom:857.004617px;}
.yae{bottom:858.289579px;}
.y89{bottom:858.579113px;}
.y10{bottom:862.427182px;}
.y177{bottom:865.676257px;}
.y1aa{bottom:868.613101px;}
.y14d{bottom:869.848787px;}
.ybc{bottom:871.866493px;}
.y116{bottom:877.455885px;}
.y31{bottom:878.402206px;}
.yec{bottom:879.504616px;}
.y88{bottom:881.079112px;}
.yf{bottom:884.927181px;}
.y176{bottom:888.176256px;}
.y1a9{bottom:891.113100px;}
.y14c{bottom:892.348786px;}
.ybb{bottom:894.366492px;}
.y115{bottom:899.955884px;}
.y30{bottom:900.902205px;}
.yeb{bottom:902.004615px;}
.y87{bottom:903.579111px;}
.y64{bottom:905.852126px;}
.ye{bottom:907.427180px;}
.y175{bottom:910.676255px;}
.y1a8{bottom:913.613099px;}
.y14b{bottom:914.848785px;}
.yba{bottom:916.866491px;}
.y2f{bottom:923.402204px;}
.yea{bottom:924.504614px;}
.y86{bottom:926.079110px;}
.y63{bottom:928.352125px;}
.yd{bottom:929.927179px;}
.y174{bottom:933.176254px;}
.y1a7{bottom:936.113098px;}
.y14a{bottom:937.348784px;}
.yb9{bottom:939.366490px;}
.y2e{bottom:945.902203px;}
.ye9{bottom:947.004613px;}
.y13f{bottom:947.130869px;}
.y85{bottom:948.579109px;}
.y62{bottom:950.852124px;}
.yc{bottom:952.427178px;}
.y173{bottom:955.676253px;}
.y1a6{bottom:958.613097px;}
.y149{bottom:959.848783px;}
.yb8{bottom:961.866489px;}
.y2d{bottom:968.402202px;}
.ye8{bottom:969.504612px;}
.y84{bottom:971.079108px;}
.y13e{bottom:971.880868px;}
.y61{bottom:973.352123px;}
.yb{bottom:974.927177px;}
.y172{bottom:978.176252px;}
.y1a5{bottom:981.113096px;}
.y148{bottom:982.348782px;}
.yb7{bottom:984.366488px;}
.y2c{bottom:990.902202px;}
.ye7{bottom:992.004611px;}
.y83{bottom:993.579107px;}
.y60{bottom:995.852122px;}
.y13d{bottom:996.630867px;}
.ya{bottom:997.427176px;}
.y171{bottom:1000.676252px;}
.y1a4{bottom:1003.613095px;}
.y147{bottom:1004.848781px;}
.yb6{bottom:1006.866487px;}
.ye6{bottom:1014.504611px;}
.y82{bottom:1016.079106px;}
.y5f{bottom:1018.352121px;}
.y9{bottom:1019.927175px;}
.y170{bottom:1023.176251px;}
.y1a3{bottom:1026.113094px;}
.y146{bottom:1027.348780px;}
.yb5{bottom:1029.366486px;}
.ye5{bottom:1037.004610px;}
.y81{bottom:1038.579106px;}
.y58{bottom:1039.202172px;}
.y5e{bottom:1040.852120px;}
.y8{bottom:1042.427174px;}
.y114{bottom:1043.559626px;}
.y1a2{bottom:1048.613094px;}
.y145{bottom:1049.848779px;}
.yb4{bottom:1051.866485px;}
.y80{bottom:1061.079105px;}
.y5d{bottom:1063.352119px;}
.y57{bottom:1063.952171px;}
.y7{bottom:1064.927173px;}
.y113{bottom:1066.059625px;}
.y18f{bottom:1070.351235px;}
.y1a1{bottom:1071.113093px;}
.y144{bottom:1072.348778px;}
.yb3{bottom:1074.366484px;}
.y13c{bottom:1083.084618px;}
.y5c{bottom:1085.852118px;}
.y112{bottom:1088.559624px;}
.y1a0{bottom:1093.613092px;}
.y143{bottom:1094.848777px;}
.yde{bottom:1096.866483px;}
.y2{bottom:1103.552148px;}
.yad{bottom:1105.127115px;}
.y13b{bottom:1107.834617px;}
.y5b{bottom:1108.352117px;}
.y111{bottom:1111.059623px;}
.y19f{bottom:1116.113091px;}
.y142{bottom:1117.348776px;}
.yb2{bottom:1119.366483px;}
.yac{bottom:1129.877114px;}
.y5a{bottom:1130.852116px;}
.y13a{bottom:1132.584616px;}
.y110{bottom:1133.559622px;}
.y141{bottom:1139.848775px;}
.yb1{bottom:1141.866482px;}
.y56{bottom:1147.945783px;}
.y1ad{bottom:1149.771815px;}
.y55{bottom:1177.195782px;}
.h13{height:15.457494px;}
.h11{height:22.742582px;}
.h16{height:24.178062px;}
.h17{height:34.148351px;}
.hb{height:34.188787px;}
.ha{height:35.448816px;}
.hd{height:35.784824px;}
.h10{height:35.868826px;}
.h4{height:36.750846px;}
.h12{height:43.901998px;}
.h3{height:47.249998px;}
.h14{height:48.767803px;}
.he{height:53.633607px;}
.h15{height:53.639998px;}
.h8{height:53.699577px;}
.h18{height:54.623157px;}
.h9{height:55.678677px;}
.hc{height:56.206437px;}
.hf{height:56.338377px;}
.h5{height:57.723747px;}
.h7{height:59.615998px;}
.h6{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.535941px;}
.x1{left:45.056424px;}
.xe{left:46.871420px;}
.xb{left:47.949052px;}
.xa{left:53.371651px;}
.xc{left:119.519995px;}
.xd{left:127.235486px;}
.x5{left:271.946088px;}
.x4{left:325.823044px;}
.x3{left:469.060731px;}
.x7{left:481.785360px;}
.x6{left:497.095906px;}
.x9{left:618.425974px;}
.x8{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000086pt;}
.ws0{word-spacing:-20.523999pt;}
.ws4{word-spacing:-19.644399pt;}
.ws1{word-spacing:-15.999999pt;}
.ws3{word-spacing:-14.659999pt;}
.ws7{word-spacing:-13.329999pt;}
.ws8{word-spacing:-9.333976pt;}
.ws5{word-spacing:-6.216368pt;}
.ws6{word-spacing:-4.148549pt;}
.ws2{word-spacing:0.000000pt;}
._35{margin-left:-15.120589pt;}
._2c{margin-left:-13.969478pt;}
._19{margin-left:-0.891515pt;}
._a{width:1.389970pt;}
._f{width:3.050599pt;}
._e{width:3.953328pt;}
._1b{width:5.225472pt;}
._1{width:6.974767pt;}
._15{width:7.879758pt;}
._4{width:8.785353pt;}
._3{width:9.733662pt;}
._12{width:10.767898pt;}
._11{width:12.051195pt;}
._1a{width:13.031170pt;}
._21{width:15.793319pt;}
._1e{width:16.765410pt;}
._6{width:18.350250pt;}
._5{width:19.870952pt;}
._9{width:20.895646pt;}
._8{width:22.671586pt;}
._20{width:23.968284pt;}
._c{width:24.984648pt;}
._0{width:26.033670pt;}
._7{width:27.177949pt;}
._24{width:28.198815pt;}
._17{width:29.133455pt;}
._25{width:30.584257pt;}
._29{width:31.638141pt;}
._30{width:32.663495pt;}
._23{width:33.832235pt;}
._b{width:35.349401pt;}
._16{width:36.831058pt;}
._10{width:37.739961pt;}
._2{width:39.369325pt;}
._1f{width:40.473496pt;}
._36{width:41.951791pt;}
._1d{width:42.974551pt;}
._32{width:43.892855pt;}
._2b{width:45.617597pt;}
._2a{width:46.538461pt;}
._2f{width:48.013648pt;}
._41{width:49.697093pt;}
._46{width:51.078416pt;}
._27{width:52.255201pt;}
._33{width:53.420233pt;}
._2d{width:54.718145pt;}
._18{width:55.612033pt;}
._28{width:57.782737pt;}
._1c{width:59.470046pt;}
._44{width:60.473424pt;}
._22{width:61.797193pt;}
._42{width:62.707429pt;}
._40{width:64.268592pt;}
._38{width:66.410697pt;}
._45{width:67.710092pt;}
._3a{width:69.615753pt;}
._14{width:71.241154pt;}
._3c{width:73.094311pt;}
._48{width:74.003851pt;}
._31{width:75.568583pt;}
._d{width:77.771124pt;}
._34{width:80.541021pt;}
._4b{width:86.463442pt;}
._13{width:87.553725pt;}
._37{width:88.805718pt;}
._4a{width:92.434690pt;}
._49{width:97.832802pt;}
._3b{width:101.186654pt;}
._43{width:103.130968pt;}
._26{width:107.604843pt;}
._2e{width:109.766311pt;}
._47{width:144.744731pt;}
._39{width:146.282542pt;}
._3d{width:155.672118pt;}
._3e{width:167.738471pt;}
._3f{width:277.838088pt;}
.fs6{font-size:16.594196pt;}
.fs5{font-size:24.865471pt;}
.fs8{font-size:26.434946pt;}
.fs1{font-size:37.334193pt;}
.fs9{font-size:37.335904pt;}
.fs0{font-size:47.999998pt;}
.fs7{font-size:53.319997pt;}
.fs2{font-size:58.639997pt;}
.fs4{font-size:63.999997pt;}
.fs3{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y19c{bottom:5.061279pt;}
.y19b{bottom:13.872928pt;}
.ye4{bottom:14.575309pt;}
.yb0{bottom:20.753887pt;}
.y6{bottom:21.955112pt;}
.y19a{bottom:22.684577pt;}
.ye3{bottom:27.020040pt;}
.y199{bottom:31.496225pt;}
.yaf{bottom:33.198617pt;}
.y5{bottom:34.399843pt;}
.y190{bottom:37.733049pt;}
.ye2{bottom:39.464770pt;}
.y198{bottom:40.307874pt;}
.y140{bottom:41.682265pt;}
.y4{bottom:46.844574pt;}
.ye1{bottom:51.909501pt;}
.y197{bottom:56.760016pt;}
.y3{bottom:59.289304pt;}
.y193{bottom:62.036704pt;}
.ye0{bottom:64.354232pt;}
.y16f{bottom:73.198951pt;}
.y192{bottom:78.346879pt;}
.y195{bottom:79.122712pt;}
.y139{bottom:79.960816pt;}
.y54{bottom:80.801990pt;}
.y10f{bottom:81.781910pt;}
.yab{bottom:83.181462pt;}
.y16e{bottom:93.198950pt;}
.y191{bottom:93.575230pt;}
.ydd{bottom:94.992466pt;}
.y138{bottom:99.960815pt;}
.y53{bottom:100.801989pt;}
.y10e{bottom:101.781909pt;}
.yaa{bottom:103.181461pt;}
.y16d{bottom:113.198949pt;}
.ydc{bottom:114.992466pt;}
.y137{bottom:119.960814pt;}
.y52{bottom:120.801989pt;}
.y10d{bottom:121.781909pt;}
.ya9{bottom:123.181460pt;}
.y16c{bottom:133.198948pt;}
.ydb{bottom:134.992465pt;}
.y136{bottom:139.960813pt;}
.y51{bottom:140.801988pt;}
.y10c{bottom:141.781908pt;}
.ya8{bottom:143.181460pt;}
.y16b{bottom:153.198947pt;}
.yda{bottom:154.992464pt;}
.y19d{bottom:158.320912pt;}
.y135{bottom:159.960813pt;}
.y50{bottom:160.801987pt;}
.y10b{bottom:161.781907pt;}
.ya7{bottom:163.181459pt;}
.y2b{bottom:170.237881pt;}
.y16a{bottom:173.198946pt;}
.yd9{bottom:174.992463pt;}
.y134{bottom:179.960812pt;}
.y4f{bottom:180.801986pt;}
.y10a{bottom:181.781906pt;}
.ya6{bottom:183.181458pt;}
.y2a{bottom:190.237880pt;}
.y169{bottom:193.198946pt;}
.yd8{bottom:194.992462pt;}
.y133{bottom:199.960811pt;}
.y4e{bottom:200.801985pt;}
.y7f{bottom:200.990772pt;}
.y109{bottom:201.781905pt;}
.ya5{bottom:203.181457pt;}
.y29{bottom:210.237879pt;}
.y168{bottom:213.198945pt;}
.yd7{bottom:214.992461pt;}
.y194{bottom:215.393271pt;}
.y132{bottom:219.960810pt;}
.y4d{bottom:220.801984pt;}
.y7e{bottom:220.990772pt;}
.y108{bottom:221.781904pt;}
.ya4{bottom:223.181456pt;}
.y28{bottom:230.237878pt;}
.y167{bottom:233.198944pt;}
.yd6{bottom:234.992461pt;}
.y196{bottom:239.336086pt;}
.y131{bottom:239.960809pt;}
.y4c{bottom:240.801984pt;}
.y7d{bottom:240.990771pt;}
.y107{bottom:241.781904pt;}
.ya3{bottom:243.181455pt;}
.y27{bottom:250.237878pt;}
.y166{bottom:253.198943pt;}
.yd5{bottom:254.992460pt;}
.y130{bottom:259.960808pt;}
.y4b{bottom:260.801983pt;}
.y7c{bottom:260.990770pt;}
.y106{bottom:261.781903pt;}
.ya2{bottom:263.181455pt;}
.y26{bottom:270.237877pt;}
.y165{bottom:273.198942pt;}
.yd4{bottom:274.992459pt;}
.y1af{bottom:278.674132pt;}
.y12f{bottom:279.960808pt;}
.y4a{bottom:280.801982pt;}
.y7b{bottom:280.990769pt;}
.y105{bottom:281.781902pt;}
.ya1{bottom:283.181454pt;}
.y25{bottom:290.237876pt;}
.y164{bottom:293.198941pt;}
.yd3{bottom:294.992458pt;}
.y1ae{bottom:299.802644pt;}
.y12e{bottom:299.960807pt;}
.y49{bottom:300.801981pt;}
.y7a{bottom:300.990768pt;}
.y104{bottom:301.781901pt;}
.ya0{bottom:303.181453pt;}
.y18e{bottom:309.490026pt;}
.y24{bottom:310.237875pt;}
.y163{bottom:313.198941pt;}
.yd2{bottom:314.992457pt;}
.y12d{bottom:319.960806pt;}
.y48{bottom:320.801980pt;}
.y79{bottom:320.990767pt;}
.y103{bottom:321.781900pt;}
.y19e{bottom:322.612179pt;}
.y9f{bottom:323.181452pt;}
.y18d{bottom:329.490025pt;}
.y162{bottom:333.198940pt;}
.yd1{bottom:334.992456pt;}
.y12c{bottom:339.960805pt;}
.y47{bottom:340.801979pt;}
.y78{bottom:340.990767pt;}
.y102{bottom:341.781899pt;}
.y9e{bottom:343.181451pt;}
.y59{bottom:348.171153pt;}
.y18c{bottom:349.490024pt;}
.y161{bottom:353.198939pt;}
.yd0{bottom:354.992456pt;}
.y12b{bottom:359.960804pt;}
.y46{bottom:360.801979pt;}
.y77{bottom:360.990766pt;}
.y101{bottom:361.781899pt;}
.y9d{bottom:363.181450pt;}
.y18b{bottom:369.490023pt;}
.y160{bottom:373.198938pt;}
.ycf{bottom:374.992455pt;}
.y12a{bottom:379.960803pt;}
.y45{bottom:380.801978pt;}
.y76{bottom:380.990765pt;}
.y100{bottom:381.781898pt;}
.y9c{bottom:383.181450pt;}
.y23{bottom:386.601955pt;}
.y18a{bottom:389.490022pt;}
.y15f{bottom:393.198937pt;}
.yce{bottom:394.992454pt;}
.y129{bottom:399.960803pt;}
.y44{bottom:400.801977pt;}
.y75{bottom:400.990764pt;}
.yff{bottom:401.781897pt;}
.y9b{bottom:403.181449pt;}
.y22{bottom:406.601954pt;}
.y189{bottom:409.490021pt;}
.y15e{bottom:413.198936pt;}
.ydf{bottom:414.992453pt;}
.y128{bottom:419.960802pt;}
.y43{bottom:420.801976pt;}
.y74{bottom:420.990763pt;}
.yfe{bottom:421.781896pt;}
.y9a{bottom:423.181448pt;}
.y21{bottom:426.601953pt;}
.y188{bottom:429.490021pt;}
.y15d{bottom:433.198936pt;}
.ycd{bottom:434.992452pt;}
.y127{bottom:439.960801pt;}
.y42{bottom:440.801975pt;}
.y73{bottom:440.990762pt;}
.yfd{bottom:441.781895pt;}
.y99{bottom:443.181447pt;}
.y20{bottom:446.601953pt;}
.y187{bottom:449.490020pt;}
.y15c{bottom:453.198935pt;}
.ycc{bottom:454.992451pt;}
.y126{bottom:459.960800pt;}
.y41{bottom:460.801974pt;}
.y72{bottom:460.990762pt;}
.yfc{bottom:461.781894pt;}
.y98{bottom:463.181446pt;}
.y1f{bottom:466.601952pt;}
.y186{bottom:469.490019pt;}
.y15b{bottom:473.198934pt;}
.ycb{bottom:474.992451pt;}
.y125{bottom:479.960799pt;}
.y40{bottom:480.801974pt;}
.y71{bottom:480.990761pt;}
.yfb{bottom:481.781894pt;}
.y97{bottom:483.181445pt;}
.y1e{bottom:486.601951pt;}
.y185{bottom:489.490018pt;}
.y15a{bottom:493.198933pt;}
.yca{bottom:494.992450pt;}
.y124{bottom:499.960798pt;}
.y3f{bottom:500.801973pt;}
.y70{bottom:500.990760pt;}
.yfa{bottom:501.781893pt;}
.y96{bottom:503.181445pt;}
.y1d{bottom:506.601950pt;}
.y184{bottom:509.490017pt;}
.y159{bottom:513.198932pt;}
.yc9{bottom:514.992449pt;}
.y123{bottom:519.960798pt;}
.y3e{bottom:520.801972pt;}
.y6f{bottom:520.990759pt;}
.yf9{bottom:521.781892pt;}
.y95{bottom:523.181444pt;}
.y1c{bottom:526.601949pt;}
.y183{bottom:529.490016pt;}
.y158{bottom:533.198931pt;}
.yc8{bottom:534.992448pt;}
.y122{bottom:539.960797pt;}
.y3d{bottom:540.801971pt;}
.y6e{bottom:540.990758pt;}
.yf8{bottom:541.781891pt;}
.y94{bottom:543.181443pt;}
.y1b{bottom:546.601948pt;}
.y182{bottom:549.490016pt;}
.y157{bottom:553.198931pt;}
.yc7{bottom:554.992447pt;}
.y121{bottom:559.960796pt;}
.y3c{bottom:560.801970pt;}
.y6d{bottom:560.990757pt;}
.yf7{bottom:561.781890pt;}
.y93{bottom:563.181442pt;}
.y1a{bottom:566.601948pt;}
.y181{bottom:569.490015pt;}
.y156{bottom:573.198930pt;}
.yc6{bottom:574.992446pt;}
.y120{bottom:579.960795pt;}
.y3b{bottom:580.801969pt;}
.y6c{bottom:580.990757pt;}
.yf6{bottom:581.781889pt;}
.y92{bottom:583.181441pt;}
.y19{bottom:586.601947pt;}
.y180{bottom:589.490014pt;}
.y155{bottom:593.198929pt;}
.yc5{bottom:594.992446pt;}
.y11f{bottom:599.960794pt;}
.y3a{bottom:600.801969pt;}
.y6b{bottom:600.990756pt;}
.yf5{bottom:601.781889pt;}
.y91{bottom:603.181440pt;}
.y18{bottom:606.601946pt;}
.y17f{bottom:609.490013pt;}
.y154{bottom:613.198928pt;}
.yc4{bottom:614.992445pt;}
.y11e{bottom:619.960793pt;}
.y39{bottom:620.801968pt;}
.y6a{bottom:620.990755pt;}
.yf4{bottom:621.781888pt;}
.y90{bottom:623.181440pt;}
.y17{bottom:626.601945pt;}
.y17e{bottom:629.490012pt;}
.y153{bottom:633.198927pt;}
.yc3{bottom:634.992444pt;}
.y11d{bottom:639.960793pt;}
.y38{bottom:640.801967pt;}
.y69{bottom:640.990754pt;}
.yf3{bottom:641.781887pt;}
.y8f{bottom:643.181439pt;}
.y16{bottom:646.601944pt;}
.y17d{bottom:649.490011pt;}
.y152{bottom:653.198926pt;}
.yc2{bottom:654.992443pt;}
.y11c{bottom:659.960792pt;}
.y37{bottom:660.801966pt;}
.y68{bottom:660.990753pt;}
.yf2{bottom:661.781886pt;}
.y8e{bottom:663.181438pt;}
.y15{bottom:666.601943pt;}
.y17c{bottom:669.490011pt;}
.y151{bottom:673.198926pt;}
.yc1{bottom:674.992442pt;}
.y11b{bottom:679.960791pt;}
.y36{bottom:680.801965pt;}
.y67{bottom:680.990752pt;}
.yf1{bottom:681.781885pt;}
.y8d{bottom:683.181437pt;}
.y14{bottom:686.601943pt;}
.y17b{bottom:689.490010pt;}
.yc0{bottom:694.992441pt;}
.y11a{bottom:699.960790pt;}
.y35{bottom:700.801964pt;}
.y66{bottom:700.990752pt;}
.yf0{bottom:701.781884pt;}
.y8c{bottom:703.181436pt;}
.y13{bottom:706.601942pt;}
.y17a{bottom:709.490009pt;}
.y150{bottom:713.198924pt;}
.ybf{bottom:714.992441pt;}
.y119{bottom:719.960789pt;}
.y34{bottom:720.801964pt;}
.y65{bottom:720.990751pt;}
.yef{bottom:721.781884pt;}
.y8b{bottom:723.181435pt;}
.y12{bottom:726.601941pt;}
.y179{bottom:729.490008pt;}
.y1ac{bottom:732.100536pt;}
.y14f{bottom:733.198923pt;}
.ybe{bottom:734.992440pt;}
.y118{bottom:739.960788pt;}
.y33{bottom:740.801963pt;}
.yee{bottom:741.781883pt;}
.y8a{bottom:743.181435pt;}
.y11{bottom:746.601940pt;}
.y178{bottom:749.490007pt;}
.y1ab{bottom:752.100535pt;}
.y14e{bottom:753.198922pt;}
.ybd{bottom:754.992439pt;}
.y117{bottom:759.960788pt;}
.y32{bottom:760.801962pt;}
.yed{bottom:761.781882pt;}
.yae{bottom:762.924071pt;}
.y89{bottom:763.181434pt;}
.y10{bottom:766.601939pt;}
.y177{bottom:769.490006pt;}
.y1aa{bottom:772.100534pt;}
.y14d{bottom:773.198921pt;}
.ybc{bottom:774.992438pt;}
.y116{bottom:779.960787pt;}
.y31{bottom:780.801961pt;}
.yec{bottom:781.781881pt;}
.y88{bottom:783.181433pt;}
.yf{bottom:786.601938pt;}
.y176{bottom:789.490006pt;}
.y1a9{bottom:792.100533pt;}
.y14c{bottom:793.198921pt;}
.ybb{bottom:794.992437pt;}
.y115{bottom:799.960786pt;}
.y30{bottom:800.801960pt;}
.yeb{bottom:801.781880pt;}
.y87{bottom:803.181432pt;}
.y64{bottom:805.201890pt;}
.ye{bottom:806.601938pt;}
.y175{bottom:809.490005pt;}
.y1a8{bottom:812.100533pt;}
.y14b{bottom:813.198920pt;}
.yba{bottom:814.992436pt;}
.y2f{bottom:820.801959pt;}
.yea{bottom:821.781879pt;}
.y86{bottom:823.181431pt;}
.y63{bottom:825.201889pt;}
.yd{bottom:826.601937pt;}
.y174{bottom:829.490004pt;}
.y1a7{bottom:832.100532pt;}
.y14a{bottom:833.198919pt;}
.yb9{bottom:834.992436pt;}
.y2e{bottom:840.801959pt;}
.ye9{bottom:841.781879pt;}
.y13f{bottom:841.894106pt;}
.y85{bottom:843.181430pt;}
.y62{bottom:845.201888pt;}
.yc{bottom:846.601936pt;}
.y173{bottom:849.490003pt;}
.y1a6{bottom:852.100531pt;}
.y149{bottom:853.198918pt;}
.yb8{bottom:854.992435pt;}
.y2d{bottom:860.801958pt;}
.ye8{bottom:861.781878pt;}
.y84{bottom:863.181430pt;}
.y13e{bottom:863.894105pt;}
.y61{bottom:865.201887pt;}
.yb{bottom:866.601935pt;}
.y172{bottom:869.490002pt;}
.y1a5{bottom:872.100530pt;}
.y148{bottom:873.198917pt;}
.yb7{bottom:874.992434pt;}
.y2c{bottom:880.801957pt;}
.ye7{bottom:881.781877pt;}
.y83{bottom:883.181429pt;}
.y60{bottom:885.201886pt;}
.y13d{bottom:885.894104pt;}
.ya{bottom:886.601934pt;}
.y171{bottom:889.490001pt;}
.y1a4{bottom:892.100529pt;}
.y147{bottom:893.198916pt;}
.yb6{bottom:894.992433pt;}
.ye6{bottom:901.781876pt;}
.y82{bottom:903.181428pt;}
.y5f{bottom:905.201885pt;}
.y9{bottom:906.601933pt;}
.y170{bottom:909.490001pt;}
.y1a3{bottom:912.100528pt;}
.y146{bottom:913.198916pt;}
.yb5{bottom:914.992432pt;}
.ye5{bottom:921.781875pt;}
.y81{bottom:923.181427pt;}
.y58{bottom:923.735264pt;}
.y5e{bottom:925.201885pt;}
.y8{bottom:926.601933pt;}
.y114{bottom:927.608557pt;}
.y1a2{bottom:932.100528pt;}
.y145{bottom:933.198915pt;}
.yb4{bottom:934.992431pt;}
.y80{bottom:943.181426pt;}
.y5d{bottom:945.201884pt;}
.y57{bottom:945.735263pt;}
.y7{bottom:946.601932pt;}
.y113{bottom:947.608556pt;}
.y18f{bottom:951.423320pt;}
.y1a1{bottom:952.100527pt;}
.y144{bottom:953.198914pt;}
.yb3{bottom:954.992431pt;}
.y13c{bottom:962.741883pt;}
.y5c{bottom:965.201883pt;}
.y112{bottom:967.608555pt;}
.y1a0{bottom:972.100526pt;}
.y143{bottom:973.198913pt;}
.yde{bottom:974.992430pt;}
.y2{bottom:980.935242pt;}
.yad{bottom:982.335213pt;}
.y13b{bottom:984.741882pt;}
.y5b{bottom:985.201882pt;}
.y111{bottom:987.608554pt;}
.y19f{bottom:992.100525pt;}
.y142{bottom:993.198912pt;}
.yb2{bottom:994.992429pt;}
.yac{bottom:1004.335213pt;}
.y5a{bottom:1005.201881pt;}
.y13a{bottom:1006.741881pt;}
.y110{bottom:1007.608553pt;}
.y141{bottom:1013.198911pt;}
.yb1{bottom:1014.992428pt;}
.y56{bottom:1020.396252pt;}
.y1ad{bottom:1022.019391pt;}
.y55{bottom:1046.396251pt;}
.h13{height:13.739994pt;}
.h11{height:20.215628pt;}
.h16{height:21.491611pt;}
.h17{height:30.354090pt;}
.hb{height:30.390033pt;}
.ha{height:31.510059pt;}
.hd{height:31.808732pt;}
.h10{height:31.883400pt;}
.h4{height:32.667419pt;}
.h12{height:39.023998pt;}
.h3{height:41.999998pt;}
.h14{height:43.349158pt;}
.he{height:47.674317pt;}
.h15{height:47.679998pt;}
.h8{height:47.732957pt;}
.h18{height:48.553917pt;}
.h9{height:49.492157pt;}
.hc{height:49.961277pt;}
.hf{height:50.078557pt;}
.h5{height:51.309997pt;}
.h7{height:52.991998pt;}
.h6{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.698614pt;}
.x1{left:40.050154pt;}
.xe{left:41.663485pt;}
.xb{left:42.621380pt;}
.xa{left:47.441468pt;}
.xc{left:106.239996pt;}
.xd{left:113.098210pt;}
.x5{left:241.729856pt;}
.x4{left:289.620484pt;}
.x3{left:416.942872pt;}
.x7{left:428.253653pt;}
.x6{left:441.863028pt;}
.x9{left:549.711977pt;}
.x8{left:551.404393pt;}
}




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