
    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_fa8430fb3b7602dde5e82255.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4bce6994d547d0d5439c8256.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_f550821feb7a7619b429d479.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_2a2b02cd10e03f2df165d2be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.211000;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_7dc4d8b09e7c8e7ecae5ed4b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_b02294444e23556c6506f50b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960000;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_68cba8a1f97d8684afd54d5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_1ef7bebf600cb29366fb3f71.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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_593803892277d2f5bc4b6485.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.892000;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_d8e904502729bfd1bd3d252e.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_26d09fa63694500623a52716.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.470215;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_32f573c046ec256de64fa0cb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947000;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_d03f55f296314cb9be434496.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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_821ef8954860a6febcd96c98.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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_0705a4b1aaa0823376385ecd.woff2')format("woff");}.fff{font-family:fff;line-height:0.950000;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.154183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154183,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m4{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,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);}
.v4{vertical-align:-74.159970px;}
.v3{vertical-align:-55.439978px;}
.v7{vertical-align:-46.799981px;}
.v2{vertical-align:-33.119987px;}
.v5{vertical-align:-9.359996px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.359996px;}
.v1{vertical-align:33.119987px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.359970px;}
.ls4{letter-spacing:0.648000px;}
.lsd{letter-spacing:0.720000px;}
.ls3{letter-spacing:169.638239px;}
.ls6{letter-spacing:251.051727px;}
.ls2{letter-spacing:286.278193px;}
.ls5{letter-spacing:295.990052px;}
.lsa{letter-spacing:506.811179px;}
.lsc{letter-spacing:511.994795px;}
.ls8{letter-spacing:528.554789px;}
.ls9{letter-spacing:565.271774px;}
.lsb{letter-spacing:570.311772px;}
.ls7{letter-spacing:587.591765px;}
.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;}
}
.ws1{word-spacing:-20.016000px;}
.ws6{word-spacing:-17.999993px;}
.ws4{word-spacing:-13.344000px;}
.wsc{word-spacing:-12.060010px;}
.ws18{word-spacing:-4.719774px;}
.ws1d{word-spacing:-2.452341px;}
.ws5{word-spacing:-0.072000px;}
.ws27{word-spacing:-0.001080px;}
.ws0{word-spacing:0.000000px;}
.wse{word-spacing:4.478668px;}
.ws20{word-spacing:4.945950px;}
.wsf{word-spacing:5.198582px;}
.ws1e{word-spacing:5.665930px;}
.ws12{word-spacing:9.109616px;}
.ws14{word-spacing:9.829625px;}
.ws13{word-spacing:9.829721px;}
.ws24{word-spacing:10.864321px;}
.ws1b{word-spacing:11.584302px;}
.ws9{word-spacing:11.633574px;}
.wsa{word-spacing:12.353563px;}
.ws1a{word-spacing:14.204488px;}
.ws11{word-spacing:17.140026px;}
.ws19{word-spacing:24.800223px;}
.wsb{word-spacing:33.151540px;}
.ws7{word-spacing:42.305604px;}
.ws3{word-spacing:65.022000px;}
.ws10{word-spacing:65.625465px;}
.ws2{word-spacing:80.064000px;}
.wsd{word-spacing:121.819341px;}
.ws1c{word-spacing:154.502465px;}
.ws16{word-spacing:162.526701px;}
.ws23{word-spacing:170.342202px;}
.ws15{word-spacing:170.446752px;}
.ws21{word-spacing:177.047929px;}
.ws26{word-spacing:178.487929px;}
.ws8{word-spacing:227.078111px;}
.ws22{word-spacing:228.167909px;}
.ws1f{word-spacing:235.367906px;}
.ws25{word-spacing:236.807905px;}
.ws17{word-spacing:512.056401px;}
._38{margin-left:-404.871440px;}
._5{margin-left:-9.530851px;}
._24{margin-left:-4.495081px;}
._a{margin-left:-2.578829px;}
._3{margin-left:-1.458759px;}
._4{width:1.514794px;}
._f{width:2.852854px;}
._6{width:4.679998px;}
._7{width:6.047472px;}
._b{width:7.344523px;}
._15{width:8.353236px;}
._12{width:10.342003px;}
._11{width:12.282957px;}
._c{width:14.111994px;}
._d{width:15.210333px;}
._35{width:16.427028px;}
._10{width:18.044435px;}
._8{width:19.295992px;}
._9{width:20.375992px;}
._e{width:21.762751px;}
._14{width:24.265364px;}
._13{width:25.676551px;}
._1{width:26.688000px;}
._17{width:28.932210px;}
._18{width:29.973542px;}
._16{width:31.135442px;}
._29{width:33.173257px;}
._1c{width:34.972166px;}
._43{width:35.999986px;}
._1b{width:37.328601px;}
._36{width:39.045725px;}
._40{width:42.510318px;}
._31{width:43.953393px;}
._3c{width:44.971667px;}
._42{width:56.879977px;}
._27{width:78.549924px;}
._0{width:85.038000px;}
._37{width:105.642066px;}
._34{width:111.246653px;}
._26{width:115.024950px;}
._2c{width:125.794273px;}
._23{width:129.103555px;}
._3e{width:132.823639px;}
._28{width:134.434220px;}
._20{width:137.023802px;}
._3d{width:144.644981px;}
._1a{width:157.803625px;}
._3b{width:162.964656px;}
._19{width:173.376135px;}
._33{width:175.660103px;}
._2b{width:183.619370px;}
._2f{width:185.167972px;}
._3f{width:190.650038px;}
._22{width:191.743529px;}
._3a{width:202.692690px;}
._30{width:223.466296px;}
._2e{width:232.331875px;}
._32{width:234.268783px;}
._25{width:352.449773px;}
._2a{width:420.989092px;}
._21{width:426.388184px;}
._39{width:463.598068px;}
._2d{width:477.851828px;}
._1f{width:568.621378px;}
._1d{width:652.118036px;}
._1e{width:1058.945932px;}
._41{width:1149.839540px;}
._2{width:1167.839533px;}
.fc2{color:rgb(255,0,255);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.837667px;}
.fs8{font-size:41.512303px;}
.fse{font-size:42.150943px;}
.fs11{font-size:47.999981px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:48.240041px;}
.fsc{font-size:54.579638px;}
.fsd{font-size:57.683501px;}
.fs7{font-size:66.239974px;}
.fs9{font-size:71.164772px;}
.fs4{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fsf{font-size:72.261571px;}
.fs10{font-size:76.370369px;}
.fs1{font-size:84.000000px;}
.fsa{font-size:87.412165px;}
.fs5{font-size:95.759962px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y87{bottom:1.978880px;}
.yc2{bottom:2.518841px;}
.y6b{bottom:2.518918px;}
.yb3{bottom:2.519891px;}
.y96{bottom:2.520148px;}
.yb6{bottom:2.520165px;}
.y9e{bottom:2.520254px;}
.ya2{bottom:2.520292px;}
.ybe{bottom:2.520303px;}
.y146{bottom:5.999758px;}
.y19{bottom:78.420869px;}
.y18{bottom:112.000500px;}
.yb2{bottom:119.640960px;}
.ycf{bottom:121.441451px;}
.y17{bottom:125.500500px;}
.yb4{bottom:126.840849px;}
.y105{bottom:128.820098px;}
.y94{bottom:129.901448px;}
.y75{bottom:137.281445px;}
.y58{bottom:137.820095px;}
.y16{bottom:139.000500px;}
.y114{bottom:145.200092px;}
.ydf{bottom:145.200842px;}
.y12c{bottom:145.201442px;}
.y145{bottom:146.820091px;}
.yce{bottom:162.841435px;}
.y104{bottom:170.220082px;}
.y93{bottom:172.741431px;}
.yb1{bottom:174.361430px;}
.y57{bottom:175.800080px;}
.y74{bottom:178.681429px;}
.y10f{bottom:186.600075px;}
.yde{bottom:186.600825px;}
.y12b{bottom:186.601425px;}
.y144{bottom:188.220075px;}
.ycd{bottom:202.981419px;}
.y143{bottom:208.920066px;}
.y103{bottom:211.620065px;}
.y56{bottom:213.780064px;}
.y92{bottom:214.141414px;}
.yee{bottom:215.221414px;}
.yb0{bottom:217.201413px;}
.y73{bottom:220.081412px;}
.y10e{bottom:228.000059px;}
.ydd{bottom:228.000809px;}
.y12a{bottom:228.001409px;}
.y142{bottom:229.260058px;}
.y141{bottom:249.960050px;}
.y55{bottom:251.760049px;}
.y102{bottom:253.020049px;}
.y91{bottom:255.541398px;}
.yed{bottom:258.061397px;}
.yaf{bottom:258.601397px;}
.y72{bottom:261.481395px;}
.ycc{bottom:268.141393px;}
.y10d{bottom:269.400042px;}
.ydc{bottom:269.400792px;}
.y129{bottom:269.401392px;}
.y54{bottom:289.560034px;}
.y140{bottom:290.460034px;}
.y101{bottom:294.420032px;}
.y90{bottom:296.941381px;}
.yae{bottom:300.001380px;}
.yec{bottom:300.721380px;}
.y71{bottom:302.881379px;}
.y3f{bottom:306.480027px;}
.ycb{bottom:309.541376px;}
.y10c{bottom:310.440026px;}
.y113{bottom:310.800026px;}
.ydb{bottom:310.800776px;}
.y128{bottom:310.802126px;}
.y53{bottom:327.540019px;}
.y100{bottom:335.820016px;}
.y8f{bottom:338.341365px;}
.yad{bottom:341.401363px;}
.yeb{bottom:342.121363px;}
.y70{bottom:344.281362px;}
.y3e{bottom:347.880011px;}
.yca{bottom:350.761360px;}
.y10b{bottom:352.200009px;}
.yda{bottom:352.200759px;}
.y127{bottom:352.202109px;}
.y13f{bottom:355.620758px;}
.y52{bottom:365.520004px;}
.y14{bottom:373.354500px;}
.yff{bottom:377.219999px;}
.y8e{bottom:381.001348px;}
.yac{bottom:382.801347px;}
.yea{bottom:384.781346px;}
.y6f{bottom:385.681346px;}
.y3d{bottom:389.279994px;}
.yc9{bottom:392.161343px;}
.y10a{bottom:393.599993px;}
.yd9{bottom:393.600743px;}
.y126{bottom:393.602093px;}
.y13e{bottom:397.020741px;}
.y51{bottom:403.499989px;}
.y13{bottom:411.604500px;}
.yfe{bottom:418.619983px;}
.y8d{bottom:423.841330px;}
.yab{bottom:425.461330px;}
.ye9{bottom:427.441329px;}
.y6c{bottom:427.981329px;}
.y3c{bottom:430.679978px;}
.yc8{bottom:433.561327px;}
.y125{bottom:434.642076px;}
.y109{bottom:434.999976px;}
.yd8{bottom:435.000726px;}
.y13d{bottom:438.420725px;}
.y50{bottom:441.479973px;}
.y6d{bottom:446.521321px;}
.y12{bottom:449.854500px;}
.y6a{bottom:452.822400px;}
.yfd{bottom:460.020716px;}
.y6e{bottom:460.021316px;}
.y8c{bottom:465.241314px;}
.yaa{bottom:468.301313px;}
.ye8{bottom:470.100712px;}
.y3b{bottom:472.080711px;}
.y2b{bottom:474.601310px;}
.yc7{bottom:476.221310px;}
.y108{bottom:476.399959px;}
.yd7{bottom:476.400709px;}
.y124{bottom:476.402059px;}
.y4f{bottom:479.280708px;}
.y13c{bottom:479.820708px;}
.y11{bottom:488.104500px;}
.yfc{bottom:501.420699px;}
.y69{bottom:504.119948px;}
.y8b{bottom:506.641297px;}
.y10{bottom:508.354500px;}
.ya9{bottom:509.701296px;}
.ye7{bottom:512.760695px;}
.y3a{bottom:513.480695px;}
.y2a{bottom:516.001294px;}
.y4e{bottom:517.260693px;}
.y112{bottom:517.440693px;}
.yd6{bottom:517.800693px;}
.y123{bottom:517.802043px;}
.yc6{bottom:519.061292px;}
.y13b{bottom:521.220692px;}
.yf{bottom:528.604500px;}
.yfb{bottom:542.820683px;}
.y68{bottom:545.519932px;}
.y86{bottom:548.042400px;}
.ya8{bottom:551.101280px;}
.y83{bottom:551.641279px;}
.y8a{bottom:553.621237px;}
.ye6{bottom:554.340678px;}
.y39{bottom:554.880678px;}
.y4d{bottom:555.240678px;}
.y29{bottom:557.400677px;}
.yd5{bottom:559.200676px;}
.y122{bottom:559.202026px;}
.yc5{bottom:560.461276px;}
.y85{bottom:561.721275px;}
.y13a{bottom:562.620675px;}
.y89{bottom:565.321274px;}
.y84{bottom:572.161271px;}
.y88{bottom:575.761270px;}
.yfa{bottom:582.960667px;}
.ye{bottom:584.854500px;}
.y67{bottom:586.920665px;}
.ya7{bottom:592.501263px;}
.y4c{bottom:593.220663px;}
.y38{bottom:596.280661px;}
.y28{bottom:598.800660px;}
.y121{bottom:600.242010px;}
.yd4{bottom:600.600660px;}
.yc4{bottom:601.861259px;}
.y139{bottom:604.020658px;}
.y82{bottom:615.360654px;}
.ye5{bottom:619.500652px;}
.y37{bottom:620.760652px;}
.yd{bottom:623.104500px;}
.y66{bottom:628.320649px;}
.y4b{bottom:633.360647px;}
.ya6{bottom:639.841994px;}
.y27{bottom:640.200644px;}
.y111{bottom:641.640643px;}
.yd3{bottom:642.000643px;}
.y120{bottom:642.002743px;}
.yc1{bottom:643.802400px;}
.y138{bottom:645.420642px;}
.yf9{bottom:648.120641px;}
.yc3{bottom:651.001240px;}
.y81{bottom:656.760637px;}
.ye4{bottom:660.900636px;}
.yc{bottom:661.354500px;}
.y65{bottom:669.720632px;}
.y4a{bottom:672.600631px;}
.y36{bottom:679.080628px;}
.yd2{bottom:683.400627px;}
.y11f{bottom:683.402727px;}
.ya5{bottom:684.661976px;}
.y137{bottom:686.820625px;}
.yf8{bottom:689.520624px;}
.y26{bottom:689.880624px;}
.y80{bottom:696.900621px;}
.yc0{bottom:697.261971px;}
.yb{bottom:699.604500px;}
.ye3{bottom:702.300619px;}
.y64{bottom:708.780616px;}
.y49{bottom:710.580616px;}
.y35{bottom:720.480612px;}
.y25{bottom:723.000611px;}
.yd1{bottom:724.800610px;}
.y11e{bottom:724.802710px;}
.ya4{bottom:726.062710px;}
.y136{bottom:730.200608px;}
.yf7{bottom:730.740608px;}
.ya{bottom:737.854500px;}
.ybd{bottom:739.022400px;}
.y7f{bottom:742.260603px;}
.ye2{bottom:743.700603px;}
.ybf{bottom:746.222702px;}
.y63{bottom:746.760601px;}
.y48{bottom:748.380601px;}
.y34{bottom:761.880595px;}
.y24{bottom:764.400594px;}
.yd0{bottom:766.200594px;}
.y11d{bottom:766.202694px;}
.ya1{bottom:768.002400px;}
.yf6{bottom:770.880592px;}
.ya3{bottom:775.202690px;}
.y9{bottom:776.104500px;}
.y62{bottom:784.740586px;}
.ye1{bottom:785.100586px;}
.y47{bottom:786.360585px;}
.y135{bottom:788.520585px;}
.ybc{bottom:792.482683px;}
.y33{bottom:803.280579px;}
.y23{bottom:805.800578px;}
.y107{bottom:807.240577px;}
.y7e{bottom:807.600577px;}
.y11c{bottom:807.602677px;}
.ya0{bottom:821.462671px;}
.y61{bottom:822.720571px;}
.y46{bottom:826.500569px;}
.y134{bottom:829.920568px;}
.ybb{bottom:835.142666px;}
.yf5{bottom:836.040566px;}
.y32{bottom:844.680562px;}
.y22{bottom:847.200561px;}
.y7d{bottom:849.000560px;}
.y11b{bottom:849.002660px;}
.y60{bottom:860.700556px;}
.y9d{bottom:863.222400px;}
.y45{bottom:867.900553px;}
.y31{bottom:869.160552px;}
.y9f{bottom:870.422652px;}
.y133{bottom:871.320551px;}
.yba{bottom:877.982649px;}
.yf4{bottom:881.940547px;}
.y8{bottom:886.354500px;}
.y21{bottom:888.600545px;}
.y110{bottom:890.040544px;}
.y11a{bottom:890.042644px;}
.y7c{bottom:890.400544px;}
.y5f{bottom:900.840540px;}
.y7{bottom:906.604500px;}
.y44{bottom:909.300536px;}
.y132{bottom:912.720535px;}
.y9c{bottom:916.682633px;}
.yb9{bottom:919.382632px;}
.yf3{bottom:923.340531px;}
.y6{bottom:926.854500px;}
.y30{bottom:927.480529px;}
.y20{bottom:930.000528px;}
.y7b{bottom:931.800527px;}
.y119{bottom:931.802627px;}
.y5e{bottom:942.240523px;}
.ye0{bottom:949.440520px;}
.y43{bottom:950.700520px;}
.y131{bottom:954.120518px;}
.y9b{bottom:959.342616px;}
.yb8{bottom:960.782616px;}
.yf2{bottom:964.740514px;}
.y5{bottom:965.104500px;}
.y2f{bottom:968.880512px;}
.y1f{bottom:971.400511px;}
.y106{bottom:972.840511px;}
.y7a{bottom:973.200511px;}
.y118{bottom:973.202611px;}
.y5d{bottom:983.640507px;}
.y1e{bottom:991.740503px;}
.y42{bottom:992.100503px;}
.y130{bottom:995.520502px;}
.y9a{bottom:1002.182599px;}
.y4{bottom:1004.275500px;}
.y149{bottom:1004.525598px;}
.yf1{bottom:1006.140498px;}
.y2e{bottom:1010.280496px;}
.y79{bottom:1014.600494px;}
.y117{bottom:1014.602594px;}
.y148{bottom:1024.775590px;}
.y5c{bottom:1025.040490px;}
.y3{bottom:1027.900500px;}
.y1d{bottom:1033.500487px;}
.y12f{bottom:1036.920485px;}
.y99{bottom:1043.582583px;}
.y2d{bottom:1051.680479px;}
.y116{bottom:1055.642578px;}
.y78{bottom:1056.000478px;}
.y1c{bottom:1059.600476px;}
.yf0{bottom:1059.780476px;}
.y5b{bottom:1064.100474px;}
.y147{bottom:1065.275574px;}
.y41{bottom:1074.900470px;}
.y2c{bottom:1076.340469px;}
.y12e{bottom:1080.480468px;}
.y2{bottom:1084.453500px;}
.y98{bottom:1084.982566px;}
.yb5{bottom:1085.342400px;}
.y1b{bottom:1087.320465px;}
.yb7{bottom:1092.542563px;}
.y77{bottom:1097.400461px;}
.y115{bottom:1097.402561px;}
.y5a{bottom:1102.080459px;}
.y1{bottom:1104.703500px;}
.y1a{bottom:1114.860454px;}
.y40{bottom:1115.040454px;}
.y95{bottom:1126.742400px;}
.yef{bottom:1132.860447px;}
.y12d{bottom:1133.040447px;}
.y97{bottom:1133.942546px;}
.y76{bottom:1138.800444px;}
.y59{bottom:1140.060444px;}
.y15{bottom:1174.332000px;}
.h15{height:9.180000px;}
.hf{height:11.880000px;}
.hc{height:12.060000px;}
.h17{height:21.745127px;}
.h14{height:21.904315px;}
.h10{height:28.352903px;}
.hd{height:28.560465px;}
.h1d{height:28.789094px;}
.h1c{height:28.999849px;}
.h8{height:33.189148px;}
.h24{height:34.991986px;}
.h18{height:37.277893px;}
.h16{height:37.550791px;}
.h1a{height:37.896604px;}
.h19{height:40.051728px;}
.hb{height:45.573102px;}
.h11{height:48.605539px;}
.he{height:48.961363px;}
.ha{height:49.083820px;}
.h1f{height:49.175980px;}
.h21{height:49.354653px;}
.h5{height:49.535980px;}
.h9{height:49.538380px;}
.h1b{height:49.992168px;}
.h4{height:50.062500px;}
.h1e{height:50.173806px;}
.h12{height:50.255980px;}
.h22{height:51.335979px;}
.h27{height:52.487979px;}
.h28{height:52.703979px;}
.h20{height:53.026692px;}
.h13{height:60.693408px;}
.h7{height:67.515136px;}
.h6{height:70.958132px;}
.h1{height:75.093750px;}
.h2{height:87.609375px;}
.h3{height:92.256000px;}
.h23{height:319.500000px;}
.h25{height:555.000000px;}
.h26{height:1188.000000px;}
.h0{height:1263.000000px;}
.w5{width:88.380000px;}
.wd{width:94.140000px;}
.w6{width:95.580000px;}
.w9{width:98.280000px;}
.we{width:106.740000px;}
.w11{width:107.820000px;}
.wb{width:108.540000px;}
.wf{width:108.720000px;}
.wa{width:111.780000px;}
.w7{width:112.860000px;}
.w1{width:119.520000px;}
.wc{width:121.320000px;}
.w10{width:122.400000px;}
.w8{width:126.540000px;}
.w2{width:148.500000px;}
.w3{width:273.780000px;}
.w4{width:280.440000px;}
.w12{width:418.500000px;}
.w13{width:748.500000px;}
.w14{width:864.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x41{left:17.999993px;}
.x11{left:42.519000px;}
.xf{left:47.800500px;}
.x13{left:52.969500px;}
.x3{left:61.935000px;}
.x1{left:63.793500px;}
.xc{left:83.845500px;}
.x42{left:107.999957px;}
.x14{left:127.003500px;}
.xe{left:132.337500px;}
.x15{left:134.999946px;}
.x17{left:161.999935px;}
.x5{left:186.319500px;}
.xa{left:187.944000px;}
.x16{left:188.999924px;}
.xb{left:192.948000px;}
.x2{left:195.877500px;}
.x9{left:233.952000px;}
.x4{left:252.163500px;}
.x28{left:268.199893px;}
.x10{left:273.889500px;}
.x21{left:276.299889px;}
.x25{left:279.359888px;}
.x8{left:289.968000px;}
.x2c{left:296.459881px;}
.x23{left:305.639878px;}
.x12{left:307.639500px;}
.x7{left:318.277500px;}
.x6{left:320.779500px;}
.x2a{left:323.813337px;}
.x20{left:333.179867px;}
.x1e{left:339.659864px;}
.x26{left:346.680000px;}
.x22{left:353.340000px;}
.x1f{left:361.259855px;}
.x3a{left:364.139854px;}
.x36{left:369.179852px;}
.x3d{left:371.339851px;}
.x1a{left:373.319851px;}
.x33{left:376.199850px;}
.x3f{left:377.999849px;}
.x3b{left:379.259848px;}
.x37{left:383.579847px;}
.x40{left:385.379846px;}
.x3e{left:386.459845px;}
.xd{left:390.934500px;}
.x32{left:397.259841px;}
.x1d{left:398.699841px;}
.x39{left:400.139840px;}
.x35{left:404.639838px;}
.x31{left:406.440000px;}
.x1b{left:408.060000px;}
.x38{left:409.140000px;}
.x30{left:413.099835px;}
.x3c{left:416.340000px;}
.x2b{left:419.579832px;}
.x2f{left:422.640000px;}
.x34{left:427.320000px;}
.x2e{left:429.840000px;}
.x1c{left:431.999827px;}
.x18{left:437.040000px;}
.x27{left:448.019821px;}
.x24{left:455.579818px;}
.x19{left:460.619816px;}
.x29{left:493.199803px;}
.x2d{left:627.119749px;}
@media print{
.v4{vertical-align:-65.919974pt;}
.v3{vertical-align:-49.279980pt;}
.v7{vertical-align:-41.599983pt;}
.v2{vertical-align:-29.439988pt;}
.v5{vertical-align:-8.319997pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.319997pt;}
.v1{vertical-align:29.439988pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.319973pt;}
.ls4{letter-spacing:0.576000pt;}
.lsd{letter-spacing:0.640000pt;}
.ls3{letter-spacing:150.789546pt;}
.ls6{letter-spacing:223.157091pt;}
.ls2{letter-spacing:254.469505pt;}
.ls5{letter-spacing:263.102268pt;}
.lsa{letter-spacing:450.498826pt;}
.lsc{letter-spacing:455.106485pt;}
.ls8{letter-spacing:469.826479pt;}
.ls9{letter-spacing:502.463799pt;}
.lsb{letter-spacing:506.943797pt;}
.ls7{letter-spacing:522.303791pt;}
.ws1{word-spacing:-17.792000pt;}
.ws6{word-spacing:-15.999994pt;}
.ws4{word-spacing:-11.861333pt;}
.wsc{word-spacing:-10.720009pt;}
.ws18{word-spacing:-4.195355pt;}
.ws1d{word-spacing:-2.179859pt;}
.ws5{word-spacing:-0.064000pt;}
.ws27{word-spacing:-0.000960pt;}
.ws0{word-spacing:0.000000pt;}
.wse{word-spacing:3.981039pt;}
.ws20{word-spacing:4.396400pt;}
.wsf{word-spacing:4.620961pt;}
.ws1e{word-spacing:5.036382pt;}
.ws12{word-spacing:8.097437pt;}
.ws14{word-spacing:8.737445pt;}
.ws13{word-spacing:8.737529pt;}
.ws24{word-spacing:9.657174pt;}
.ws1b{word-spacing:10.297157pt;}
.ws9{word-spacing:10.340955pt;}
.wsa{word-spacing:10.980945pt;}
.ws1a{word-spacing:12.626212pt;}
.ws11{word-spacing:15.235579pt;}
.ws19{word-spacing:22.044643pt;}
.wsb{word-spacing:29.468035pt;}
.ws7{word-spacing:37.604981pt;}
.ws3{word-spacing:57.797333pt;}
.ws10{word-spacing:58.333747pt;}
.ws2{word-spacing:71.168000pt;}
.wsd{word-spacing:108.283859pt;}
.ws1c{word-spacing:137.335525pt;}
.ws16{word-spacing:144.468178pt;}
.ws23{word-spacing:151.415290pt;}
.ws15{word-spacing:151.508224pt;}
.ws21{word-spacing:157.375937pt;}
.ws26{word-spacing:158.655937pt;}
.ws8{word-spacing:201.847210pt;}
.ws22{word-spacing:202.815919pt;}
.ws1f{word-spacing:209.215916pt;}
.ws25{word-spacing:210.495916pt;}
.ws17{word-spacing:455.161245pt;}
._38{margin-left:-359.885725pt;}
._5{margin-left:-8.471867pt;}
._24{margin-left:-3.995627pt;}
._a{margin-left:-2.292292pt;}
._3{margin-left:-1.296675pt;}
._4{width:1.346484pt;}
._f{width:2.535870pt;}
._6{width:4.159998pt;}
._7{width:5.375531pt;}
._b{width:6.528465pt;}
._15{width:7.425099pt;}
._12{width:9.192891pt;}
._11{width:10.918184pt;}
._c{width:12.543995pt;}
._d{width:13.520296pt;}
._35{width:14.601803pt;}
._10{width:16.039498pt;}
._8{width:17.151993pt;}
._9{width:18.111993pt;}
._e{width:19.344668pt;}
._14{width:21.569213pt;}
._13{width:22.823601pt;}
._1{width:23.722667pt;}
._17{width:25.717520pt;}
._18{width:26.643148pt;}
._16{width:27.675949pt;}
._29{width:29.487340pt;}
._1c{width:31.086370pt;}
._43{width:31.999987pt;}
._1b{width:33.180978pt;}
._36{width:34.707311pt;}
._40{width:37.786950pt;}
._31{width:39.069682pt;}
._3c{width:39.974815pt;}
._42{width:50.559980pt;}
._27{width:69.822154pt;}
._0{width:75.589333pt;}
._37{width:93.904058pt;}
._34{width:98.885914pt;}
._26{width:102.244400pt;}
._2c{width:111.817132pt;}
._23{width:114.758716pt;}
._3e{width:118.065457pt;}
._28{width:119.497084pt;}
._20{width:121.798935pt;}
._3d{width:128.573316pt;}
._1a{width:140.269889pt;}
._3b{width:144.857472pt;}
._19{width:154.112120pt;}
._33{width:156.142314pt;}
._2b{width:163.217218pt;}
._2f{width:164.593753pt;}
._3f{width:169.466701pt;}
._22{width:170.438692pt;}
._3a{width:180.171280pt;}
._30{width:198.636707pt;}
._2e{width:206.517222pt;}
._32{width:208.238919pt;}
._25{width:313.288687pt;}
._2a{width:374.212526pt;}
._21{width:379.011720pt;}
._39{width:412.087172pt;}
._2d{width:424.757180pt;}
._1f{width:505.441225pt;}
._1d{width:579.660476pt;}
._1e{width:941.285273pt;}
._41{width:1022.079591pt;}
._2{width:1038.079585pt;}
.fsb{font-size:28.300149pt;}
.fs8{font-size:36.899825pt;}
.fse{font-size:37.467505pt;}
.fs11{font-size:42.666650pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:42.880036pt;}
.fsc{font-size:48.515234pt;}
.fsd{font-size:51.274223pt;}
.fs7{font-size:58.879976pt;}
.fs9{font-size:63.257575pt;}
.fs4{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fsf{font-size:64.232508pt;}
.fs10{font-size:67.884773pt;}
.fs1{font-size:74.666667pt;}
.fsa{font-size:77.699702pt;}
.fs5{font-size:85.119966pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y87{bottom:1.759004pt;}
.yc2{bottom:2.238970pt;}
.y6b{bottom:2.239038pt;}
.yb3{bottom:2.239903pt;}
.y96{bottom:2.240132pt;}
.yb6{bottom:2.240147pt;}
.y9e{bottom:2.240226pt;}
.ya2{bottom:2.240259pt;}
.ybe{bottom:2.240270pt;}
.y146{bottom:5.333118pt;}
.y19{bottom:69.707439pt;}
.y18{bottom:99.556000pt;}
.yb2{bottom:106.347520pt;}
.ycf{bottom:107.947957pt;}
.y17{bottom:111.556000pt;}
.yb4{bottom:112.747422pt;}
.y105{bottom:114.506754pt;}
.y94{bottom:115.467954pt;}
.y75{bottom:122.027951pt;}
.y58{bottom:122.506751pt;}
.y16{bottom:123.556000pt;}
.y114{bottom:129.066748pt;}
.ydf{bottom:129.067415pt;}
.y12c{bottom:129.067948pt;}
.y145{bottom:130.506748pt;}
.yce{bottom:144.747942pt;}
.y104{bottom:151.306739pt;}
.y93{bottom:153.547939pt;}
.yb1{bottom:154.987938pt;}
.y57{bottom:156.266737pt;}
.y74{bottom:158.827936pt;}
.y10f{bottom:165.866734pt;}
.yde{bottom:165.867400pt;}
.y12b{bottom:165.867934pt;}
.y144{bottom:167.306733pt;}
.ycd{bottom:180.427928pt;}
.y143{bottom:185.706726pt;}
.y103{bottom:188.106725pt;}
.y56{bottom:190.026724pt;}
.y92{bottom:190.347924pt;}
.yee{bottom:191.307923pt;}
.yb0{bottom:193.067923pt;}
.y73{bottom:195.627922pt;}
.y10e{bottom:202.666719pt;}
.ydd{bottom:202.667386pt;}
.y12a{bottom:202.667919pt;}
.y142{bottom:203.786718pt;}
.y141{bottom:222.186711pt;}
.y55{bottom:223.786710pt;}
.y102{bottom:224.906710pt;}
.y91{bottom:227.147909pt;}
.yed{bottom:229.387908pt;}
.yaf{bottom:229.867908pt;}
.y72{bottom:232.427907pt;}
.ycc{bottom:238.347905pt;}
.y10d{bottom:239.466704pt;}
.ydc{bottom:239.467371pt;}
.y129{bottom:239.467904pt;}
.y54{bottom:257.386697pt;}
.y140{bottom:258.186697pt;}
.y101{bottom:261.706695pt;}
.y90{bottom:263.947894pt;}
.yae{bottom:266.667893pt;}
.yec{bottom:267.307893pt;}
.y71{bottom:269.227892pt;}
.y3f{bottom:272.426691pt;}
.ycb{bottom:275.147890pt;}
.y10c{bottom:275.946690pt;}
.y113{bottom:276.266689pt;}
.ydb{bottom:276.267356pt;}
.y128{bottom:276.268556pt;}
.y53{bottom:291.146684pt;}
.y100{bottom:298.506681pt;}
.y8f{bottom:300.747880pt;}
.yad{bottom:303.467879pt;}
.yeb{bottom:304.107878pt;}
.y70{bottom:306.027878pt;}
.y3e{bottom:309.226676pt;}
.yca{bottom:311.787875pt;}
.y10b{bottom:313.066675pt;}
.yda{bottom:313.067341pt;}
.y127{bottom:313.068541pt;}
.y13f{bottom:316.107340pt;}
.y52{bottom:324.906670pt;}
.y14{bottom:331.870667pt;}
.yff{bottom:335.306666pt;}
.y8e{bottom:338.667865pt;}
.yac{bottom:340.267864pt;}
.yea{bottom:342.027863pt;}
.y6f{bottom:342.827863pt;}
.y3d{bottom:346.026662pt;}
.yc9{bottom:348.587861pt;}
.y10a{bottom:349.866660pt;}
.yd9{bottom:349.867327pt;}
.y126{bottom:349.868527pt;}
.y13e{bottom:352.907326pt;}
.y51{bottom:358.666657pt;}
.y13{bottom:365.870667pt;}
.yfe{bottom:372.106651pt;}
.y8d{bottom:376.747849pt;}
.yab{bottom:378.187849pt;}
.ye9{bottom:379.947848pt;}
.y6c{bottom:380.427848pt;}
.y3c{bottom:382.826647pt;}
.yc8{bottom:385.387846pt;}
.y125{bottom:386.348512pt;}
.y109{bottom:386.666645pt;}
.yd8{bottom:386.667312pt;}
.y13d{bottom:389.707311pt;}
.y50{bottom:392.426643pt;}
.y6d{bottom:396.907841pt;}
.y12{bottom:399.870667pt;}
.y6a{bottom:402.508800pt;}
.yfd{bottom:408.907303pt;}
.y6e{bottom:408.907836pt;}
.y8c{bottom:413.547835pt;}
.yaa{bottom:416.267833pt;}
.ye8{bottom:417.867300pt;}
.y3b{bottom:419.627299pt;}
.y2b{bottom:421.867831pt;}
.yc7{bottom:423.307831pt;}
.y108{bottom:423.466631pt;}
.yd7{bottom:423.467297pt;}
.y124{bottom:423.468497pt;}
.y4f{bottom:426.027296pt;}
.y13c{bottom:426.507296pt;}
.y11{bottom:433.870667pt;}
.yfc{bottom:445.707288pt;}
.y69{bottom:448.106621pt;}
.y8b{bottom:450.347820pt;}
.y10{bottom:451.870667pt;}
.ya9{bottom:453.067819pt;}
.ye7{bottom:455.787284pt;}
.y3a{bottom:456.427284pt;}
.y2a{bottom:458.667817pt;}
.y4e{bottom:459.787283pt;}
.y112{bottom:459.947283pt;}
.yd6{bottom:460.267283pt;}
.y123{bottom:460.268483pt;}
.yc6{bottom:461.387815pt;}
.y13b{bottom:463.307281pt;}
.yf{bottom:469.870667pt;}
.yfb{bottom:482.507274pt;}
.y68{bottom:484.906606pt;}
.y86{bottom:487.148800pt;}
.ya8{bottom:489.867804pt;}
.y83{bottom:490.347804pt;}
.y8a{bottom:492.107767pt;}
.ye6{bottom:492.747270pt;}
.y39{bottom:493.227269pt;}
.y4d{bottom:493.547269pt;}
.y29{bottom:495.467268pt;}
.yd5{bottom:497.067268pt;}
.y122{bottom:497.068468pt;}
.yc5{bottom:498.187801pt;}
.y85{bottom:499.307800pt;}
.y13a{bottom:500.107267pt;}
.y89{bottom:502.507799pt;}
.y84{bottom:508.587797pt;}
.y88{bottom:511.787795pt;}
.yfa{bottom:518.187259pt;}
.ye{bottom:519.870667pt;}
.y67{bottom:521.707258pt;}
.ya7{bottom:526.667789pt;}
.y4c{bottom:527.307256pt;}
.y38{bottom:530.027255pt;}
.y28{bottom:532.267254pt;}
.y121{bottom:533.548453pt;}
.yd4{bottom:533.867253pt;}
.yc4{bottom:534.987786pt;}
.y139{bottom:536.907252pt;}
.y82{bottom:546.987248pt;}
.ye5{bottom:550.667246pt;}
.y37{bottom:551.787246pt;}
.yd{bottom:553.870667pt;}
.y66{bottom:558.507243pt;}
.y4b{bottom:562.987241pt;}
.ya6{bottom:568.748439pt;}
.y27{bottom:569.067239pt;}
.y111{bottom:570.347239pt;}
.yd3{bottom:570.667238pt;}
.y120{bottom:570.669105pt;}
.yc1{bottom:572.268800pt;}
.y138{bottom:573.707237pt;}
.yf9{bottom:576.107236pt;}
.yc3{bottom:578.667769pt;}
.y81{bottom:583.787233pt;}
.ye4{bottom:587.467232pt;}
.yc{bottom:587.870667pt;}
.y65{bottom:595.307229pt;}
.y4a{bottom:597.867228pt;}
.y36{bottom:603.627225pt;}
.yd2{bottom:607.467224pt;}
.y11f{bottom:607.469090pt;}
.ya5{bottom:608.588423pt;}
.y137{bottom:610.507222pt;}
.yf8{bottom:612.907222pt;}
.y26{bottom:613.227221pt;}
.y80{bottom:619.467219pt;}
.yc0{bottom:619.788419pt;}
.yb{bottom:621.870667pt;}
.ye3{bottom:624.267217pt;}
.y64{bottom:630.027215pt;}
.y49{bottom:631.627214pt;}
.y35{bottom:640.427210pt;}
.y25{bottom:642.667210pt;}
.yd1{bottom:644.267209pt;}
.y11e{bottom:644.269076pt;}
.ya4{bottom:645.389075pt;}
.y136{bottom:649.067207pt;}
.yf7{bottom:649.547207pt;}
.ya{bottom:655.870667pt;}
.ybd{bottom:656.908800pt;}
.y7f{bottom:659.787203pt;}
.ye2{bottom:661.067202pt;}
.ybf{bottom:663.309068pt;}
.y63{bottom:663.787201pt;}
.y48{bottom:665.227201pt;}
.y34{bottom:677.227196pt;}
.y24{bottom:679.467195pt;}
.yd0{bottom:681.067194pt;}
.y11d{bottom:681.069061pt;}
.ya1{bottom:682.668800pt;}
.yf6{bottom:685.227193pt;}
.ya3{bottom:689.069058pt;}
.y9{bottom:689.870667pt;}
.y62{bottom:697.547188pt;}
.ye1{bottom:697.867188pt;}
.y47{bottom:698.987187pt;}
.y135{bottom:700.907186pt;}
.ybc{bottom:704.429052pt;}
.y33{bottom:714.027181pt;}
.y23{bottom:716.267180pt;}
.y107{bottom:717.547180pt;}
.y7e{bottom:717.867180pt;}
.y11c{bottom:717.869046pt;}
.ya0{bottom:730.189041pt;}
.y61{bottom:731.307174pt;}
.y46{bottom:734.667173pt;}
.y134{bottom:737.707172pt;}
.ybb{bottom:742.349036pt;}
.yf5{bottom:743.147169pt;}
.y32{bottom:750.827166pt;}
.y22{bottom:753.067165pt;}
.y7d{bottom:754.667165pt;}
.y11b{bottom:754.669031pt;}
.y60{bottom:765.067161pt;}
.y9d{bottom:767.308800pt;}
.y45{bottom:771.467158pt;}
.y31{bottom:772.587158pt;}
.y9f{bottom:773.709024pt;}
.y133{bottom:774.507157pt;}
.yba{bottom:780.429021pt;}
.yf4{bottom:783.947153pt;}
.y8{bottom:787.870667pt;}
.y21{bottom:789.867151pt;}
.y110{bottom:791.147150pt;}
.y11a{bottom:791.149017pt;}
.y7c{bottom:791.467150pt;}
.y5f{bottom:800.747146pt;}
.y7{bottom:805.870667pt;}
.y44{bottom:808.267143pt;}
.y132{bottom:811.307142pt;}
.y9c{bottom:814.829007pt;}
.yb9{bottom:817.229006pt;}
.yf3{bottom:820.747138pt;}
.y6{bottom:823.870667pt;}
.y30{bottom:824.427137pt;}
.y20{bottom:826.667136pt;}
.y7b{bottom:828.267135pt;}
.y119{bottom:828.269002pt;}
.y5e{bottom:837.547132pt;}
.ye0{bottom:843.947129pt;}
.y43{bottom:845.067129pt;}
.y131{bottom:848.107127pt;}
.y9b{bottom:852.748992pt;}
.yb8{bottom:854.028992pt;}
.yf2{bottom:857.547124pt;}
.y5{bottom:857.870667pt;}
.y2f{bottom:861.227122pt;}
.y1f{bottom:863.467121pt;}
.y106{bottom:864.747121pt;}
.y7a{bottom:865.067121pt;}
.y118{bottom:865.068987pt;}
.y5d{bottom:874.347117pt;}
.y1e{bottom:881.547114pt;}
.y42{bottom:881.867114pt;}
.y130{bottom:884.907113pt;}
.y9a{bottom:890.828977pt;}
.y4{bottom:892.689333pt;}
.y149{bottom:892.911643pt;}
.yf1{bottom:894.347109pt;}
.y2e{bottom:898.027107pt;}
.y79{bottom:901.867106pt;}
.y117{bottom:901.868973pt;}
.y148{bottom:910.911636pt;}
.y5c{bottom:911.147102pt;}
.y3{bottom:913.689333pt;}
.y1d{bottom:918.667099pt;}
.y12f{bottom:921.707098pt;}
.y99{bottom:927.628962pt;}
.y2d{bottom:934.827093pt;}
.y116{bottom:938.348958pt;}
.y78{bottom:938.667091pt;}
.y1c{bottom:941.867090pt;}
.yf0{bottom:942.027090pt;}
.y5b{bottom:945.867088pt;}
.y147{bottom:946.911621pt;}
.y41{bottom:955.467084pt;}
.y2c{bottom:956.747084pt;}
.y12e{bottom:960.427082pt;}
.y2{bottom:963.958667pt;}
.y98{bottom:964.428948pt;}
.yb5{bottom:964.748800pt;}
.y1b{bottom:966.507080pt;}
.yb7{bottom:971.148945pt;}
.y77{bottom:975.467076pt;}
.y115{bottom:975.468943pt;}
.y5a{bottom:979.627075pt;}
.y1{bottom:981.958667pt;}
.y1a{bottom:990.987070pt;}
.y40{bottom:991.147070pt;}
.y95{bottom:1001.548800pt;}
.yef{bottom:1006.987064pt;}
.y12d{bottom:1007.147064pt;}
.y97{bottom:1007.948930pt;}
.y76{bottom:1012.267062pt;}
.y59{bottom:1013.387061pt;}
.y15{bottom:1043.850667pt;}
.h15{height:8.160000pt;}
.hf{height:10.560000pt;}
.hc{height:10.720000pt;}
.h17{height:19.329002pt;}
.h14{height:19.470502pt;}
.h10{height:25.202581pt;}
.hd{height:25.387080pt;}
.h1d{height:25.590306pt;}
.h1c{height:25.777643pt;}
.h8{height:29.501465pt;}
.h24{height:31.103988pt;}
.h18{height:33.135905pt;}
.h16{height:33.378481pt;}
.h1a{height:33.685870pt;}
.h19{height:35.601536pt;}
.hb{height:40.509424pt;}
.h11{height:43.204924pt;}
.he{height:43.521211pt;}
.ha{height:43.630063pt;}
.h1f{height:43.711983pt;}
.h21{height:43.870803pt;}
.h5{height:44.031982pt;}
.h9{height:44.034116pt;}
.h1b{height:44.437482pt;}
.h4{height:44.500000pt;}
.h1e{height:44.598938pt;}
.h12{height:44.671982pt;}
.h22{height:45.631982pt;}
.h27{height:46.655981pt;}
.h28{height:46.847981pt;}
.h20{height:47.134837pt;}
.h13{height:53.949696pt;}
.h7{height:60.013454pt;}
.h6{height:63.073895pt;}
.h1{height:66.750000pt;}
.h2{height:77.875000pt;}
.h3{height:82.005333pt;}
.h23{height:284.000000pt;}
.h25{height:493.333333pt;}
.h26{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w5{width:78.560000pt;}
.wd{width:83.680000pt;}
.w6{width:84.960000pt;}
.w9{width:87.360000pt;}
.we{width:94.880000pt;}
.w11{width:95.840000pt;}
.wb{width:96.480000pt;}
.wf{width:96.640000pt;}
.wa{width:99.360000pt;}
.w7{width:100.320000pt;}
.w1{width:106.240000pt;}
.wc{width:107.840000pt;}
.w10{width:108.800000pt;}
.w8{width:112.480000pt;}
.w2{width:132.000000pt;}
.w3{width:243.360000pt;}
.w4{width:249.280000pt;}
.w12{width:372.000000pt;}
.w13{width:665.333333pt;}
.w14{width:768.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x41{left:15.999994pt;}
.x11{left:37.794667pt;}
.xf{left:42.489333pt;}
.x13{left:47.084000pt;}
.x3{left:55.053333pt;}
.x1{left:56.705333pt;}
.xc{left:74.529333pt;}
.x42{left:95.999962pt;}
.x14{left:112.892000pt;}
.xe{left:117.633333pt;}
.x15{left:119.999952pt;}
.x17{left:143.999942pt;}
.x5{left:165.617333pt;}
.xa{left:167.061333pt;}
.x16{left:167.999933pt;}
.xb{left:171.509333pt;}
.x2{left:174.113333pt;}
.x9{left:207.957333pt;}
.x4{left:224.145333pt;}
.x28{left:238.399905pt;}
.x10{left:243.457333pt;}
.x21{left:245.599902pt;}
.x25{left:248.319901pt;}
.x8{left:257.749333pt;}
.x2c{left:263.519895pt;}
.x23{left:271.679891pt;}
.x12{left:273.457333pt;}
.x7{left:282.913333pt;}
.x6{left:285.137333pt;}
.x2a{left:287.834077pt;}
.x20{left:296.159882pt;}
.x1e{left:301.919879pt;}
.x26{left:308.160000pt;}
.x22{left:314.080000pt;}
.x1f{left:321.119872pt;}
.x3a{left:323.679871pt;}
.x36{left:328.159869pt;}
.x3d{left:330.079868pt;}
.x1a{left:331.839867pt;}
.x33{left:334.399866pt;}
.x3f{left:335.999866pt;}
.x3b{left:337.119865pt;}
.x37{left:340.959864pt;}
.x40{left:342.559863pt;}
.x3e{left:343.519863pt;}
.xd{left:347.497333pt;}
.x32{left:353.119859pt;}
.x1d{left:354.399858pt;}
.x39{left:355.679858pt;}
.x35{left:359.679856pt;}
.x31{left:361.280000pt;}
.x1b{left:362.720000pt;}
.x38{left:363.680000pt;}
.x30{left:367.199853pt;}
.x3c{left:370.080000pt;}
.x2b{left:372.959851pt;}
.x2f{left:375.680000pt;}
.x34{left:379.840000pt;}
.x2e{left:382.080000pt;}
.x1c{left:383.999846pt;}
.x18{left:388.480000pt;}
.x27{left:398.239841pt;}
.x24{left:404.959838pt;}
.x19{left:409.439836pt;}
.x29{left:438.399825pt;}
.x2d{left:557.439777pt;}
}




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