
    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_9c18c8a8a92418c5cf0031dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969238;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_931b09169662d2d31d5812de.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.999023;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_2cbc341c8670edcfbcf33471.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740234;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_8d083dd768ea3976abc5710b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6afae0b44d41dd563e16f2a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_62b7f6cdaf0539080629ee20.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9f5a58bcb91799fec30da085.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.747070;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_403f71925f3cd93894952611.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_a8ef3fc9e7f9773e5d80c13f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.251544,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251544,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251544,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248466,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-24.480000px;}
.v3{vertical-align:-13.756274px;}
.v5{vertical-align:-9.691242px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.205177px;}
.v1{vertical-align:24.480000px;}
.ls22{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.004716px;}
.ls3{letter-spacing:0.014400px;}
.ls4{letter-spacing:0.015000px;}
.ls1e{letter-spacing:0.024270px;}
.ls20{letter-spacing:0.158688px;}
.ls21{letter-spacing:0.175392px;}
.ls38{letter-spacing:0.185328px;}
.ls0{letter-spacing:0.191760px;}
.ls44{letter-spacing:0.196440px;}
.ls50{letter-spacing:0.202464px;}
.ls51{letter-spacing:0.207792px;}
.ls31{letter-spacing:0.213120px;}
.ls52{letter-spacing:0.213840px;}
.ls2a{letter-spacing:0.218448px;}
.ls1{letter-spacing:0.231120px;}
.ls2{letter-spacing:0.231720px;}
.ls23{letter-spacing:0.233856px;}
.ls53{letter-spacing:0.237600px;}
.ls54{letter-spacing:0.242352px;}
.ls34{letter-spacing:0.245088px;}
.lsb{letter-spacing:0.261072px;}
.ls27{letter-spacing:0.271728px;}
.ls5{letter-spacing:0.273840px;}
.lsa{letter-spacing:0.274380px;}
.ls8{letter-spacing:0.274440px;}
.ls39{letter-spacing:0.275616px;}
.ls2e{letter-spacing:0.282384px;}
.ls37{letter-spacing:0.304128px;}
.ls2f{letter-spacing:0.309024px;}
.ls1f{letter-spacing:0.325728px;}
.ls33{letter-spacing:0.340992px;}
.lse{letter-spacing:0.343980px;}
.ls56{letter-spacing:0.346320px;}
.ls30{letter-spacing:0.362304px;}
.ls1d{letter-spacing:0.367632px;}
.ls26{letter-spacing:0.372960px;}
.ls2c{letter-spacing:0.383616px;}
.ls14{letter-spacing:0.394272px;}
.ls41{letter-spacing:0.394920px;}
.ls7{letter-spacing:0.399600px;}
.ls6{letter-spacing:0.404928px;}
.ls1b{letter-spacing:0.410256px;}
.lsc{letter-spacing:0.415584px;}
.ls2b{letter-spacing:0.420912px;}
.ls55{letter-spacing:0.431568px;}
.ls25{letter-spacing:0.436896px;}
.ls35{letter-spacing:0.458208px;}
.ls57{letter-spacing:0.468864px;}
.ls2d{letter-spacing:0.474192px;}
.ls32{letter-spacing:0.484848px;}
.ls4e{letter-spacing:0.490176px;}
.ls58{letter-spacing:0.500832px;}
.ls29{letter-spacing:0.527472px;}
.ls24{letter-spacing:0.538128px;}
.ls18{letter-spacing:0.542880px;}
.ls36{letter-spacing:0.543456px;}
.ls28{letter-spacing:0.602064px;}
.ls4f{letter-spacing:0.618048px;}
.ls42{letter-spacing:1.003320px;}
.ls4c{letter-spacing:1.161120px;}
.ls15{letter-spacing:2.033520px;}
.ls17{letter-spacing:2.140320px;}
.ls3d{letter-spacing:2.226120px;}
.ls3c{letter-spacing:2.226720px;}
.ls46{letter-spacing:2.292720px;}
.ls43{letter-spacing:3.848520px;}
.ls13{letter-spacing:3.943320px;}
.ls48{letter-spacing:7.230120px;}
.ls47{letter-spacing:7.231920px;}
.ls40{letter-spacing:8.232720px;}
.lsd{letter-spacing:9.751320px;}
.ls19{letter-spacing:10.116120px;}
.ls3f{letter-spacing:12.436320px;}
.ls11{letter-spacing:12.504120px;}
.ls12{letter-spacing:13.222920px;}
.lsf{letter-spacing:14.620380px;}
.ls10{letter-spacing:14.646660px;}
.ls1c{letter-spacing:16.354920px;}
.ls3e{letter-spacing:20.008320px;}
.ls9{letter-spacing:21.858120px;}
.ls4d{letter-spacing:23.109120px;}
.ls49{letter-spacing:25.144920px;}
.ls3a{letter-spacing:28.313880px;}
.ls16{letter-spacing:36.575520px;}
.ls4a{letter-spacing:43.488120px;}
.ls3b{letter-spacing:45.041700px;}
.ls4b{letter-spacing:59.988120px;}
.ls45{letter-spacing:72.828840px;}
.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;}
}
.ws21{word-spacing:-16.655328px;}
.ws3{word-spacing:-16.639344px;}
.ws0{word-spacing:-16.575408px;}
.ws4{word-spacing:-16.564752px;}
.ws24{word-spacing:-16.538112px;}
.ws7{word-spacing:-16.511472px;}
.ws1{word-spacing:-16.474176px;}
.ws23{word-spacing:-16.468848px;}
.wsa{word-spacing:-16.452864px;}
.ws8{word-spacing:-16.447536px;}
.ws5{word-spacing:-16.436880px;}
.ws6{word-spacing:-16.420896px;}
.ws2{word-spacing:-16.410240px;}
.ws10{word-spacing:-16.404912px;}
.wsc{word-spacing:-16.399584px;}
.ws25{word-spacing:-16.383600px;}
.wsd{word-spacing:-16.378272px;}
.ws22{word-spacing:-16.346304px;}
.ws9{word-spacing:-16.319664px;}
.wsf{word-spacing:-16.309008px;}
.ws16{word-spacing:-16.298352px;}
.wse{word-spacing:-16.282368px;}
.wsb{word-spacing:-16.255728px;}
.ws17{word-spacing:-16.250400px;}
.ws20{word-spacing:-14.545872px;}
.ws1f{word-spacing:-14.517360px;}
.ws1e{word-spacing:-14.488848px;}
.ws15{word-spacing:-11.484492px;}
.ws14{word-spacing:-8.207891px;}
.ws13{word-spacing:-8.203176px;}
.ws18{word-spacing:-8.090190px;}
.ws19{word-spacing:-1.464576px;}
.ws1b{word-spacing:-0.028312px;}
.ws1a{word-spacing:0.000000px;}
.ws11{word-spacing:12.437509px;}
.ws12{word-spacing:12.443256px;}
.ws1c{word-spacing:45.085119px;}
.ws1d{word-spacing:101.043909px;}
._1e{margin-left:-386.390990px;}
._1{margin-left:-1.004040px;}
._0{width:1.016160px;}
._8{width:2.184480px;}
._9{width:3.238560px;}
._d{width:4.582080px;}
._c{width:5.914080px;}
._1d{width:7.338432px;}
._7{width:8.637288px;}
._6{width:9.750240px;}
._5{width:11.131680px;}
._a{width:12.360960px;}
._b{width:13.746240px;}
._f{width:14.926908px;}
._17{width:17.742480px;}
._18{width:19.026000px;}
._3{width:20.049360px;}
._2{width:21.189360px;}
._25{width:22.713960px;}
._e{width:23.729040px;}
._13{width:24.879072px;}
._11{width:25.894080px;}
._10{width:26.959680px;}
._20{width:28.227960px;}
._21{width:29.996640px;}
._12{width:31.008960px;}
._1a{width:32.196708px;}
._19{width:33.626724px;}
._1f{width:35.004960px;}
._1c{width:36.869760px;}
._14{width:38.148480px;}
._15{width:39.571776px;}
._4{width:41.786820px;}
._24{width:43.209420px;}
._23{width:44.368980px;}
._28{width:46.433088px;}
._27{width:47.521920px;}
._1b{width:53.730204px;}
._26{width:54.747876px;}
._22{width:87.216376px;}
._16{width:756.230256px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:19.410595px;}
.fsa{font-size:24.251112px;}
.fs5{font-size:27.554488px;}
.fsd{font-size:28.311527px;}
.fs9{font-size:29.101402px;}
.fs3{font-size:29.507826px;}
.fs2{font-size:36.000000px;}
.fsc{font-size:38.563597px;}
.fs4{font-size:41.311121px;}
.fs7{font-size:46.922629px;}
.fs6{font-size:47.212345px;}
.fs8{font-size:47.520000px;}
.fs1{font-size:53.280000px;}
.fs0{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.ybb{bottom:13.821449px;}
.y1{bottom:17.430000px;}
.y59{bottom:20.750566px;}
.y4d{bottom:25.029185px;}
.y70{bottom:30.610790px;}
.y6f{bottom:39.341366px;}
.y56{bottom:49.683440px;}
.y50{bottom:52.854911px;}
.y55{bottom:58.536211px;}
.y72{bottom:60.755143px;}
.y5a{bottom:63.145651px;}
.y6a{bottom:67.285252px;}
.y6d{bottom:74.724065px;}
.yba{bottom:77.272632px;}
.y3e{bottom:81.015060px;}
.y6b{bottom:81.034248px;}
.y8d{bottom:83.895045px;}
.y6e{bottom:89.971458px;}
.y54{bottom:91.506571px;}
.yb9{bottom:91.819707px;}
.y4f{bottom:94.678057px;}
.y8c{bottom:95.055060px;}
.y3d{bottom:96.495060px;}
.y53{bottom:100.357872px;}
.ybf{bottom:109.095060px;}
.y3c{bottom:112.335045px;}
.y62{bottom:112.485045px;}
.ye9{bottom:114.135060px;}
.yb8{bottom:115.396229px;}
.y57{bottom:115.588887px;}
.y71{bottom:117.468253px;}
.ybe{bottom:123.135060px;}
.y3b{bottom:127.815045px;}
.y49{bottom:128.135077px;}
.y73{bottom:129.031270px;}
.ye8{bottom:129.615060px;}
.y52{bottom:134.164842px;}
.y4e{bottom:136.499718px;}
.ybd{bottom:137.175000px;}
.y51{bottom:143.017613px;}
.y3a{bottom:143.655000px;}
.ye7{bottom:145.455000px;}
.yb6{bottom:149.394384px;}
.y69{bottom:149.428796px;}
.ybc{bottom:157.335000px;}
.y39{bottom:159.495000px;}
.ye6{bottom:160.935000px;}
.y6c{bottom:170.418431px;}
.yb2{bottom:174.765000px;}
.y38{bottom:174.975000px;}
.y88{bottom:182.188093px;}
.y4c{bottom:183.510109px;}
.ye5{bottom:185.775000px;}
.y4a{bottom:186.685991px;}
.y58{bottom:188.700323px;}
.y87{bottom:190.924712px;}
.y4b{bottom:192.361410px;}
.yb5{bottom:194.784037px;}
.y37{bottom:199.815000px;}
.ye4{bottom:201.255000px;}
.y80{bottom:203.286482px;}
.y36{bottom:215.295000px;}
.y86{bottom:216.566625px;}
.yb7{bottom:221.349505px;}
.y85{bottom:225.291160px;}
.ye3{bottom:226.095000px;}
.y35{bottom:231.135000px;}
.yb4{bottom:239.679942px;}
.y34{bottom:246.615000px;}
.y84{bottom:250.933073px;}
.ye2{bottom:250.935000px;}
.y83{bottom:259.669691px;}
.y33{bottom:262.455000px;}
.ye1{bottom:266.415000px;}
.y32{bottom:277.935000px;}
.ye0{bottom:282.255000px;}
.yb3{bottom:285.069595px;}
.y82{bottom:285.311605px;}
.y7b{bottom:289.299273px;}
.y31{bottom:293.775000px;}
.y81{bottom:294.036140px;}
.ydf{bottom:297.735000px;}
.y7a{bottom:298.023808px;}
.y76{bottom:304.947849px;}
.y79{bottom:306.748342px;}
.y30{bottom:309.255000px;}
.y78{bottom:315.484960px;}
.y8b{bottom:318.518004px;}
.yde{bottom:322.575000px;}
.y2f{bottom:325.095000px;}
.y74{bottom:326.795437px;}
.y8a{bottom:328.148827px;}
.ydd{bottom:338.055000px;}
.y2e{bottom:340.935000px;}
.y75{bottom:341.573976px;}
.y63{bottom:343.640313px;}
.y89{bottom:344.002828px;}
.y68{bottom:353.017375px;}
.ydc{bottom:353.895000px;}
.y2d{bottom:356.415000px;}
.y7f{bottom:361.476065px;}
.y67{bottom:361.753993px;}
.y64{bottom:364.944127px;}
.ydb{bottom:369.375000px;}
.y7e{bottom:370.200599px;}
.y77{bottom:371.481486px;}
.y2c{bottom:372.255000px;}
.y66{bottom:377.426737px;}
.y7d{bottom:378.937217px;}
.yda{bottom:385.215000px;}
.y65{bottom:386.151271px;}
.y7c{bottom:387.661751px;}
.y2b{bottom:387.735000px;}
.yd9{bottom:400.695000px;}
.y2a{bottom:403.575000px;}
.yd8{bottom:416.535000px;}
.y29{bottom:428.055000px;}
.yd7{bottom:441.375000px;}
.y28{bottom:452.895000px;}
.yd6{bottom:456.855000px;}
.y27{bottom:468.375000px;}
.yd5{bottom:472.695000px;}
.yb1{bottom:481.695000px;}
.y26{bottom:484.215000px;}
.yd4{bottom:497.175000px;}
.y25{bottom:499.695000px;}
.yb0{bottom:506.175000px;}
.yd3{bottom:513.015000px;}
.y24{bottom:515.535000px;}
.yaf{bottom:522.015000px;}
.y61{bottom:522.375000px;}
.yd2{bottom:528.495000px;}
.y23{bottom:531.015000px;}
.yae{bottom:537.495000px;}
.y60{bottom:537.855000px;}
.yd1{bottom:544.335000px;}
.y22{bottom:546.855000px;}
.yad{bottom:553.335000px;}
.y5f{bottom:553.695000px;}
.y21{bottom:562.695000px;}
.yac{bottom:568.815000px;}
.y5e{bottom:569.175000px;}
.y20{bottom:578.175000px;}
.yab{bottom:584.655000px;}
.y5d{bottom:585.015000px;}
.y1f{bottom:594.015000px;}
.yaa{bottom:600.135000px;}
.yd0{bottom:609.135000px;}
.y1e{bottom:609.495000px;}
.ya9{bottom:615.975000px;}
.y5c{bottom:623.175000px;}
.y1d{bottom:625.335000px;}
.ya8{bottom:631.455000px;}
.ycf{bottom:633.975000px;}
.y1c{bottom:640.815000px;}
.y5b{bottom:643.695000px;}
.ya7{bottom:647.295000px;}
.yce{bottom:649.455000px;}
.y1b{bottom:656.655000px;}
.y48{bottom:661.125000px;}
.ya6{bottom:663.135000px;}
.ycd{bottom:665.295000px;}
.y1a{bottom:672.135000px;}
.ycc{bottom:681.135000px;}
.ya5{bottom:687.615000px;}
.y19{bottom:687.975000px;}
.ycb{bottom:696.615000px;}
.y18{bottom:703.455000px;}
.yca{bottom:712.455000px;}
.ya4{bottom:718.935000px;}
.y17{bottom:719.295000px;}
.yc9{bottom:727.935000px;}
.ya3{bottom:734.775000px;}
.y16{bottom:735.135000px;}
.yc8{bottom:743.775000px;}
.y15{bottom:750.615000px;}
.ya2{bottom:759.255000px;}
.ya1{bottom:775.095000px;}
.y14{bottom:775.455000px;}
.ya0{bottom:790.575000px;}
.y13{bottom:799.935000px;}
.y9f{bottom:806.415000px;}
.yc7{bottom:815.415000px;}
.y12{bottom:815.775000px;}
.y9e{bottom:830.895000px;}
.y11{bottom:831.255000px;}
.y9d{bottom:846.735000px;}
.y10{bottom:847.095000px;}
.yf{bottom:862.575000px;}
.y47{bottom:865.095000px;}
.y9c{bottom:878.055150px;}
.ye{bottom:878.415000px;}
.y46{bottom:880.575000px;}
.yd{bottom:893.895000px;}
.y45{bottom:896.415000px;}
.y9b{bottom:909.375000px;}
.yc{bottom:909.735000px;}
.y44{bottom:911.895000px;}
.yb{bottom:925.215150px;}
.y43{bottom:927.735000px;}
.y9a{bottom:934.215150px;}
.yc6{bottom:940.695000px;}
.ya{bottom:941.055150px;}
.y42{bottom:943.215150px;}
.y99{bottom:949.695000px;}
.yc5{bottom:956.535000px;}
.y9{bottom:956.895000px;}
.y41{bottom:959.055150px;}
.y98{bottom:965.535000px;}
.yc4{bottom:972.015000px;}
.y40{bottom:974.895000px;}
.y97{bottom:981.015000px;}
.y8{bottom:981.375000px;}
.yc3{bottom:987.855000px;}
.y3f{bottom:990.375000px;}
.yc2{bottom:1003.335000px;}
.y96{bottom:1005.855000px;}
.y95{bottom:1021.335000px;}
.yc1{bottom:1028.175000px;}
.y7{bottom:1030.335000px;}
.y94{bottom:1037.175000px;}
.yc0{bottom:1043.655000px;}
.y6{bottom:1045.815000px;}
.y93{bottom:1052.655000px;}
.y5{bottom:1064.535000px;}
.y92{bottom:1068.495000px;}
.y4{bottom:1080.015000px;}
.y91{bottom:1084.335000px;}
.y90{bottom:1099.815000px;}
.y3{bottom:1106.655000px;}
.y8f{bottom:1115.655000px;}
.y2{bottom:1131.135000px;}
.y8e{bottom:1146.975000px;}
.h11{height:17.667314px;}
.h14{height:20.625389px;}
.hf{height:21.200826px;}
.h8{height:21.482504px;}
.h9{height:21.496912px;}
.h10{height:21.872491px;}
.h12{height:28.094183px;}
.h5{height:28.441406px;}
.ha{height:30.095797px;}
.hc{height:34.183869px;}
.hb{height:34.394931px;}
.hd{height:37.542656px;}
.h6{height:39.803906px;}
.h4{height:42.093281px;}
.h3{height:52.921406px;}
.h2{height:62.395313px;}
.h7{height:209.520000px;}
.h13{height:312.120000px;}
.he{height:415.080000px;}
.h1{height:1227.975000px;}
.h0{height:1263.000000px;}
.w4{width:193.320000px;}
.w3{width:264.960000px;}
.w2{width:313.560000px;}
.w1{width:858.045000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:9.049050px;}
.x1{left:17.430000px;}
.xd{left:20.739122px;}
.x24{left:26.234671px;}
.x25{left:27.837740px;}
.x2f{left:28.894717px;}
.x26{left:36.681839px;}
.x19{left:38.075602px;}
.x32{left:40.125814px;}
.x16{left:50.428304px;}
.x15{left:58.107305px;}
.x10{left:64.434369px;}
.x8{left:68.400150px;}
.x34{left:71.315654px;}
.x29{left:73.430221px;}
.x1f{left:77.760321px;}
.x2a{left:83.905228px;}
.x1d{left:85.151375px;}
.x1e{left:86.401163px;}
.x31{left:88.088590px;}
.x33{left:90.339576px;}
.x2b{left:92.445639px;}
.x2d{left:95.400150px;}
.xc{left:100.270020px;}
.xe{left:103.755968px;}
.x22{left:106.452237px;}
.x27{left:109.867668px;}
.x18{left:126.793653px;}
.x1c{left:135.141708px;}
.x21{left:136.315275px;}
.x11{left:137.423198px;}
.x23{left:143.828525px;}
.x20{left:145.316657px;}
.x30{left:148.776941px;}
.x2e{left:156.750000px;}
.x28{left:160.185874px;}
.x1b{left:163.500899px;}
.x12{left:177.036261px;}
.x6{left:178.159800px;}
.x3{left:188.710350px;}
.x2{left:201.594300px;}
.x7{left:225.221850px;}
.x1a{left:232.354208px;}
.x5{left:233.683650px;}
.x4{left:235.315050px;}
.xb{left:253.645001px;}
.xf{left:277.699321px;}
.x35{left:332.397600px;}
.x9{left:456.480150px;}
.x36{left:483.480150px;}
.xa{left:484.710000px;}
.x37{left:488.355150px;}
.x38{left:492.480150px;}
.x14{left:508.830000px;}
.x2c{left:756.333600px;}
.x13{left:780.594300px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v3{vertical-align:-12.227799pt;}
.v5{vertical-align:-8.614437pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:3.737935pt;}
.v1{vertical-align:21.760000pt;}
.ls22{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.004192pt;}
.ls3{letter-spacing:0.012800pt;}
.ls4{letter-spacing:0.013333pt;}
.ls1e{letter-spacing:0.021574pt;}
.ls20{letter-spacing:0.141056pt;}
.ls21{letter-spacing:0.155904pt;}
.ls38{letter-spacing:0.164736pt;}
.ls0{letter-spacing:0.170453pt;}
.ls44{letter-spacing:0.174613pt;}
.ls50{letter-spacing:0.179968pt;}
.ls51{letter-spacing:0.184704pt;}
.ls31{letter-spacing:0.189440pt;}
.ls52{letter-spacing:0.190080pt;}
.ls2a{letter-spacing:0.194176pt;}
.ls1{letter-spacing:0.205440pt;}
.ls2{letter-spacing:0.205973pt;}
.ls23{letter-spacing:0.207872pt;}
.ls53{letter-spacing:0.211200pt;}
.ls54{letter-spacing:0.215424pt;}
.ls34{letter-spacing:0.217856pt;}
.lsb{letter-spacing:0.232064pt;}
.ls27{letter-spacing:0.241536pt;}
.ls5{letter-spacing:0.243413pt;}
.lsa{letter-spacing:0.243893pt;}
.ls8{letter-spacing:0.243947pt;}
.ls39{letter-spacing:0.244992pt;}
.ls2e{letter-spacing:0.251008pt;}
.ls37{letter-spacing:0.270336pt;}
.ls2f{letter-spacing:0.274688pt;}
.ls1f{letter-spacing:0.289536pt;}
.ls33{letter-spacing:0.303104pt;}
.lse{letter-spacing:0.305760pt;}
.ls56{letter-spacing:0.307840pt;}
.ls30{letter-spacing:0.322048pt;}
.ls1d{letter-spacing:0.326784pt;}
.ls26{letter-spacing:0.331520pt;}
.ls2c{letter-spacing:0.340992pt;}
.ls14{letter-spacing:0.350464pt;}
.ls41{letter-spacing:0.351040pt;}
.ls7{letter-spacing:0.355200pt;}
.ls6{letter-spacing:0.359936pt;}
.ls1b{letter-spacing:0.364672pt;}
.lsc{letter-spacing:0.369408pt;}
.ls2b{letter-spacing:0.374144pt;}
.ls55{letter-spacing:0.383616pt;}
.ls25{letter-spacing:0.388352pt;}
.ls35{letter-spacing:0.407296pt;}
.ls57{letter-spacing:0.416768pt;}
.ls2d{letter-spacing:0.421504pt;}
.ls32{letter-spacing:0.430976pt;}
.ls4e{letter-spacing:0.435712pt;}
.ls58{letter-spacing:0.445184pt;}
.ls29{letter-spacing:0.468864pt;}
.ls24{letter-spacing:0.478336pt;}
.ls18{letter-spacing:0.482560pt;}
.ls36{letter-spacing:0.483072pt;}
.ls28{letter-spacing:0.535168pt;}
.ls4f{letter-spacing:0.549376pt;}
.ls42{letter-spacing:0.891840pt;}
.ls4c{letter-spacing:1.032107pt;}
.ls15{letter-spacing:1.807573pt;}
.ls17{letter-spacing:1.902507pt;}
.ls3d{letter-spacing:1.978773pt;}
.ls3c{letter-spacing:1.979307pt;}
.ls46{letter-spacing:2.037973pt;}
.ls43{letter-spacing:3.420907pt;}
.ls13{letter-spacing:3.505173pt;}
.ls48{letter-spacing:6.426773pt;}
.ls47{letter-spacing:6.428373pt;}
.ls40{letter-spacing:7.317973pt;}
.lsd{letter-spacing:8.667840pt;}
.ls19{letter-spacing:8.992107pt;}
.ls3f{letter-spacing:11.054507pt;}
.ls11{letter-spacing:11.114773pt;}
.ls12{letter-spacing:11.753707pt;}
.lsf{letter-spacing:12.995893pt;}
.ls10{letter-spacing:13.019253pt;}
.ls1c{letter-spacing:14.537707pt;}
.ls3e{letter-spacing:17.785173pt;}
.ls9{letter-spacing:19.429440pt;}
.ls4d{letter-spacing:20.541440pt;}
.ls49{letter-spacing:22.351040pt;}
.ls3a{letter-spacing:25.167893pt;}
.ls16{letter-spacing:32.511573pt;}
.ls4a{letter-spacing:38.656107pt;}
.ls3b{letter-spacing:40.037067pt;}
.ls4b{letter-spacing:53.322773pt;}
.ls45{letter-spacing:64.736747pt;}
.ws21{word-spacing:-14.804736pt;}
.ws3{word-spacing:-14.790528pt;}
.ws0{word-spacing:-14.733696pt;}
.ws4{word-spacing:-14.724224pt;}
.ws24{word-spacing:-14.700544pt;}
.ws7{word-spacing:-14.676864pt;}
.ws1{word-spacing:-14.643712pt;}
.ws23{word-spacing:-14.638976pt;}
.wsa{word-spacing:-14.624768pt;}
.ws8{word-spacing:-14.620032pt;}
.ws5{word-spacing:-14.610560pt;}
.ws6{word-spacing:-14.596352pt;}
.ws2{word-spacing:-14.586880pt;}
.ws10{word-spacing:-14.582144pt;}
.wsc{word-spacing:-14.577408pt;}
.ws25{word-spacing:-14.563200pt;}
.wsd{word-spacing:-14.558464pt;}
.ws22{word-spacing:-14.530048pt;}
.ws9{word-spacing:-14.506368pt;}
.wsf{word-spacing:-14.496896pt;}
.ws16{word-spacing:-14.487424pt;}
.wse{word-spacing:-14.473216pt;}
.wsb{word-spacing:-14.449536pt;}
.ws17{word-spacing:-14.444800pt;}
.ws20{word-spacing:-12.929664pt;}
.ws1f{word-spacing:-12.904320pt;}
.ws1e{word-spacing:-12.878976pt;}
.ws15{word-spacing:-10.208437pt;}
.ws14{word-spacing:-7.295903pt;}
.ws13{word-spacing:-7.291712pt;}
.ws18{word-spacing:-7.191280pt;}
.ws19{word-spacing:-1.301845pt;}
.ws1b{word-spacing:-0.025166pt;}
.ws1a{word-spacing:0.000000pt;}
.ws11{word-spacing:11.055563pt;}
.ws12{word-spacing:11.060672pt;}
.ws1c{word-spacing:40.075661pt;}
.ws1d{word-spacing:89.816808pt;}
._1e{margin-left:-343.458658pt;}
._1{margin-left:-0.892480pt;}
._0{width:0.903253pt;}
._8{width:1.941760pt;}
._9{width:2.878720pt;}
._d{width:4.072960pt;}
._c{width:5.256960pt;}
._1d{width:6.523051pt;}
._7{width:7.677589pt;}
._6{width:8.666880pt;}
._5{width:9.894827pt;}
._a{width:10.987520pt;}
._b{width:12.218880pt;}
._f{width:13.268363pt;}
._17{width:15.771093pt;}
._18{width:16.912000pt;}
._3{width:17.821653pt;}
._2{width:18.834987pt;}
._25{width:20.190187pt;}
._e{width:21.092480pt;}
._13{width:22.114731pt;}
._11{width:23.016960pt;}
._10{width:23.964160pt;}
._20{width:25.091520pt;}
._21{width:26.663680pt;}
._12{width:27.563520pt;}
._1a{width:28.619296pt;}
._19{width:29.890421pt;}
._1f{width:31.115520pt;}
._1c{width:32.773120pt;}
._14{width:33.909760pt;}
._15{width:35.174912pt;}
._4{width:37.143840pt;}
._24{width:38.408373pt;}
._23{width:39.439093pt;}
._28{width:41.273856pt;}
._27{width:42.241707pt;}
._1b{width:47.760181pt;}
._26{width:48.664779pt;}
._22{width:77.525668pt;}
._16{width:672.204672pt;}
.fsb{font-size:17.253862pt;}
.fsa{font-size:21.556544pt;}
.fs5{font-size:24.492878pt;}
.fsd{font-size:25.165801pt;}
.fs9{font-size:25.867913pt;}
.fs3{font-size:26.229178pt;}
.fs2{font-size:32.000000pt;}
.fsc{font-size:34.278753pt;}
.fs4{font-size:36.720996pt;}
.fs7{font-size:41.709004pt;}
.fs6{font-size:41.966528pt;}
.fs8{font-size:42.240000pt;}
.fs1{font-size:47.360000pt;}
.fs0{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.ybb{bottom:12.285733pt;}
.y1{bottom:15.493333pt;}
.y59{bottom:18.444948pt;}
.y4d{bottom:22.248164pt;}
.y70{bottom:27.209591pt;}
.y6f{bottom:34.970103pt;}
.y56{bottom:44.163057pt;}
.y50{bottom:46.982143pt;}
.y55{bottom:52.032187pt;}
.y72{bottom:54.004572pt;}
.y5a{bottom:56.129467pt;}
.y6a{bottom:59.809113pt;}
.y6d{bottom:66.421391pt;}
.yba{bottom:68.686784pt;}
.y3e{bottom:72.013387pt;}
.y6b{bottom:72.030442pt;}
.y8d{bottom:74.573373pt;}
.y6e{bottom:79.974629pt;}
.y54{bottom:81.339174pt;}
.yb9{bottom:81.617517pt;}
.y4f{bottom:84.158273pt;}
.y8c{bottom:84.493387pt;}
.y3d{bottom:85.773387pt;}
.y53{bottom:89.206997pt;}
.ybf{bottom:96.973387pt;}
.y3c{bottom:99.853373pt;}
.y62{bottom:99.986707pt;}
.ye9{bottom:101.453387pt;}
.yb8{bottom:102.574425pt;}
.y57{bottom:102.745678pt;}
.y71{bottom:104.416225pt;}
.ybe{bottom:109.453387pt;}
.y3b{bottom:113.613373pt;}
.y49{bottom:113.897846pt;}
.y73{bottom:114.694462pt;}
.ye8{bottom:115.213387pt;}
.y52{bottom:119.257637pt;}
.y4e{bottom:121.333083pt;}
.ybd{bottom:121.933333pt;}
.y51{bottom:127.126767pt;}
.y3a{bottom:127.693333pt;}
.ye7{bottom:129.293333pt;}
.yb6{bottom:132.795008pt;}
.y69{bottom:132.825597pt;}
.ybc{bottom:139.853333pt;}
.y39{bottom:141.773333pt;}
.ye6{bottom:143.053333pt;}
.y6c{bottom:151.483050pt;}
.yb2{bottom:155.346667pt;}
.y38{bottom:155.533333pt;}
.y88{bottom:161.944972pt;}
.y4c{bottom:163.120097pt;}
.ye5{bottom:165.133333pt;}
.y4a{bottom:165.943103pt;}
.y58{bottom:167.733621pt;}
.y87{bottom:169.710855pt;}
.y4b{bottom:170.987920pt;}
.yb5{bottom:173.141366pt;}
.y37{bottom:177.613333pt;}
.ye4{bottom:178.893333pt;}
.y80{bottom:180.699095pt;}
.y36{bottom:191.373333pt;}
.y86{bottom:192.503667pt;}
.yb7{bottom:196.755115pt;}
.y85{bottom:200.258809pt;}
.ye3{bottom:200.973333pt;}
.y35{bottom:205.453333pt;}
.yb4{bottom:213.048837pt;}
.y34{bottom:219.213333pt;}
.y84{bottom:223.051621pt;}
.ye2{bottom:223.053333pt;}
.y83{bottom:230.817504pt;}
.y33{bottom:233.293333pt;}
.ye1{bottom:236.813333pt;}
.y32{bottom:247.053333pt;}
.ye0{bottom:250.893333pt;}
.yb3{bottom:253.395196pt;}
.y82{bottom:253.610316pt;}
.y7b{bottom:257.154910pt;}
.y31{bottom:261.133333pt;}
.y81{bottom:261.365457pt;}
.ydf{bottom:264.653333pt;}
.y7a{bottom:264.910051pt;}
.y76{bottom:271.064755pt;}
.y79{bottom:272.665193pt;}
.y30{bottom:274.893333pt;}
.y78{bottom:280.431076pt;}
.y8b{bottom:283.127115pt;}
.yde{bottom:286.733333pt;}
.y2f{bottom:288.973333pt;}
.y74{bottom:290.484833pt;}
.y8a{bottom:291.687846pt;}
.ydd{bottom:300.493333pt;}
.y2e{bottom:303.053333pt;}
.y75{bottom:303.621312pt;}
.y63{bottom:305.458056pt;}
.y89{bottom:305.780292pt;}
.y68{bottom:313.793222pt;}
.ydc{bottom:314.573333pt;}
.y2d{bottom:316.813333pt;}
.y7f{bottom:321.312057pt;}
.y67{bottom:321.559105pt;}
.y64{bottom:324.394780pt;}
.ydb{bottom:328.333333pt;}
.y7e{bottom:329.067199pt;}
.y77{bottom:330.205765pt;}
.y2c{bottom:330.893333pt;}
.y66{bottom:335.490433pt;}
.y7d{bottom:336.833082pt;}
.yda{bottom:342.413333pt;}
.y65{bottom:343.245574pt;}
.y7c{bottom:344.588223pt;}
.y2b{bottom:344.653333pt;}
.yd9{bottom:356.173333pt;}
.y2a{bottom:358.733333pt;}
.yd8{bottom:370.253333pt;}
.y29{bottom:380.493333pt;}
.yd7{bottom:392.333333pt;}
.y28{bottom:402.573333pt;}
.yd6{bottom:406.093333pt;}
.y27{bottom:416.333333pt;}
.yd5{bottom:420.173333pt;}
.yb1{bottom:428.173333pt;}
.y26{bottom:430.413333pt;}
.yd4{bottom:441.933333pt;}
.y25{bottom:444.173333pt;}
.yb0{bottom:449.933333pt;}
.yd3{bottom:456.013333pt;}
.y24{bottom:458.253333pt;}
.yaf{bottom:464.013333pt;}
.y61{bottom:464.333333pt;}
.yd2{bottom:469.773333pt;}
.y23{bottom:472.013333pt;}
.yae{bottom:477.773333pt;}
.y60{bottom:478.093333pt;}
.yd1{bottom:483.853333pt;}
.y22{bottom:486.093333pt;}
.yad{bottom:491.853333pt;}
.y5f{bottom:492.173333pt;}
.y21{bottom:500.173333pt;}
.yac{bottom:505.613333pt;}
.y5e{bottom:505.933333pt;}
.y20{bottom:513.933333pt;}
.yab{bottom:519.693333pt;}
.y5d{bottom:520.013333pt;}
.y1f{bottom:528.013333pt;}
.yaa{bottom:533.453333pt;}
.yd0{bottom:541.453333pt;}
.y1e{bottom:541.773333pt;}
.ya9{bottom:547.533333pt;}
.y5c{bottom:553.933333pt;}
.y1d{bottom:555.853333pt;}
.ya8{bottom:561.293333pt;}
.ycf{bottom:563.533333pt;}
.y1c{bottom:569.613333pt;}
.y5b{bottom:572.173333pt;}
.ya7{bottom:575.373333pt;}
.yce{bottom:577.293333pt;}
.y1b{bottom:583.693333pt;}
.y48{bottom:587.666667pt;}
.ya6{bottom:589.453333pt;}
.ycd{bottom:591.373333pt;}
.y1a{bottom:597.453333pt;}
.ycc{bottom:605.453333pt;}
.ya5{bottom:611.213333pt;}
.y19{bottom:611.533333pt;}
.ycb{bottom:619.213333pt;}
.y18{bottom:625.293333pt;}
.yca{bottom:633.293333pt;}
.ya4{bottom:639.053333pt;}
.y17{bottom:639.373333pt;}
.yc9{bottom:647.053333pt;}
.ya3{bottom:653.133333pt;}
.y16{bottom:653.453333pt;}
.yc8{bottom:661.133333pt;}
.y15{bottom:667.213333pt;}
.ya2{bottom:674.893333pt;}
.ya1{bottom:688.973333pt;}
.y14{bottom:689.293333pt;}
.ya0{bottom:702.733333pt;}
.y13{bottom:711.053333pt;}
.y9f{bottom:716.813333pt;}
.yc7{bottom:724.813333pt;}
.y12{bottom:725.133333pt;}
.y9e{bottom:738.573333pt;}
.y11{bottom:738.893333pt;}
.y9d{bottom:752.653333pt;}
.y10{bottom:752.973333pt;}
.yf{bottom:766.733333pt;}
.y47{bottom:768.973333pt;}
.y9c{bottom:780.493467pt;}
.ye{bottom:780.813333pt;}
.y46{bottom:782.733333pt;}
.yd{bottom:794.573333pt;}
.y45{bottom:796.813333pt;}
.y9b{bottom:808.333333pt;}
.yc{bottom:808.653333pt;}
.y44{bottom:810.573333pt;}
.yb{bottom:822.413467pt;}
.y43{bottom:824.653333pt;}
.y9a{bottom:830.413467pt;}
.yc6{bottom:836.173333pt;}
.ya{bottom:836.493467pt;}
.y42{bottom:838.413467pt;}
.y99{bottom:844.173333pt;}
.yc5{bottom:850.253333pt;}
.y9{bottom:850.573333pt;}
.y41{bottom:852.493467pt;}
.y98{bottom:858.253333pt;}
.yc4{bottom:864.013333pt;}
.y40{bottom:866.573333pt;}
.y97{bottom:872.013333pt;}
.y8{bottom:872.333333pt;}
.yc3{bottom:878.093333pt;}
.y3f{bottom:880.333333pt;}
.yc2{bottom:891.853333pt;}
.y96{bottom:894.093333pt;}
.y95{bottom:907.853333pt;}
.yc1{bottom:913.933333pt;}
.y7{bottom:915.853333pt;}
.y94{bottom:921.933333pt;}
.yc0{bottom:927.693333pt;}
.y6{bottom:929.613333pt;}
.y93{bottom:935.693333pt;}
.y5{bottom:946.253333pt;}
.y92{bottom:949.773333pt;}
.y4{bottom:960.013333pt;}
.y91{bottom:963.853333pt;}
.y90{bottom:977.613333pt;}
.y3{bottom:983.693333pt;}
.y8f{bottom:991.693333pt;}
.y2{bottom:1005.453333pt;}
.y8e{bottom:1019.533333pt;}
.h11{height:15.704279pt;}
.h14{height:18.333680pt;}
.hf{height:18.845179pt;}
.h8{height:19.095559pt;}
.h9{height:19.108366pt;}
.h10{height:19.442214pt;}
.h12{height:24.972607pt;}
.h5{height:25.281250pt;}
.ha{height:26.751819pt;}
.hc{height:30.385661pt;}
.hb{height:30.573272pt;}
.hd{height:33.371250pt;}
.h6{height:35.381250pt;}
.h4{height:37.416250pt;}
.h3{height:47.041250pt;}
.h2{height:55.462500pt;}
.h7{height:186.240000pt;}
.h13{height:277.440000pt;}
.he{height:368.960000pt;}
.h1{height:1091.533333pt;}
.h0{height:1122.666667pt;}
.w4{width:171.840000pt;}
.w3{width:235.520000pt;}
.w2{width:278.720000pt;}
.w1{width:762.706667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:8.043600pt;}
.x1{left:15.493333pt;}
.xd{left:18.434775pt;}
.x24{left:23.319708pt;}
.x25{left:24.744658pt;}
.x2f{left:25.684193pt;}
.x26{left:32.606079pt;}
.x19{left:33.844979pt;}
.x32{left:35.667390pt;}
.x16{left:44.825159pt;}
.x15{left:51.650938pt;}
.x10{left:57.274994pt;}
.x8{left:60.800133pt;}
.x34{left:63.391692pt;}
.x29{left:65.271308pt;}
.x1f{left:69.120285pt;}
.x2a{left:74.582425pt;}
.x1d{left:75.690111pt;}
.x1e{left:76.801034pt;}
.x31{left:78.300969pt;}
.x33{left:80.301845pt;}
.x2b{left:82.173902pt;}
.x2d{left:84.800133pt;}
.xc{left:89.128907pt;}
.xe{left:92.227527pt;}
.x22{left:94.624210pt;}
.x27{left:97.660149pt;}
.x18{left:112.705469pt;}
.x1c{left:120.125963pt;}
.x21{left:121.169134pt;}
.x11{left:122.153954pt;}
.x23{left:127.847578pt;}
.x20{left:129.170362pt;}
.x30{left:132.246169pt;}
.x2e{left:139.333333pt;}
.x28{left:142.387444pt;}
.x1b{left:145.334133pt;}
.x12{left:157.365566pt;}
.x6{left:158.364267pt;}
.x3{left:167.742533pt;}
.x2{left:179.194933pt;}
.x7{left:200.197200pt;}
.x1a{left:206.537074pt;}
.x5{left:207.718800pt;}
.x4{left:209.168933pt;}
.xb{left:225.462223pt;}
.xf{left:246.843841pt;}
.x35{left:295.464533pt;}
.x9{left:405.760133pt;}
.x36{left:429.760133pt;}
.xa{left:430.853333pt;}
.x37{left:434.093467pt;}
.x38{left:437.760133pt;}
.x14{left:452.293333pt;}
.x2c{left:672.296533pt;}
.x13{left:693.861600pt;}
}




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