
    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_83991bb38e44b23522e7b62f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_362fb4019b61bef869b588ce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.916992;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_5d0a65621f422205508fcd5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b95fb95791e5c9cb317af623.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.810000;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_0d1012f7373651b0188b4b8c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.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:ff6;src:url('chunks/assets/font_49b09c3f1f2bc27a25bae0de.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.447000;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_67d3988f362f6edfefba9c05.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;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_28956398b2febaea34fd6628.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e71da45fc6c29687c4a35016.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.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_b71dc6b9634fc0994ae296ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.882324;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_91cbd5628ce09b5d798b7ee4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.905000;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;}
.me{transform:matrix(0.236143,0.000000,-0.080760,0.236596,0,0);-ms-transform:matrix(0.236143,0.000000,-0.080760,0.236596,0,0);-webkit-transform:matrix(0.236143,0.000000,-0.080760,0.236596,0,0);}
.md{transform:matrix(0.236144,0.000000,-0.080762,0.236596,0,0);-ms-transform:matrix(0.236144,0.000000,-0.080762,0.236596,0,0);-webkit-transform:matrix(0.236144,0.000000,-0.080762,0.236596,0,0);}
.m9{transform:matrix(0.236145,0.000000,-0.080759,0.236597,0,0);-ms-transform:matrix(0.236145,0.000000,-0.080759,0.236597,0,0);-webkit-transform:matrix(0.236145,0.000000,-0.080759,0.236597,0,0);}
.mb{transform:matrix(0.236154,0.000000,-0.080760,0.236596,0,0);-ms-transform:matrix(0.236154,0.000000,-0.080760,0.236596,0,0);-webkit-transform:matrix(0.236154,0.000000,-0.080760,0.236596,0,0);}
.ma{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249528,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249530,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249533,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-53.279979px;}
.v1{vertical-align:-35.999986px;}
.v3{vertical-align:-13.679995px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.559993px;}
.v4{vertical-align:30.239988px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.140892px;}
.ls7{letter-spacing:0.276060px;}
.ls1{letter-spacing:0.359220px;}
.ls3{letter-spacing:0.359274px;}
.ls8{letter-spacing:0.470644px;}
.ls5{letter-spacing:0.497791px;}
.ls4{letter-spacing:7.154689px;}
.ls6{letter-spacing:110.089584px;}
.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;}
}
.ws14{word-spacing:-48.466133px;}
.ws3{word-spacing:-33.904270px;}
.ws4{word-spacing:-33.763378px;}
.ws0{word-spacing:-18.305843px;}
.ws9{word-spacing:-16.979693px;}
.ws12{word-spacing:-16.971293px;}
.ws2{word-spacing:-16.949543px;}
.wsd{word-spacing:-16.938293px;}
.wsf{word-spacing:-16.919993px;}
.ws15{word-spacing:-15.593994px;}
.ws5{word-spacing:-14.068074px;}
.ws1{word-spacing:-11.356195px;}
.ws7{word-spacing:-9.904856px;}
.ws13{word-spacing:-9.899996px;}
.wsb{word-spacing:-9.881096px;}
.ws10{word-spacing:-9.869756px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:150.254261px;}
.ws11{word-spacing:190.411930px;}
.wse{word-spacing:253.232179px;}
.wsa{word-spacing:568.525220px;}
.ws8{word-spacing:620.244520px;}
._17{margin-left:-315.017095px;}
._20{margin-left:-291.804003px;}
._18{margin-left:-281.112309px;}
._1d{margin-left:-254.114914px;}
._12{margin-left:-215.302834px;}
._16{margin-left:-189.125951px;}
._1c{margin-left:-176.891108px;}
._2a{margin-left:-173.963930px;}
._1f{margin-left:-172.448571px;}
._1a{margin-left:-154.144669px;}
._24{margin-left:-138.747716px;}
._14{margin-left:-137.638185px;}
._15{margin-left:-134.426999px;}
._1b{margin-left:-133.195731px;}
._26{margin-left:-127.441124px;}
._13{margin-left:-114.949807px;}
._10{margin-left:-110.245038px;}
._f{margin-left:-91.156526px;}
._11{margin-left:-82.499729px;}
._25{margin-left:-50.534266px;}
._21{margin-left:-5.749489px;}
._2{margin-left:-2.166917px;}
._3{margin-left:-1.012264px;}
._0{width:1.000514px;}
._1{width:2.238230px;}
._8{width:3.500658px;}
._6{width:5.165182px;}
._7{width:6.246948px;}
._4{width:8.003006px;}
._5{width:9.183926px;}
._c{width:10.942294px;}
._a{width:12.331828px;}
._9{width:13.344323px;}
._b{width:14.499932px;}
._e{width:17.426906px;}
._d{width:18.834807px;}
._34{width:20.201561px;}
._2f{width:46.498647px;}
._2c{width:65.139170px;}
._32{width:84.993888px;}
._23{width:86.078105px;}
._30{width:91.613295px;}
._28{width:99.186114px;}
._1e{width:103.215628px;}
._33{width:104.409273px;}
._27{width:158.721990px;}
._31{width:176.010437px;}
._2b{width:178.536806px;}
._2d{width:187.202694px;}
._22{width:188.580951px;}
._19{width:189.617383px;}
._29{width:190.679250px;}
._2e{width:876.412187px;}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:28.198069px;}
.fs12{font-size:28.229029px;}
.fs17{font-size:36.610545px;}
.fs8{font-size:39.321344px;}
.fs10{font-size:39.479024px;}
.fsc{font-size:39.524384px;}
.fs14{font-size:39.599984px;}
.fs9{font-size:39.619424px;}
.fs4{font-size:45.424782px;}
.fs3{font-size:48.135581px;}
.fs0{font-size:56.272297px;}
.fs7{font-size:62.375975px;}
.fsf{font-size:67.679973px;}
.fsd{font-size:67.753173px;}
.fs5{font-size:67.798173px;}
.fs13{font-size:67.885173px;}
.fsa{font-size:67.918773px;}
.fs16{font-size:71.513950px;}
.fse{font-size:71.591973px;}
.fs15{font-size:71.731153px;}
.fsb{font-size:71.766548px;}
.fs2{font-size:73.223371px;}
.fs6{font-size:79.323568px;}
.fs1{font-size:113.225955px;}
.y0{bottom:0.000000px;}
.y2{bottom:107.639957px;}
.y29{bottom:124.559950px;}
.yf2{bottom:127.439949px;}
.y107{bottom:127.619949px;}
.ycb{bottom:131.759947px;}
.y131{bottom:134.279946px;}
.y80{bottom:138.059945px;}
.y4a{bottom:138.419945px;}
.y122{bottom:138.779944px;}
.y28{bottom:142.379943px;}
.y106{bottom:144.359942px;}
.yf1{bottom:145.259942px;}
.y145{bottom:147.959941px;}
.yca{bottom:148.139941px;}
.y130{bottom:151.739939px;}
.y27{bottom:154.979938px;}
.y7f{bottom:156.059938px;}
.y49{bottom:158.939936px;}
.y105{bottom:160.739936px;}
.yf0{bottom:163.259935px;}
.yc9{bottom:164.339934px;}
.y144{bottom:165.779934px;}
.y12f{bottom:166.679933px;}
.y121{bottom:171.359931px;}
.y7e{bottom:173.879930px;}
.y48{bottom:175.679930px;}
.y104{bottom:176.759929px;}
.yc8{bottom:180.719928px;}
.yef{bottom:181.079928px;}
.y143{bottom:183.599927px;}
.y120{bottom:187.559925px;}
.y7d{bottom:189.719924px;}
.y7c{bottom:191.879923px;}
.y103{bottom:192.959923px;}
.yc7{bottom:196.739921px;}
.yee{bottom:198.899920px;}
.y142{bottom:201.419919px;}
.y11f{bottom:203.759918px;}
.y102{bottom:209.339916px;}
.y7b{bottom:209.699916px;}
.yc6{bottom:213.119915px;}
.yed{bottom:216.719913px;}
.y141{bottom:219.239912px;}
.y11e{bottom:219.959912px;}
.y101{bottom:225.539910px;}
.y79{bottom:228.779908px;}
.yc5{bottom:229.319908px;}
.y77{bottom:231.299907px;}
.y78{bottom:232.019907px;}
.y76{bottom:232.199907px;}
.yec{bottom:234.539906px;}
.y11d{bottom:236.339905px;}
.y140{bottom:237.239905px;}
.y7a{bottom:239.579904px;}
.y100{bottom:241.379903px;}
.yc4{bottom:245.519902px;}
.y75{bottom:252.179899px;}
.yeb{bottom:252.539899px;}
.y74{bottom:254.339898px;}
.y13f{bottom:255.059898px;}
.yc3{bottom:261.899895px;}
.y16a{bottom:265.319894px;}
.y11c{bottom:268.739893px;}
.yea{bottom:270.359892px;}
.y73{bottom:271.619891px;}
.y13e{bottom:272.879891px;}
.yc2{bottom:276.479889px;}
.yc1{bottom:278.639889px;}
.y169{bottom:282.959887px;}
.y72{bottom:288.359885px;}
.y11b{bottom:290.519884px;}
.y13d{bottom:295.739882px;}
.yc0{bottom:296.459881px;}
.y168{bottom:300.959880px;}
.ye9{bottom:303.839878px;}
.y71{bottom:305.279878px;}
.ye8{bottom:305.999878px;}
.y11a{bottom:308.879876px;}
.y12e{bottom:311.039876px;}
.y26{bottom:312.299875px;}
.ybc{bottom:312.659875px;}
.ybe{bottom:316.799873px;}
.y13c{bottom:317.699873px;}
.y167{bottom:318.779872px;}
.ye7{bottom:323.819870px;}
.y12d{bottom:323.999870px;}
.y25{bottom:328.679869px;}
.ybb{bottom:330.119868px;}
.y13b{bottom:333.899866px;}
.y166{bottom:336.599865px;}
.ybd{bottom:339.119864px;}
.ye6{bottom:339.659864px;}
.ye5{bottom:341.819863px;}
.ybf{bottom:343.439863px;}
.y13a{bottom:346.499861px;}
.y24{bottom:346.679861px;}
.y165{bottom:354.599858px;}
.ye4{bottom:359.639856px;}
.yba{bottom:363.599855px;}
.y23{bottom:364.319854px;}
.y164{bottom:372.419851px;}
.y47{bottom:376.559849px;}
.ye3{bottom:377.639849px;}
.yb9{bottom:379.799848px;}
.y22{bottom:382.139847px;}
.y163{bottom:390.239844px;}
.ye2{bottom:395.459842px;}
.yb8{bottom:395.639842px;}
.y46{bottom:397.079841px;}
.yb7{bottom:397.799841px;}
.y21{bottom:400.139840px;}
.y162{bottom:408.059837px;}
.ye1{bottom:413.279835px;}
.yb6{bottom:413.459835px;}
.y45{bottom:415.079834px;}
.yb5{bottom:415.619834px;}
.y20{bottom:417.959833px;}
.y161{bottom:425.879830px;}
.ye0{bottom:431.099828px;}
.y44{bottom:432.899827px;}
.yb4{bottom:433.439827px;}
.y1f{bottom:435.959826px;}
.y160{bottom:443.879822px;}
.ydf{bottom:448.919820px;}
.yae{bottom:450.719820px;}
.y43{bottom:450.899820px;}
.yb0{bottom:454.859818px;}
.y1e{bottom:458.639817px;}
.y119{bottom:460.979816px;}
.y15f{bottom:461.699815px;}
.yaf{bottom:465.659814px;}
.yde{bottom:466.919813px;}
.yb1{bottom:469.799812px;}
.yb3{bottom:469.979812px;}
.y70{bottom:470.879812px;}
.y42{bottom:473.039811px;}
.y118{bottom:477.359809px;}
.y12c{bottom:478.439809px;}
.y15e{bottom:479.699808px;}
.yb2{bottom:480.419808px;}
.y1d{bottom:481.319807px;}
.yff{bottom:482.219807px;}
.ydd{bottom:484.739806px;}
.y6f{bottom:491.579803px;}
.y117{bottom:495.179802px;}
.y12b{bottom:495.899802px;}
.y41{bottom:496.439801px;}
.y15d{bottom:497.519801px;}
.yfe{bottom:498.959800px;}
.yad{bottom:500.579800px;}
.y1c{bottom:500.759800px;}
.ydc{bottom:502.559799px;}
.y6e{bottom:507.059797px;}
.y6d{bottom:509.399796px;}
.y12a{bottom:511.019796px;}
.y116{bottom:512.999795px;}
.yfd{bottom:515.159794px;}
.ya7{bottom:516.779793px;}
.y1b{bottom:519.839792px;}
.ydb{bottom:520.559792px;}
.yac{bottom:520.919792px;}
.y6c{bottom:525.059790px;}
.y40{bottom:526.139790px;}
.y6b{bottom:527.219789px;}
.ya9{bottom:529.919788px;}
.y115{bottom:530.819788px;}
.yfc{bottom:531.359787px;}
.y15c{bottom:533.159787px;}
.yab{bottom:534.239786px;}
.yda{bottom:538.379785px;}
.y1a{bottom:538.559785px;}
.ya8{bottom:541.259783px;}
.y6a{bottom:542.879783px;}
.yfb{bottom:543.959782px;}
.y69{bottom:545.039782px;}
.yaa{bottom:545.399782px;}
.y114{bottom:548.819780px;}
.y139{bottom:550.439780px;}
.y15b{bottom:550.979780px;}
.y19{bottom:555.299778px;}
.yd9{bottom:556.199778px;}
.ya6{bottom:566.279773px;}
.y113{bottom:566.639773px;}
.y138{bottom:566.819773px;}
.y65{bottom:568.439773px;}
.y15a{bottom:568.979772px;}
.y18{bottom:571.499771px;}
.y67{bottom:572.759771px;}
.yd8{bottom:574.019770px;}
.y137{bottom:579.239768px;}
.y64{bottom:581.759767px;}
.ya5{bottom:584.099766px;}
.y112{bottom:584.639766px;}
.y63{bottom:585.899766px;}
.y159{bottom:586.799765px;}
.y17{bottom:587.879765px;}
.yd7{bottom:592.019763px;}
.y66{bottom:592.919763px;}
.y68{bottom:597.239761px;}
.ya4{bottom:599.759760px;}
.ya3{bottom:602.099759px;}
.y111{bottom:602.459759px;}
.y16{bottom:604.079758px;}
.y158{bottom:604.619758px;}
.yd6{bottom:609.839756px;}
.ya2{bottom:619.919752px;}
.y15{bottom:620.279752px;}
.y62{bottom:622.259751px;}
.y157{bottom:622.619751px;}
.y110{bottom:625.139750px;}
.yd5{bottom:627.659749px;}
.y14{bottom:636.479745px;}
.ya1{bottom:637.559745px;}
.y156{bottom:640.259744px;}
.yd4{bottom:645.659742px;}
.y10f{bottom:647.819741px;}
.y5e{bottom:648.359741px;}
.y60{bottom:652.499739px;}
.y13{bottom:652.679739px;}
.ya0{bottom:655.559738px;}
.y155{bottom:658.259737px;}
.y129{bottom:659.339736px;}
.y5f{bottom:663.119735px;}
.yd3{bottom:664.019734px;}
.y5d{bottom:665.279734px;}
.y10e{bottom:667.259733px;}
.y5c{bottom:667.439733px;}
.y12{bottom:669.059732px;}
.y9f{bottom:673.379731px;}
.y154{bottom:676.079730px;}
.y128{bottom:676.799729px;}
.y61{bottom:678.059729px;}
.y10d{bottom:683.819726px;}
.y11{bottom:685.259726px;}
.y10c{bottom:686.159726px;}
.yd2{bottom:687.779725px;}
.y9e{bottom:689.219724px;}
.y3f{bottom:689.759724px;}
.y9d{bottom:691.379723px;}
.y153{bottom:694.079722px;}
.y127{bottom:696.059722px;}
.y10b{bottom:701.819719px;}
.y54{bottom:703.439719px;}
.y9c{bottom:707.039717px;}
.y3e{bottom:707.579717px;}
.y58{bottom:707.759717px;}
.y9b{bottom:709.199716px;}
.yd1{bottom:709.919716px;}
.y152{bottom:711.899715px;}
.y10a{bottom:714.959714px;}
.y10{bottom:715.679714px;}
.y56{bottom:716.759713px;}
.y5a{bottom:721.079706px;}
.y59{bottom:721.079712px;}
.y9a{bottom:724.679710px;}
.y3d{bottom:725.399710px;}
.y99{bottom:727.019709px;}
.y55{bottom:728.099709px;}
.y151{bottom:729.719708px;}
.yd0{bottom:730.259708px;}
.y5b{bottom:731.699707px;}
.y57{bottom:732.239707px;}
.y3c{bottom:743.399703px;}
.y98{bottom:744.839702px;}
.y150{bottom:747.719701px;}
.ycf{bottom:750.599700px;}
.y53{bottom:757.259697px;}
.yfa{bottom:761.219696px;}
.y97{bottom:762.659695px;}
.yf{bottom:765.179694px;}
.y14f{bottom:765.359694px;}
.y3b{bottom:766.079694px;}
.yce{bottom:770.759692px;}
.y52{bottom:773.099691px;}
.y51{bottom:775.259690px;}
.yf9{bottom:777.419689px;}
.y96{bottom:780.659688px;}
.y14e{bottom:783.359687px;}
.ycd{bottom:783.719687px;}
.y136{bottom:786.239686px;}
.y3a{bottom:788.219685px;}
.y50{bottom:793.079683px;}
.yf8{bottom:794.159682px;}
.y95{bottom:798.479681px;}
.y14d{bottom:801.179680px;}
.y135{bottom:802.619679px;}
.y39{bottom:803.879678px;}
.yf7{bottom:810.359676px;}
.ye{bottom:814.499674px;}
.y4f{bottom:815.039674px;}
.y94{bottom:816.479673px;}
.y14c{bottom:818.999672px;}
.y134{bottom:819.539672px;}
.y38{bottom:820.619672px;}
.yf6{bottom:826.559669px;}
.yd{bottom:831.059668px;}
.y93{bottom:834.299666px;}
.y133{bottom:834.659666px;}
.y4e{bottom:835.559666px;}
.y14b{bottom:836.999665px;}
.y37{bottom:838.439665px;}
.yf5{bottom:839.159664px;}
.y126{bottom:848.879660px;}
.yc{bottom:850.499660px;}
.y92{bottom:852.119659px;}
.y4d{bottom:852.479659px;}
.y14a{bottom:854.819658px;}
.y36{bottom:856.439657px;}
.yb{bottom:858.239657px;}
.y125{bottom:865.079654px;}
.ya{bottom:869.579652px;}
.y91{bottom:869.939652px;}
.y149{bottom:872.639651px;}
.y35{bottom:874.259650px;}
.y124{bottom:878.219649px;}
.y9{bottom:886.139646px;}
.y90{bottom:889.559644px;}
.y148{bottom:890.459644px;}
.y34{bottom:892.259643px;}
.y8{bottom:893.879642px;}
.y109{bottom:895.319642px;}
.y108{bottom:897.479641px;}
.y7{bottom:904.679638px;}
.y147{bottom:908.459637px;}
.y8f{bottom:908.819636px;}
.y33{bottom:910.079636px;}
.y8e{bottom:925.199630px;}
.y32{bottom:927.899629px;}
.y5{bottom:930.419628px;}
.y6{bottom:938.879624px;}
.y8d{bottom:940.859624px;}
.y8c{bottom:943.019623px;}
.y31{bottom:945.719622px;}
.y146{bottom:947.339621px;}
.y8b{bottom:960.839616px;}
.y30{bottom:963.539615px;}
.y85{bottom:977.039609px;}
.y87{bottom:981.179608px;}
.y2f{bottom:981.539607px;}
.y4{bottom:982.799607px;}
.y84{bottom:990.179604px;}
.y82{bottom:994.499602px;}
.y8a{bottom:994.679602px;}
.y2e{bottom:999.359600px;}
.y86{bottom:1001.519599px;}
.y89{bottom:1005.119586px;}
.y83{bottom:1005.119598px;}
.y88{bottom:1005.659592px;}
.y3{bottom:1014.479594px;}
.y2d{bottom:1017.179593px;}
.y81{bottom:1026.719589px;}
.y4c{bottom:1029.599588px;}
.y2c{bottom:1035.179586px;}
.yf4{bottom:1036.079586px;}
.y123{bottom:1051.379579px;}
.y132{bottom:1051.919579px;}
.yf3{bottom:1052.639579px;}
.y2b{bottom:1052.819579px;}
.ycc{bottom:1053.899578px;}
.y4b{bottom:1054.439578px;}
.y1{bottom:1076.579569px;}
.y2a{bottom:1079.999568px;}
.h1d{height:19.280427px;}
.h29{height:25.188055px;}
.h19{height:26.964174px;}
.h14{height:26.995154px;}
.h22{height:27.046789px;}
.he{height:27.053085px;}
.hf{height:27.060067px;}
.h1f{height:27.192776px;}
.h21{height:27.244789px;}
.h5{height:31.252250px;}
.h4{height:33.117280px;}
.h7{height:35.113914px;}
.h9{height:38.433979px;}
.h1{height:38.715341px;}
.ha{height:39.052974px;}
.hd{height:42.914671px;}
.h28{height:43.288927px;}
.h1b{height:46.225422px;}
.h1e{height:46.275417px;}
.h23{height:46.365573px;}
.h10{height:46.388522px;}
.h27{height:46.428461px;}
.h16{height:46.478677px;}
.h18{height:46.563821px;}
.h25{height:46.569229px;}
.h11{height:46.592278px;}
.h15{height:46.614183px;}
.h6{height:46.645143px;}
.h20{height:46.704999px;}
.h13{height:46.728116px;}
.hb{height:47.051932px;}
.h26{height:49.058570px;}
.h17{height:49.112094px;}
.h24{height:49.207571px;}
.h12{height:49.231852px;}
.h3{height:50.377679px;}
.h8{height:50.817019px;}
.hc{height:55.050556px;}
.h1c{height:57.401557px;}
.h1a{height:62.785415px;}
.h2{height:75.465541px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2{left:153.180159px;}
.x6c{left:162.359935px;}
.x67{left:168.300206px;}
.x33{left:169.559934px;}
.x6d{left:173.339931px;}
.x1{left:176.219930px;}
.x4e{left:178.559940px;}
.xb{left:180.719928px;}
.xc{left:189.359924px;}
.x84{left:191.339550px;}
.x62{left:194.039937px;}
.x46{left:197.099921px;}
.x3b{left:203.399919px;}
.x35{left:205.559918px;}
.x43{left:206.999917px;}
.x39{left:208.079917px;}
.x31{left:209.519883px;}
.x32{left:212.579876px;}
.x5c{left:214.379914px;}
.x80{left:215.459914px;}
.x4b{left:216.719913px;}
.x65{left:217.799913px;}
.x8{left:218.879912px;}
.x30{left:222.299962px;}
.x3{left:228.973787px;}
.x9{left:230.039908px;}
.xf{left:232.199907px;}
.x4c{left:234.719906px;}
.x21{left:238.139520px;}
.x42{left:241.559901px;}
.x59{left:244.079902px;}
.x4d{left:245.699902px;}
.x1e{left:247.859804px;}
.x49{left:251.819899px;}
.x3c{left:259.919896px;}
.x57{left:260.999896px;}
.x4f{left:262.799895px;}
.x36{left:264.239894px;}
.x63{left:265.499894px;}
.x58{left:266.939887px;}
.x7a{left:268.199893px;}
.x5a{left:269.819892px;}
.x50{left:271.979891px;}
.x38{left:275.219890px;}
.x19{left:277.200047px;}
.x41{left:278.819870px;}
.x22{left:279.899888px;}
.x3d{left:281.879887px;}
.x37{left:283.139887px;}
.x48{left:286.919843px;}
.x2f{left:288.539885px;}
.x51{left:290.699884px;}
.x23{left:292.859883px;}
.x20{left:298.259617px;}
.x64{left:299.879880px;}
.x3e{left:301.679879px;}
.x7c{left:303.659879px;}
.x34{left:305.099878px;}
.x47{left:306.179888px;}
.x5b{left:308.519877px;}
.x17{left:310.860676px;}
.x5d{left:313.199875px;}
.x44{left:317.519837px;}
.x45{left:318.599836px;}
.x25{left:322.559871px;}
.x40{left:328.139869px;}
.x26{left:332.639867px;}
.x4a{left:335.159866px;}
.x56{left:338.579865px;}
.x4{left:342.719863px;}
.x72{left:346.499973px;}
.xe{left:348.119861px;}
.x1c{left:359.819856px;}
.x1f{left:361.439564px;}
.x15{left:365.580051px;}
.xa{left:369.179852px;}
.x1d{left:371.159848px;}
.x81{left:377.459849px;}
.x24{left:381.779847px;}
.x12{left:392.580399px;}
.x52{left:409.859836px;}
.xd{left:421.380373px;}
.x53{left:423.539831px;}
.x7f{left:431.819827px;}
.x5{left:433.979826px;}
.x2d{left:439.019824px;}
.x6{left:440.099824px;}
.x7e{left:443.519823px;}
.x6e{left:449.819820px;}
.x28{left:451.439812px;}
.x10{left:458.279817px;}
.x2c{left:463.319756px;}
.x68{left:467.819813px;}
.x79{left:469.979812px;}
.x69{left:475.919810px;}
.x5e{left:478.979808px;}
.x5f{left:491.759803px;}
.x2b{left:517.499777px;}
.x1a{left:520.919792px;}
.x2a{left:523.979785px;}
.x1b{left:525.959790px;}
.x83{left:534.239786px;}
.x60{left:535.859786px;}
.x61{left:545.939782px;}
.x29{left:552.959779px;}
.x27{left:565.559774px;}
.x7{left:567.719773px;}
.x2e{left:583.019767px;}
.x74{left:612.719755px;}
.x11{left:619.739752px;}
.x75{left:621.359751px;}
.x16{left:623.519751px;}
.x14{left:624.959750px;}
.x18{left:637.739745px;}
.x54{left:638.819744px;}
.x55{left:643.679743px;}
.x7b{left:647.999741px;}
.x82{left:658.079737px;}
.x66{left:661.139736px;}
.x73{left:662.579735px;}
.x77{left:664.919734px;}
.x3a{left:667.259733px;}
.x78{left:673.559731px;}
.x76{left:702.719719px;}
.x70{left:704.519718px;}
.x6a{left:717.299713px;}
.x6b{left:723.599711px;}
.x71{left:731.519707px;}
.x13{left:749.159992px;}
.x7d{left:750.959700px;}
.x3f{left:753.119699px;}
.x6f{left:763.379695px;}
@media print{
.v5{vertical-align:-47.359981pt;}
.v1{vertical-align:-31.999987pt;}
.v3{vertical-align:-12.159995pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.719994pt;}
.v4{vertical-align:26.879989pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.125237pt;}
.ls7{letter-spacing:0.245387pt;}
.ls1{letter-spacing:0.319307pt;}
.ls3{letter-spacing:0.319355pt;}
.ls8{letter-spacing:0.418351pt;}
.ls5{letter-spacing:0.442481pt;}
.ls4{letter-spacing:6.359724pt;}
.ls6{letter-spacing:97.857408pt;}
.ws14{word-spacing:-43.081007pt;}
.ws3{word-spacing:-30.137129pt;}
.ws4{word-spacing:-30.011892pt;}
.ws0{word-spacing:-16.271860pt;}
.ws9{word-spacing:-15.093061pt;}
.ws12{word-spacing:-15.085594pt;}
.ws2{word-spacing:-15.066261pt;}
.wsd{word-spacing:-15.056261pt;}
.wsf{word-spacing:-15.039994pt;}
.ws15{word-spacing:-13.861328pt;}
.ws5{word-spacing:-12.504955pt;}
.ws1{word-spacing:-10.094396pt;}
.ws7{word-spacing:-8.804316pt;}
.ws13{word-spacing:-8.799996pt;}
.wsb{word-spacing:-8.783196pt;}
.ws10{word-spacing:-8.773116pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:133.559343pt;}
.ws11{word-spacing:169.255049pt;}
.wse{word-spacing:225.095270pt;}
.wsa{word-spacing:505.355751pt;}
.ws8{word-spacing:551.328463pt;}
._17{margin-left:-280.015196pt;}
._20{margin-left:-259.381336pt;}
._18{margin-left:-249.877608pt;}
._1d{margin-left:-225.879924pt;}
._12{margin-left:-191.380297pt;}
._16{margin-left:-168.111956pt;}
._1c{margin-left:-157.236541pt;}
._2a{margin-left:-154.634605pt;}
._1f{margin-left:-153.287619pt;}
._1a{margin-left:-137.017483pt;}
._24{margin-left:-123.331303pt;}
._14{margin-left:-122.345053pt;}
._15{margin-left:-119.490666pt;}
._1b{margin-left:-118.396205pt;}
._26{margin-left:-113.280999pt;}
._13{margin-left:-102.177606pt;}
._10{margin-left:-97.995589pt;}
._f{margin-left:-81.028023pt;}
._11{margin-left:-73.333093pt;}
._25{margin-left:-44.919347pt;}
._21{margin-left:-5.110657pt;}
._2{margin-left:-1.926148pt;}
._3{margin-left:-0.899790pt;}
._0{width:0.889345pt;}
._1{width:1.989538pt;}
._8{width:3.111696pt;}
._6{width:4.591273pt;}
._7{width:5.552843pt;}
._4{width:7.113783pt;}
._5{width:8.163490pt;}
._c{width:9.726484pt;}
._a{width:10.961624pt;}
._9{width:11.861621pt;}
._b{width:12.888828pt;}
._e{width:15.490583pt;}
._d{width:16.742051pt;}
._34{width:17.956943pt;}
._2f{width:41.332130pt;}
._2c{width:57.901485pt;}
._32{width:75.550122pt;}
._23{width:76.513871pt;}
._30{width:81.434040pt;}
._28{width:88.165435pt;}
._1e{width:91.747225pt;}
._33{width:92.808243pt;}
._27{width:141.086213pt;}
._31{width:156.453722pt;}
._2b{width:158.699383pt;}
._2d{width:166.402395pt;}
._22{width:167.627512pt;}
._19{width:168.548785pt;}
._29{width:169.492666pt;}
._2e{width:779.033055pt;}
.fs11{font-size:25.064950pt;}
.fs12{font-size:25.092470pt;}
.fs17{font-size:32.542707pt;}
.fs8{font-size:34.952306pt;}
.fs10{font-size:35.092466pt;}
.fsc{font-size:35.132786pt;}
.fs14{font-size:35.199986pt;}
.fs9{font-size:35.217266pt;}
.fs4{font-size:40.377584pt;}
.fs3{font-size:42.787183pt;}
.fs0{font-size:50.019820pt;}
.fs7{font-size:55.445311pt;}
.fsf{font-size:60.159976pt;}
.fsd{font-size:60.225043pt;}
.fs5{font-size:60.265043pt;}
.fs13{font-size:60.342376pt;}
.fsa{font-size:60.372243pt;}
.fs16{font-size:63.567956pt;}
.fse{font-size:63.637310pt;}
.fs15{font-size:63.761025pt;}
.fsb{font-size:63.792488pt;}
.fs2{font-size:65.087441pt;}
.fs6{font-size:70.509838pt;}
.fs1{font-size:100.645293pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:95.679962pt;}
.y29{bottom:110.719956pt;}
.yf2{bottom:113.279955pt;}
.y107{bottom:113.439955pt;}
.ycb{bottom:117.119953pt;}
.y131{bottom:119.359952pt;}
.y80{bottom:122.719951pt;}
.y4a{bottom:123.039951pt;}
.y122{bottom:123.359951pt;}
.y28{bottom:126.559949pt;}
.y106{bottom:128.319949pt;}
.yf1{bottom:129.119948pt;}
.y145{bottom:131.519947pt;}
.yca{bottom:131.679947pt;}
.y130{bottom:134.879946pt;}
.y27{bottom:137.759945pt;}
.y7f{bottom:138.719945pt;}
.y49{bottom:141.279943pt;}
.y105{bottom:142.879943pt;}
.yf0{bottom:145.119942pt;}
.yc9{bottom:146.079942pt;}
.y144{bottom:147.359941pt;}
.y12f{bottom:148.159941pt;}
.y121{bottom:152.319939pt;}
.y7e{bottom:154.559938pt;}
.y48{bottom:156.159938pt;}
.y104{bottom:157.119937pt;}
.yc8{bottom:160.639936pt;}
.yef{bottom:160.959936pt;}
.y143{bottom:163.199935pt;}
.y120{bottom:166.719933pt;}
.y7d{bottom:168.639933pt;}
.y7c{bottom:170.559932pt;}
.y103{bottom:171.519931pt;}
.yc7{bottom:174.879930pt;}
.yee{bottom:176.799929pt;}
.y142{bottom:179.039928pt;}
.y11f{bottom:181.119928pt;}
.y102{bottom:186.079926pt;}
.y7b{bottom:186.399925pt;}
.yc6{bottom:189.439924pt;}
.yed{bottom:192.639923pt;}
.y141{bottom:194.879922pt;}
.y11e{bottom:195.519922pt;}
.y101{bottom:200.479920pt;}
.y79{bottom:203.359919pt;}
.yc5{bottom:203.839918pt;}
.y77{bottom:205.599918pt;}
.y78{bottom:206.239918pt;}
.y76{bottom:206.399917pt;}
.yec{bottom:208.479917pt;}
.y11d{bottom:210.079916pt;}
.y140{bottom:210.879916pt;}
.y7a{bottom:212.959915pt;}
.y100{bottom:214.559914pt;}
.yc4{bottom:218.239913pt;}
.y75{bottom:224.159910pt;}
.yeb{bottom:224.479910pt;}
.y74{bottom:226.079910pt;}
.y13f{bottom:226.719909pt;}
.yc3{bottom:232.799907pt;}
.y16a{bottom:235.839906pt;}
.y11c{bottom:238.879904pt;}
.yea{bottom:240.319904pt;}
.y73{bottom:241.439903pt;}
.y13e{bottom:242.559903pt;}
.yc2{bottom:245.759902pt;}
.yc1{bottom:247.679901pt;}
.y169{bottom:251.519899pt;}
.y72{bottom:256.319897pt;}
.y11b{bottom:258.239897pt;}
.y13d{bottom:262.879895pt;}
.yc0{bottom:263.519895pt;}
.y168{bottom:267.519893pt;}
.ye9{bottom:270.079892pt;}
.y71{bottom:271.359891pt;}
.ye8{bottom:271.999891pt;}
.y11a{bottom:274.559890pt;}
.y12e{bottom:276.479889pt;}
.y26{bottom:277.599889pt;}
.ybc{bottom:277.919889pt;}
.ybe{bottom:281.599887pt;}
.y13c{bottom:282.399887pt;}
.y167{bottom:283.359887pt;}
.ye7{bottom:287.839885pt;}
.y12d{bottom:287.999885pt;}
.y25{bottom:292.159883pt;}
.ybb{bottom:293.439883pt;}
.y13b{bottom:296.799881pt;}
.y166{bottom:299.199880pt;}
.ybd{bottom:301.439879pt;}
.ye6{bottom:301.919879pt;}
.ye5{bottom:303.839878pt;}
.ybf{bottom:305.279878pt;}
.y13a{bottom:307.999877pt;}
.y24{bottom:308.159877pt;}
.y165{bottom:315.199874pt;}
.ye4{bottom:319.679872pt;}
.yba{bottom:323.199871pt;}
.y23{bottom:323.839870pt;}
.y164{bottom:331.039868pt;}
.y47{bottom:334.719866pt;}
.ye3{bottom:335.679866pt;}
.yb9{bottom:337.599865pt;}
.y22{bottom:339.679864pt;}
.y163{bottom:346.879861pt;}
.ye2{bottom:351.519859pt;}
.yb8{bottom:351.679859pt;}
.y46{bottom:352.959859pt;}
.yb7{bottom:353.599859pt;}
.y21{bottom:355.679858pt;}
.y162{bottom:362.719855pt;}
.ye1{bottom:367.359853pt;}
.yb6{bottom:367.519853pt;}
.y45{bottom:368.959852pt;}
.yb5{bottom:369.439852pt;}
.y20{bottom:371.519851pt;}
.y161{bottom:378.559849pt;}
.ye0{bottom:383.199847pt;}
.y44{bottom:384.799846pt;}
.yb4{bottom:385.279846pt;}
.y1f{bottom:387.519845pt;}
.y160{bottom:394.559842pt;}
.ydf{bottom:399.039840pt;}
.yae{bottom:400.639840pt;}
.y43{bottom:400.799840pt;}
.yb0{bottom:404.319838pt;}
.y1e{bottom:407.679837pt;}
.y119{bottom:409.759836pt;}
.y15f{bottom:410.399836pt;}
.yaf{bottom:413.919834pt;}
.yde{bottom:415.039834pt;}
.yb1{bottom:417.599833pt;}
.yb3{bottom:417.759833pt;}
.y70{bottom:418.559833pt;}
.y42{bottom:420.479832pt;}
.y118{bottom:424.319830pt;}
.y12c{bottom:425.279830pt;}
.y15e{bottom:426.399829pt;}
.yb2{bottom:427.039829pt;}
.y1d{bottom:427.839829pt;}
.yff{bottom:428.639829pt;}
.ydd{bottom:430.879828pt;}
.y6f{bottom:436.959825pt;}
.y117{bottom:440.159824pt;}
.y12b{bottom:440.799824pt;}
.y41{bottom:441.279823pt;}
.y15d{bottom:442.239823pt;}
.yfe{bottom:443.519823pt;}
.yad{bottom:444.959822pt;}
.y1c{bottom:445.119822pt;}
.ydc{bottom:446.719821pt;}
.y6e{bottom:450.719820pt;}
.y6d{bottom:452.799819pt;}
.y12a{bottom:454.239818pt;}
.y116{bottom:455.999818pt;}
.yfd{bottom:457.919817pt;}
.ya7{bottom:459.359816pt;}
.y1b{bottom:462.079815pt;}
.ydb{bottom:462.719815pt;}
.yac{bottom:463.039815pt;}
.y6c{bottom:466.719813pt;}
.y40{bottom:467.679813pt;}
.y6b{bottom:468.639813pt;}
.ya9{bottom:471.039812pt;}
.y115{bottom:471.839811pt;}
.yfc{bottom:472.319811pt;}
.y15c{bottom:473.919810pt;}
.yab{bottom:474.879810pt;}
.yda{bottom:478.559809pt;}
.y1a{bottom:478.719809pt;}
.ya8{bottom:481.119808pt;}
.y6a{bottom:482.559807pt;}
.yfb{bottom:483.519807pt;}
.y69{bottom:484.479806pt;}
.yaa{bottom:484.799806pt;}
.y114{bottom:487.839805pt;}
.y139{bottom:489.279804pt;}
.y15b{bottom:489.759804pt;}
.y19{bottom:493.599803pt;}
.yd9{bottom:494.399802pt;}
.ya6{bottom:503.359799pt;}
.y113{bottom:503.679799pt;}
.y138{bottom:503.839798pt;}
.y65{bottom:505.279798pt;}
.y15a{bottom:505.759798pt;}
.y18{bottom:507.999797pt;}
.y67{bottom:509.119796pt;}
.yd8{bottom:510.239796pt;}
.y137{bottom:514.879794pt;}
.y64{bottom:517.119793pt;}
.ya5{bottom:519.199792pt;}
.y112{bottom:519.679792pt;}
.y63{bottom:520.799792pt;}
.y159{bottom:521.599791pt;}
.y17{bottom:522.559791pt;}
.yd7{bottom:526.239790pt;}
.y66{bottom:527.039789pt;}
.y68{bottom:530.879788pt;}
.ya4{bottom:533.119787pt;}
.ya3{bottom:535.199786pt;}
.y111{bottom:535.519786pt;}
.y16{bottom:536.959785pt;}
.y158{bottom:537.439785pt;}
.yd6{bottom:542.079783pt;}
.ya2{bottom:551.039780pt;}
.y15{bottom:551.359779pt;}
.y62{bottom:553.119779pt;}
.y157{bottom:553.439779pt;}
.y110{bottom:555.679778pt;}
.yd5{bottom:557.919777pt;}
.y14{bottom:565.759774pt;}
.ya1{bottom:566.719773pt;}
.y156{bottom:569.119772pt;}
.yd4{bottom:573.919770pt;}
.y10f{bottom:575.839770pt;}
.y5e{bottom:576.319769pt;}
.y60{bottom:579.999768pt;}
.y13{bottom:580.159768pt;}
.ya0{bottom:582.719767pt;}
.y155{bottom:585.119766pt;}
.y129{bottom:586.079766pt;}
.y5f{bottom:589.439764pt;}
.yd3{bottom:590.239764pt;}
.y5d{bottom:591.359763pt;}
.y10e{bottom:593.119763pt;}
.y5c{bottom:593.279763pt;}
.y12{bottom:594.719762pt;}
.y9f{bottom:598.559761pt;}
.y154{bottom:600.959760pt;}
.y128{bottom:601.599759pt;}
.y61{bottom:602.719759pt;}
.y10d{bottom:607.839757pt;}
.y11{bottom:609.119756pt;}
.y10c{bottom:609.919756pt;}
.yd2{bottom:611.359755pt;}
.y9e{bottom:612.639755pt;}
.y3f{bottom:613.119755pt;}
.y9d{bottom:614.559754pt;}
.y153{bottom:616.959753pt;}
.y127{bottom:618.719753pt;}
.y10b{bottom:623.839750pt;}
.y54{bottom:625.279750pt;}
.y9c{bottom:628.479749pt;}
.y3e{bottom:628.959748pt;}
.y58{bottom:629.119748pt;}
.y9b{bottom:630.399748pt;}
.yd1{bottom:631.039748pt;}
.y152{bottom:632.799747pt;}
.y10a{bottom:635.519746pt;}
.y10{bottom:636.159746pt;}
.y56{bottom:637.119745pt;}
.y5a{bottom:640.959739pt;}
.y59{bottom:640.959744pt;}
.y9a{bottom:644.159742pt;}
.y3d{bottom:644.799742pt;}
.y99{bottom:646.239742pt;}
.y55{bottom:647.199741pt;}
.y151{bottom:648.639741pt;}
.yd0{bottom:649.119740pt;}
.y5b{bottom:650.399740pt;}
.y57{bottom:650.879740pt;}
.y3c{bottom:660.799736pt;}
.y98{bottom:662.079735pt;}
.y150{bottom:664.639734pt;}
.ycf{bottom:667.199733pt;}
.y53{bottom:673.119731pt;}
.yfa{bottom:676.639729pt;}
.y97{bottom:677.919729pt;}
.yf{bottom:680.159728pt;}
.y14f{bottom:680.319728pt;}
.y3b{bottom:680.959728pt;}
.yce{bottom:685.119726pt;}
.y52{bottom:687.199725pt;}
.y51{bottom:689.119724pt;}
.yf9{bottom:691.039724pt;}
.y96{bottom:693.919722pt;}
.y14e{bottom:696.319721pt;}
.ycd{bottom:696.639721pt;}
.y136{bottom:698.879720pt;}
.y3a{bottom:700.639720pt;}
.y50{bottom:704.959718pt;}
.yf8{bottom:705.919718pt;}
.y95{bottom:709.759716pt;}
.y14d{bottom:712.159715pt;}
.y135{bottom:713.439715pt;}
.y39{bottom:714.559714pt;}
.yf7{bottom:720.319712pt;}
.ye{bottom:723.999710pt;}
.y4f{bottom:724.479710pt;}
.y94{bottom:725.759710pt;}
.y14c{bottom:727.999709pt;}
.y134{bottom:728.479709pt;}
.y38{bottom:729.439708pt;}
.yf6{bottom:734.719706pt;}
.yd{bottom:738.719705pt;}
.y93{bottom:741.599703pt;}
.y133{bottom:741.919703pt;}
.y4e{bottom:742.719703pt;}
.y14b{bottom:743.999702pt;}
.y37{bottom:745.279702pt;}
.yf5{bottom:745.919702pt;}
.y126{bottom:754.559698pt;}
.yc{bottom:755.999698pt;}
.y92{bottom:757.439697pt;}
.y4d{bottom:757.759697pt;}
.y14a{bottom:759.839696pt;}
.y36{bottom:761.279695pt;}
.yb{bottom:762.879695pt;}
.y125{bottom:768.959692pt;}
.ya{bottom:772.959691pt;}
.y91{bottom:773.279691pt;}
.y149{bottom:775.679690pt;}
.y35{bottom:777.119689pt;}
.y124{bottom:780.639688pt;}
.y9{bottom:787.679685pt;}
.y90{bottom:790.719684pt;}
.y148{bottom:791.519683pt;}
.y34{bottom:793.119683pt;}
.y8{bottom:794.559682pt;}
.y109{bottom:795.839682pt;}
.y108{bottom:797.759681pt;}
.y7{bottom:804.159678pt;}
.y147{bottom:807.519677pt;}
.y8f{bottom:807.839677pt;}
.y33{bottom:808.959676pt;}
.y8e{bottom:822.399671pt;}
.y32{bottom:824.799670pt;}
.y5{bottom:827.039669pt;}
.y6{bottom:834.559666pt;}
.y8d{bottom:836.319665pt;}
.y8c{bottom:838.239665pt;}
.y31{bottom:840.639664pt;}
.y146{bottom:842.079663pt;}
.y8b{bottom:854.079658pt;}
.y30{bottom:856.479657pt;}
.y85{bottom:868.479653pt;}
.y87{bottom:872.159651pt;}
.y2f{bottom:872.479651pt;}
.y4{bottom:873.599651pt;}
.y84{bottom:880.159648pt;}
.y82{bottom:883.999646pt;}
.y8a{bottom:884.159646pt;}
.y2e{bottom:888.319645pt;}
.y86{bottom:890.239644pt;}
.y89{bottom:893.439632pt;}
.y83{bottom:893.439643pt;}
.y88{bottom:893.919637pt;}
.y3{bottom:901.759639pt;}
.y2d{bottom:904.159638pt;}
.y81{bottom:912.639635pt;}
.y4c{bottom:915.199634pt;}
.y2c{bottom:920.159632pt;}
.yf4{bottom:920.959632pt;}
.y123{bottom:934.559626pt;}
.y132{bottom:935.039626pt;}
.yf3{bottom:935.679626pt;}
.y2b{bottom:935.839626pt;}
.ycc{bottom:936.799625pt;}
.y4b{bottom:937.279625pt;}
.y1{bottom:956.959617pt;}
.y2a{bottom:959.999616pt;}
.h1d{height:17.138157pt;}
.h29{height:22.389382pt;}
.h19{height:23.968154pt;}
.h14{height:23.995693pt;}
.h22{height:24.041590pt;}
.he{height:24.047187pt;}
.hf{height:24.053393pt;}
.h1f{height:24.171357pt;}
.h21{height:24.217590pt;}
.h5{height:27.779778pt;}
.h4{height:29.437582pt;}
.h7{height:31.212368pt;}
.h9{height:34.163537pt;}
.h1{height:34.413636pt;}
.ha{height:34.713755pt;}
.hd{height:38.146374pt;}
.h28{height:38.479046pt;}
.h1b{height:41.089264pt;}
.h1e{height:41.133704pt;}
.h23{height:41.213843pt;}
.h10{height:41.234242pt;}
.h27{height:41.269743pt;}
.h16{height:41.314379pt;}
.h18{height:41.390063pt;}
.h25{height:41.394870pt;}
.h11{height:41.415358pt;}
.h15{height:41.434829pt;}
.h6{height:41.462349pt;}
.h20{height:41.515555pt;}
.h13{height:41.536103pt;}
.hb{height:41.823940pt;}
.h26{height:43.607618pt;}
.h17{height:43.655194pt;}
.h24{height:43.740063pt;}
.h12{height:43.761646pt;}
.h3{height:44.780159pt;}
.h8{height:45.170684pt;}
.hc{height:48.933828pt;}
.h1c{height:51.023606pt;}
.h1a{height:55.809258pt;}
.h2{height:67.080481pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2{left:136.160141pt;}
.x6c{left:144.319942pt;}
.x67{left:149.600183pt;}
.x33{left:150.719942pt;}
.x6d{left:154.079938pt;}
.x1{left:156.639937pt;}
.x4e{left:158.719946pt;}
.xb{left:160.639936pt;}
.xc{left:168.319933pt;}
.x84{left:170.079600pt;}
.x62{left:172.479944pt;}
.x46{left:175.199930pt;}
.x3b{left:180.799928pt;}
.x35{left:182.719927pt;}
.x43{left:183.999926pt;}
.x39{left:184.959926pt;}
.x31{left:186.239896pt;}
.x32{left:188.959890pt;}
.x5c{left:190.559924pt;}
.x80{left:191.519923pt;}
.x4b{left:192.639923pt;}
.x65{left:193.599923pt;}
.x8{left:194.559922pt;}
.x30{left:197.599966pt;}
.x3{left:203.532255pt;}
.x9{left:204.479918pt;}
.xf{left:206.399917pt;}
.x4c{left:208.639917pt;}
.x21{left:211.679573pt;}
.x42{left:214.719912pt;}
.x59{left:216.959913pt;}
.x4d{left:218.399913pt;}
.x1e{left:220.319826pt;}
.x49{left:223.839910pt;}
.x3c{left:231.039908pt;}
.x57{left:231.999907pt;}
.x4f{left:233.599907pt;}
.x36{left:234.879906pt;}
.x63{left:235.999906pt;}
.x58{left:237.279900pt;}
.x7a{left:238.399905pt;}
.x5a{left:239.839904pt;}
.x50{left:241.759903pt;}
.x38{left:244.639902pt;}
.x19{left:246.400042pt;}
.x41{left:247.839885pt;}
.x22{left:248.799900pt;}
.x3d{left:250.559900pt;}
.x37{left:251.679899pt;}
.x48{left:255.039861pt;}
.x2f{left:256.479897pt;}
.x51{left:258.399897pt;}
.x23{left:260.319896pt;}
.x20{left:265.119660pt;}
.x64{left:266.559893pt;}
.x3e{left:268.159893pt;}
.x7c{left:269.919892pt;}
.x34{left:271.199892pt;}
.x47{left:272.159900pt;}
.x5b{left:274.239890pt;}
.x17{left:276.320601pt;}
.x5d{left:278.399889pt;}
.x44{left:282.239855pt;}
.x45{left:283.199854pt;}
.x25{left:286.719885pt;}
.x40{left:291.679883pt;}
.x26{left:295.679882pt;}
.x4a{left:297.919881pt;}
.x56{left:300.959880pt;}
.x4{left:304.639878pt;}
.x72{left:307.999976pt;}
.xe{left:309.439876pt;}
.x1c{left:319.839872pt;}
.x1f{left:321.279613pt;}
.x15{left:324.960046pt;}
.xa{left:328.159869pt;}
.x1d{left:329.919865pt;}
.x81{left:335.519866pt;}
.x24{left:339.359864pt;}
.x12{left:348.960355pt;}
.x52{left:364.319854pt;}
.xd{left:374.560332pt;}
.x53{left:376.479849pt;}
.x7f{left:383.839846pt;}
.x5{left:385.759846pt;}
.x2d{left:390.239844pt;}
.x6{left:391.199844pt;}
.x7e{left:394.239842pt;}
.x6e{left:399.839840pt;}
.x28{left:401.279832pt;}
.x10{left:407.359837pt;}
.x2c{left:411.839783pt;}
.x68{left:415.839834pt;}
.x79{left:417.759833pt;}
.x69{left:423.039831pt;}
.x5e{left:425.759830pt;}
.x5f{left:437.119825pt;}
.x2b{left:459.999802pt;}
.x1a{left:463.039815pt;}
.x2a{left:465.759808pt;}
.x1b{left:467.519813pt;}
.x83{left:474.879810pt;}
.x60{left:476.319809pt;}
.x61{left:485.279806pt;}
.x29{left:491.519803pt;}
.x27{left:502.719799pt;}
.x7{left:504.639798pt;}
.x2e{left:518.239793pt;}
.x74{left:544.639782pt;}
.x11{left:550.879780pt;}
.x75{left:552.319779pt;}
.x16{left:554.239778pt;}
.x14{left:555.519778pt;}
.x18{left:566.879773pt;}
.x54{left:567.839773pt;}
.x55{left:572.159771pt;}
.x7b{left:575.999770pt;}
.x82{left:584.959766pt;}
.x66{left:587.679765pt;}
.x73{left:588.959764pt;}
.x77{left:591.039764pt;}
.x3a{left:593.119763pt;}
.x78{left:598.719761pt;}
.x76{left:624.639750pt;}
.x70{left:626.239750pt;}
.x6a{left:637.599745pt;}
.x6b{left:643.199743pt;}
.x71{left:650.239740pt;}
.x13{left:665.919993pt;}
.x7d{left:667.519733pt;}
.x3f{left:669.439732pt;}
.x6f{left:678.559729pt;}
}




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