
    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_131070eba90544ad1d4f9afd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.690918;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_21d6027f94cb472d0fb879a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.271494;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_d86f2212edc764896265c32b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.271494;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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_de6012225af3503609aee430.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.271494;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_bc985be724143fa9a12693d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.271494;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_d014ec97cb44f21821300dc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.038574;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-23.760000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.224000px;}
.ls36{letter-spacing:-0.834000px;}
.ls1d{letter-spacing:-0.828000px;}
.lsf{letter-spacing:-0.804000px;}
.ls25{letter-spacing:-0.798000px;}
.ls24{letter-spacing:-0.684000px;}
.ls16{letter-spacing:-0.517200px;}
.ls2d{letter-spacing:-0.405600px;}
.lsd{letter-spacing:-0.361800px;}
.ls30{letter-spacing:-0.331200px;}
.ls38{letter-spacing:-0.282000px;}
.ls28{letter-spacing:-0.265200px;}
.ls29{letter-spacing:-0.198600px;}
.ls2b{letter-spacing:-0.190200px;}
.ls10{letter-spacing:-0.158400px;}
.ls31{letter-spacing:-0.116400px;}
.ls2c{letter-spacing:-0.112200px;}
.ls22{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.083400px;}
.ls18{letter-spacing:-0.070800px;}
.ls19{letter-spacing:-0.041040px;}
.ls1c{letter-spacing:-0.025920px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.021600px;}
.ls8{letter-spacing:0.025920px;}
.ls11{letter-spacing:0.034560px;}
.ls26{letter-spacing:0.057600px;}
.ls12{letter-spacing:0.078600px;}
.ls1{letter-spacing:0.117216px;}
.ls0{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.147000px;}
.lsa{letter-spacing:0.149760px;}
.ls39{letter-spacing:0.169800px;}
.ls14{letter-spacing:0.201000px;}
.ls15{letter-spacing:0.202800px;}
.ls20{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.224400px;}
.ls2{letter-spacing:0.266832px;}
.ls1f{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.308160px;}
.ls1e{letter-spacing:0.308400px;}
.ls37{letter-spacing:0.310800px;}
.ls2a{letter-spacing:0.324000px;}
.ls1a{letter-spacing:0.331200px;}
.ls23{letter-spacing:0.342000px;}
.ls43{letter-spacing:0.371400px;}
.lsb{letter-spacing:0.396000px;}
.ls2e{letter-spacing:0.429000px;}
.ls9{letter-spacing:0.511920px;}
.ls21{letter-spacing:0.636000px;}
.ls17{letter-spacing:0.714000px;}
.ls41{letter-spacing:6.785280px;}
.ls44{letter-spacing:8.945280px;}
.ls42{letter-spacing:10.385280px;}
.ls3{letter-spacing:11.239920px;}
.ls3b{letter-spacing:16.145280px;}
.ls3e{letter-spacing:19.025280px;}
.ls3f{letter-spacing:19.745280px;}
.ls3d{letter-spacing:20.465280px;}
.ls40{letter-spacing:23.345280px;}
.ls3c{letter-spacing:30.545280px;}
.ls4{letter-spacing:35.719920px;}
.ls35{letter-spacing:42.065280px;}
.ls34{letter-spacing:43.505280px;}
.ls3a{letter-spacing:46.385280px;}
.ls33{letter-spacing:53.585280px;}
.ls2f{letter-spacing:155.521920px;}
.ls32{letter-spacing:198.001920px;}
.ls7{letter-spacing:1627.525920px;}
.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;}
}
.ws17{word-spacing:-66.240000px;}
.ws14{word-spacing:-17.655120px;}
.ws20{word-spacing:-16.459080px;}
.ws10{word-spacing:-16.030080px;}
.ws28{word-spacing:-14.745480px;}
.ws24{word-spacing:-14.684880px;}
.ws1b{word-spacing:-14.598480px;}
.ws26{word-spacing:-14.543880px;}
.ws7{word-spacing:-14.540520px;}
.ws3{word-spacing:-14.521080px;}
.ws6{word-spacing:-14.461920px;}
.ws27{word-spacing:-14.431680px;}
.ws11{word-spacing:-14.420880px;}
.ws1{word-spacing:-14.374080px;}
.ws12{word-spacing:-14.348160px;}
.ws1d{word-spacing:-14.261880px;}
.ws2{word-spacing:-14.215680px;}
.ws1a{word-spacing:-14.175480px;}
.ws19{word-spacing:-14.108880px;}
.ws25{word-spacing:-14.092080px;}
.ws21{word-spacing:-14.042880px;}
.ws18{word-spacing:-13.576080px;}
.ws13{word-spacing:-13.546080px;}
.ws1c{word-spacing:-12.042000px;}
.wsf{word-spacing:-11.718000px;}
.ws8{word-spacing:-11.674080px;}
.wsc{word-spacing:-10.670880px;}
.wsb{word-spacing:-10.669080px;}
.ws9{word-spacing:-10.468080px;}
.wsd{word-spacing:-9.950880px;}
.wsa{word-spacing:-9.244080px;}
.ws0{word-spacing:-9.093168px;}
.ws15{word-spacing:-9.072960px;}
.ws4{word-spacing:-8.436960px;}
.ws16{word-spacing:-8.353560px;}
.ws22{word-spacing:-8.320560px;}
.ws23{word-spacing:-7.602960px;}
.ws5{word-spacing:-7.187040px;}
.wse{word-spacing:0.000000px;}
.ws1f{word-spacing:134.431296px;}
.ws1e{word-spacing:153.835680px;}
._1e{margin-left:-6.978480px;}
._4{margin-left:-5.559840px;}
._1{margin-left:-3.807360px;}
._2{margin-left:-2.782080px;}
._0{margin-left:-1.722240px;}
._3{width:1.336080px;}
._14{width:2.407440px;}
._13{width:3.585600px;}
._12{width:4.840560px;}
._18{width:6.014400px;}
._17{width:7.489440px;}
._c{width:9.102720px;}
._1a{width:10.752240px;}
._f{width:11.896800px;}
._16{width:12.934080px;}
._15{width:14.800080px;}
._1b{width:16.243920px;}
._6{width:17.717760px;}
._5{width:18.879120px;}
._1f{width:20.000640px;}
._8{width:21.238800px;}
._22{width:22.260000px;}
._7{width:23.332800px;}
._21{width:25.984320px;}
._1d{width:27.338880px;}
._1c{width:28.663200px;}
._19{width:30.836160px;}
._e{width:32.017680px;}
._24{width:33.197520px;}
._d{width:34.204800px;}
._25{width:35.578080px;}
._a{width:42.105840px;}
._b{width:43.660080px;}
._9{width:44.778240px;}
._11{width:146.838720px;}
._10{width:148.375200px;}
._23{width:150.569760px;}
._20{width:151.728000px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(56,86,35);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.120000px;}
.fs7{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs4{font-size:41.904000px;}
.fs9{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsd{font-size:54.144000px;}
.fs2{font-size:59.760000px;}
.fse{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:66.384000px;}
.fsb{font-size:69.822393px;}
.fsc{font-size:77.760000px;}
.fsa{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:1.656000px;}
.y101{bottom:2.670000px;}
.y107{bottom:3.525000px;}
.y103{bottom:3.570000px;}
.yb9{bottom:3.705000px;}
.y105{bottom:5.370000px;}
.yaf{bottom:7.170000px;}
.yfe{bottom:8.280000px;}
.ycf{bottom:18.360000px;}
.yd5{bottom:18.540000px;}
.ycc{bottom:19.620000px;}
.ycd{bottom:22.680000px;}
.y6{bottom:28.836000px;}
.y45{bottom:32.574000px;}
.yf9{bottom:36.330000px;}
.yb8{bottom:38.805000px;}
.y44{bottom:48.234000px;}
.yb1{bottom:51.450000px;}
.y4{bottom:57.420000px;}
.ybc{bottom:62.925000px;}
.y43{bottom:63.714000px;}
.yb4{bottom:64.770000px;}
.y5{bottom:73.440000px;}
.y3{bottom:76.356000px;}
.yad{bottom:77.370000px;}
.y42{bottom:79.374000px;}
.ybb{bottom:86.145000px;}
.y7{bottom:88.776000px;}
.yfa{bottom:88.950000px;}
.y41{bottom:94.854000px;}
.y39{bottom:99.396000px;}
.y142{bottom:100.836000px;}
.yde{bottom:101.016000px;}
.yab{bottom:103.896000px;}
.yff{bottom:109.050000px;}
.y40{bottom:110.514000px;}
.y9a{bottom:114.516000px;}
.y38{bottom:119.016000px;}
.y119{bottom:120.816000px;}
.yc7{bottom:122.436000px;}
.y141{bottom:123.876000px;}
.y3f{bottom:126.174000px;}
.yf7{bottom:133.956000px;}
.yaa{bottom:135.936000px;}
.y37{bottom:138.456000px;}
.y3e{bottom:141.654000px;}
.y3a{bottom:142.236000px;}
.y118{bottom:143.856000px;}
.ydd{bottom:145.116000px;}
.y89{bottom:146.736000px;}
.y140{bottom:147.096000px;}
.yc6{bottom:154.650000px;}
.y6c{bottom:154.830000px;}
.yfb{bottom:156.495000px;}
.y3d{bottom:157.314000px;}
.y36{bottom:157.890000px;}
.yf6{bottom:165.990000px;}
.y117{bottom:167.070000px;}
.ya9{bottom:168.150000px;}
.y13f{bottom:170.130000px;}
.y3c{bottom:172.794000px;}
.y35{bottom:177.330000px;}
.y88{bottom:178.950000px;}
.yc5{bottom:186.690000px;}
.y6b{bottom:187.050000px;}
.y3b{bottom:188.454000px;}
.ydc{bottom:189.390000px;}
.y116{bottom:190.110000px;}
.y13e{bottom:193.350000px;}
.y34{bottom:196.950000px;}
.yf5{bottom:198.210000px;}
.ya8{bottom:200.370000px;}
.y87{bottom:210.990000px;}
.y115{bottom:213.330000px;}
.y33{bottom:216.390000px;}
.yc4{bottom:218.910000px;}
.y6a{bottom:219.270000px;}
.yfc{bottom:224.070000px;}
.yf4{bottom:230.250000px;}
.ya7{bottom:232.410000px;}
.ydb{bottom:233.490000px;}
.y32{bottom:235.830000px;}
.y114{bottom:236.370000px;}
.y13d{bottom:239.610000px;}
.y86{bottom:243.210000px;}
.yc3{bottom:251.130000px;}
.y69{bottom:251.310000px;}
.y31{bottom:255.270000px;}
.y113{bottom:259.590000px;}
.yf3{bottom:262.470000px;}
.y13c{bottom:262.650000px;}
.ya6{bottom:264.630000px;}
.y30{bottom:274.710000px;}
.y85{bottom:275.250000px;}
.yda{bottom:277.590000px;}
.y112{bottom:282.630000px;}
.yc2{bottom:283.170000px;}
.y68{bottom:283.530000px;}
.y13b{bottom:285.870000px;}
.yfd{bottom:291.600000px;}
.y2f{bottom:294.330000px;}
.yf2{bottom:294.690000px;}
.ya5{bottom:296.670000px;}
.y111{bottom:305.850000px;}
.y84{bottom:307.470000px;}
.y13a{bottom:308.910000px;}
.yd9{bottom:309.810000px;}
.y2e{bottom:313.770000px;}
.yc1{bottom:315.390000px;}
.y67{bottom:315.570000px;}
.ya4{bottom:328.890000px;}
.y139{bottom:332.130000px;}
.y2d{bottom:333.210000px;}
.yf1{bottom:338.835000px;}
.y83{bottom:339.735000px;}
.yd8{bottom:341.895000px;}
.yc0{bottom:347.475000px;}
.y66{bottom:347.835000px;}
.y110{bottom:352.155000px;}
.y2c{bottom:352.695000px;}
.y138{bottom:355.215000px;}
.yf0{bottom:356.295000px;}
.ya3{bottom:361.155000px;}
.y82{bottom:371.775000px;}
.y2b{bottom:372.315000px;}
.yd7{bottom:374.115000px;}
.y10f{bottom:375.195000px;}
.y137{bottom:378.435000px;}
.y65{bottom:379.875000px;}
.yef{bottom:391.395000px;}
.y2a{bottom:391.755000px;}
.ya2{bottom:393.195000px;}
.y136{bottom:401.475000px;}
.y81{bottom:403.995000px;}
.y109{bottom:407.415000px;}
.y29{bottom:411.195000px;}
.y64{bottom:412.095000px;}
.yd6{bottom:418.215000px;}
.y135{bottom:424.695000px;}
.ya1{bottom:425.415000px;}
.yee{bottom:426.495000px;}
.y28{bottom:430.635000px;}
.yd4{bottom:435.675000px;}
.y99{bottom:436.035000px;}
.y10e{bottom:439.455000px;}
.y80{bottom:439.635000px;}
.y108{bottom:443.415000px;}
.y134{bottom:447.735000px;}
.y27{bottom:450.255000px;}
.y63{bottom:456.195000px;}
.ya0{bottom:457.455000px;}
.yed{bottom:462.495000px;}
.y98{bottom:468.255000px;}
.y26{bottom:469.695000px;}
.yd3{bottom:470.955000px;}
.y7f{bottom:475.455000px;}
.y10d{bottom:483.735000px;}
.y62{bottom:488.415000px;}
.y25{bottom:489.135000px;}
.y9f{bottom:489.675000px;}
.y133{bottom:493.995000px;}
.y97{bottom:500.295000px;}
.yd2{bottom:506.055000px;}
.y7e{bottom:507.675000px;}
.y24{bottom:508.575000px;}
.yec{bottom:515.055000px;}
.y10c{bottom:515.775000px;}
.y132{bottom:517.215000px;}
.y61{bottom:519.195000px;}
.y9e{bottom:521.715000px;}
.y23{bottom:528.195000px;}
.y96{bottom:532.515000px;}
.yeb{bottom:536.475000px;}
.y7d{bottom:539.895000px;}
.y131{bottom:540.255000px;}
.yd1{bottom:541.155000px;}
.y22{bottom:547.635000px;}
.y10b{bottom:547.995000px;}
.y60{bottom:548.535000px;}
.y9d{bottom:553.935000px;}
.y130{bottom:563.475000px;}
.y95{bottom:564.735000px;}
.y21{bottom:567.075000px;}
.y7c{bottom:571.935000px;}
.yd0{bottom:576.255000px;}
.yea{bottom:580.575000px;}
.y5f{bottom:582.015000px;}
.y9c{bottom:586.155000px;}
.y20{bottom:586.515000px;}
.y10a{bottom:592.095000px;}
.y94{bottom:596.775000px;}
.y7b{bottom:604.185000px;}
.y1f{bottom:605.985000px;}
.y12f{bottom:609.765000px;}
.yce{bottom:611.385000px;}
.ye9{bottom:612.825000px;}
.y5e{bottom:616.605000px;}
.y1e{bottom:625.965000px;}
.y93{bottom:629.025000px;}
.y9b{bottom:630.285000px;}
.y12e{bottom:632.805000px;}
.y7a{bottom:636.225000px;}
.y5d{bottom:637.665000px;}
.ye8{bottom:644.865000px;}
.ycb{bottom:647.205000px;}
.yba{bottom:654.660000px;}
.y1d{bottom:655.305000px;}
.y12d{bottom:656.025000px;}
.yb7{bottom:657.900000px;}
.y5c{bottom:658.725000px;}
.y92{bottom:661.065000px;}
.y79{bottom:668.445000px;}
.ye7{bottom:677.085000px;}
.y12c{bottom:679.065000px;}
.y5b{bottom:679.785000px;}
.y1c{bottom:681.585000px;}
.y91{bottom:693.285000px;}
.ybd{bottom:694.545000px;}
.y5a{bottom:700.665000px;}
.y12b{bottom:702.285000px;}
.y1b{bottom:703.545000px;}
.yca{bottom:705.705000px;}
.y1a{bottom:721.185000px;}
.y59{bottom:721.725000px;}
.y12a{bottom:725.325000px;}
.y90{bottom:725.505000px;}
.y78{bottom:732.705000px;}
.yf8{bottom:737.460000px;}
.y19{bottom:738.645000px;}
.yc9{bottom:740.805000px;}
.y58{bottom:742.785000px;}
.y129{bottom:748.365000px;}
.y18{bottom:754.305000px;}
.y8f{bottom:757.545000px;}
.y57{bottom:763.845000px;}
.y77{bottom:764.925000px;}
.ye6{bottom:765.285000px;}
.y128{bottom:771.585000px;}
.y17{bottom:772.665000px;}
.y56{bottom:784.905000px;}
.yc8{bottom:785.085000px;}
.y8e{bottom:789.765000px;}
.y16{bottom:794.085000px;}
.y127{bottom:794.625000px;}
.y76{bottom:796.965000px;}
.y55{bottom:805.785000px;}
.ye5{bottom:809.385000px;}
.y15{bottom:815.505000px;}
.y126{bottom:817.845000px;}
.yb3{bottom:819.540000px;}
.y8d{bottom:821.805000px;}
.y106{bottom:824.040000px;}
.y54{bottom:826.845000px;}
.y75{bottom:829.185000px;}
.y14{bottom:836.925000px;}
.yb6{bottom:838.005000px;}
.y125{bottom:840.885000px;}
.yb0{bottom:842.940000px;}
.y53{bottom:847.905000px;}
.ye4{bottom:853.665000px;}
.y8c{bottom:854.025000px;}
.y13{bottom:858.345000px;}
.yb5{bottom:861.225000px;}
.y74{bottom:861.405000px;}
.y124{bottom:864.105000px;}
.y52{bottom:868.965000px;}
.yb2{bottom:871.170000px;}
.y12{bottom:879.810000px;}
.y8b{bottom:886.290000px;}
.y104{bottom:887.040000px;}
.y123{bottom:887.190000px;}
.y51{bottom:890.070000px;}
.y144{bottom:892.410000px;}
.y73{bottom:893.490000px;}
.ye3{bottom:897.810000px;}
.y11{bottom:901.230000px;}
.y122{bottom:910.410000px;}
.y50{bottom:911.130000px;}
.ybf{bottom:914.910000px;}
.y8a{bottom:921.930000px;}
.y10{bottom:922.650000px;}
.y143{bottom:924.450000px;}
.y72{bottom:925.710000px;}
.y4f{bottom:932.010000px;}
.y121{bottom:933.450000px;}
.ybe{bottom:936.330000px;}
.ye2{bottom:941.910000px;}
.yf{bottom:945.510000px;}
.y4e{bottom:953.070000px;}
.y102{bottom:955.440000px;}
.y120{bottom:956.670000px;}
.y71{bottom:957.750000px;}
.ye{bottom:972.870000px;}
.y4d{bottom:974.130000px;}
.y11f{bottom:979.710000px;}
.ye1{bottom:986.010000px;}
.y70{bottom:989.970000px;}
.yac{bottom:990.180000px;}
.y4c{bottom:995.190000px;}
.yd{bottom:1000.230000px;}
.y11e{bottom:1002.930000px;}
.y4b{bottom:1016.250000px;}
.y6f{bottom:1022.010000px;}
.y100{bottom:1024.740000px;}
.y11d{bottom:1025.970000px;}
.yc{bottom:1027.410000px;}
.ye0{bottom:1030.290000px;}
.yae{bottom:1032.450000px;}
.y4a{bottom:1037.130000px;}
.y11c{bottom:1049.190000px;}
.y6e{bottom:1054.230000px;}
.yb{bottom:1054.770000px;}
.y49{bottom:1058.190000px;}
.y11b{bottom:1072.230000px;}
.ydf{bottom:1074.390000px;}
.y48{bottom:1079.250000px;}
.ya{bottom:1081.950000px;}
.y6d{bottom:1086.450000px;}
.y11a{bottom:1095.450000px;}
.y47{bottom:1098.690000px;}
.y9{bottom:1118.490000px;}
.y46{bottom:1154.520000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.480000px;}
.h1e{height:19.440000px;}
.h1f{height:20.340000px;}
.h20{height:22.140000px;}
.h18{height:35.100000px;}
.h19{height:35.136000px;}
.h1a{height:35.280000px;}
.ha{height:38.373047px;}
.h16{height:39.420000px;}
.h6{height:39.600000px;}
.h7{height:43.595156px;}
.h2{height:44.860781px;}
.hc{height:50.359922px;}
.h14{height:55.620000px;}
.h4{height:56.373047px;}
.h1c{height:56.523375px;}
.h5{height:62.386172px;}
.h1d{height:62.536500px;}
.hd{height:65.884219px;}
.h8{height:66.027445px;}
.h11{height:68.220000px;}
.h3{height:69.150937px;}
.h12{height:69.301266px;}
.hf{height:72.890759px;}
.h17{height:81.177188px;}
.h13{height:81.720000px;}
.he{height:84.935391px;}
.h9{height:87.941953px;}
.h10{height:94.140000px;}
.h15{height:103.140000px;}
.hb{height:229.890000px;}
.h1b{height:350.460000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:28.440000px;}
.w10{width:29.340000px;}
.wd{width:29.880000px;}
.wf{width:43.380000px;}
.w5{width:182.700000px;}
.w6{width:182.880000px;}
.w8{width:185.250000px;}
.w7{width:185.430000px;}
.wa{width:236.730000px;}
.wb{width:236.775000px;}
.w4{width:241.455000px;}
.w9{width:263.550000px;}
.w3{width:505.620000px;}
.wc{width:540.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:8.100000px;}
.x6{left:10.836000px;}
.x23{left:22.320000px;}
.x32{left:26.460000px;}
.x16{left:28.005000px;}
.x19{left:42.690000px;}
.x10{left:45.570000px;}
.x1a{left:50.430000px;}
.x30{left:57.030000px;}
.x29{left:64.485000px;}
.x2b{left:69.885000px;}
.x2d{left:72.945000px;}
.x12{left:74.235000px;}
.x2c{left:75.810000px;}
.x25{left:79.020000px;}
.x2a{left:80.490000px;}
.x24{left:83.880000px;}
.x22{left:86.040000px;}
.x20{left:88.590000px;}
.x2f{left:90.210000px;}
.x5{left:128.340000px;}
.x7{left:139.175987px;}
.x38{left:154.649987px;}
.xc{left:180.749987px;}
.xb{left:191.549987px;}
.x1d{left:194.790000px;}
.x2e{left:216.540000px;}
.xf{left:221.040000px;}
.x13{left:222.300000px;}
.x18{left:225.000000px;}
.x14{left:250.949987px;}
.x11{left:273.269987px;}
.x31{left:302.910000px;}
.xd{left:305.894987px;}
.x4{left:337.034987px;}
.x2{left:361.874987px;}
.x1f{left:380.235000px;}
.x27{left:391.215000px;}
.x33{left:436.680000px;}
.xe{left:450.614987px;}
.x1{left:467.924987px;}
.x1b{left:529.200000px;}
.x15{left:530.460000px;}
.x34{left:531.900000px;}
.x1c{left:540.104987px;}
.x17{left:548.924987px;}
.x36{left:562.500000px;}
.x21{left:565.485000px;}
.x9{left:609.045000px;}
.x28{left:627.945000px;}
.x35{left:638.100000px;}
.xa{left:658.949987px;}
.x26{left:795.749987px;}
.x37{left:798.449987px;}
.x3{left:801.329987px;}
.x8{left:808.169987px;}
@media print{
.v3{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-1.088000pt;}
.ls36{letter-spacing:-0.741333pt;}
.ls1d{letter-spacing:-0.736000pt;}
.lsf{letter-spacing:-0.714667pt;}
.ls25{letter-spacing:-0.709333pt;}
.ls24{letter-spacing:-0.608000pt;}
.ls16{letter-spacing:-0.459733pt;}
.ls2d{letter-spacing:-0.360533pt;}
.lsd{letter-spacing:-0.321600pt;}
.ls30{letter-spacing:-0.294400pt;}
.ls38{letter-spacing:-0.250667pt;}
.ls28{letter-spacing:-0.235733pt;}
.ls29{letter-spacing:-0.176533pt;}
.ls2b{letter-spacing:-0.169067pt;}
.ls10{letter-spacing:-0.140800pt;}
.ls31{letter-spacing:-0.103467pt;}
.ls2c{letter-spacing:-0.099733pt;}
.ls22{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.074133pt;}
.ls18{letter-spacing:-0.062933pt;}
.ls19{letter-spacing:-0.036480pt;}
.ls1c{letter-spacing:-0.023040pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.019200pt;}
.ls8{letter-spacing:0.023040pt;}
.ls11{letter-spacing:0.030720pt;}
.ls26{letter-spacing:0.051200pt;}
.ls12{letter-spacing:0.069867pt;}
.ls1{letter-spacing:0.104192pt;}
.ls0{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.130667pt;}
.lsa{letter-spacing:0.133120pt;}
.ls39{letter-spacing:0.150933pt;}
.ls14{letter-spacing:0.178667pt;}
.ls15{letter-spacing:0.180267pt;}
.ls20{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.199467pt;}
.ls2{letter-spacing:0.237184pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.273920pt;}
.ls1e{letter-spacing:0.274133pt;}
.ls37{letter-spacing:0.276267pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls1a{letter-spacing:0.294400pt;}
.ls23{letter-spacing:0.304000pt;}
.ls43{letter-spacing:0.330133pt;}
.lsb{letter-spacing:0.352000pt;}
.ls2e{letter-spacing:0.381333pt;}
.ls9{letter-spacing:0.455040pt;}
.ls21{letter-spacing:0.565333pt;}
.ls17{letter-spacing:0.634667pt;}
.ls41{letter-spacing:6.031360pt;}
.ls44{letter-spacing:7.951360pt;}
.ls42{letter-spacing:9.231360pt;}
.ls3{letter-spacing:9.991040pt;}
.ls3b{letter-spacing:14.351360pt;}
.ls3e{letter-spacing:16.911360pt;}
.ls3f{letter-spacing:17.551360pt;}
.ls3d{letter-spacing:18.191360pt;}
.ls40{letter-spacing:20.751360pt;}
.ls3c{letter-spacing:27.151360pt;}
.ls4{letter-spacing:31.751040pt;}
.ls35{letter-spacing:37.391360pt;}
.ls34{letter-spacing:38.671360pt;}
.ls3a{letter-spacing:41.231360pt;}
.ls33{letter-spacing:47.631360pt;}
.ls2f{letter-spacing:138.241707pt;}
.ls32{letter-spacing:176.001707pt;}
.ls7{letter-spacing:1446.689707pt;}
.ws17{word-spacing:-58.880000pt;}
.ws14{word-spacing:-15.693440pt;}
.ws20{word-spacing:-14.630293pt;}
.ws10{word-spacing:-14.248960pt;}
.ws28{word-spacing:-13.107093pt;}
.ws24{word-spacing:-13.053227pt;}
.ws1b{word-spacing:-12.976427pt;}
.ws26{word-spacing:-12.927893pt;}
.ws7{word-spacing:-12.924907pt;}
.ws3{word-spacing:-12.907627pt;}
.ws6{word-spacing:-12.855040pt;}
.ws27{word-spacing:-12.828160pt;}
.ws11{word-spacing:-12.818560pt;}
.ws1{word-spacing:-12.776960pt;}
.ws12{word-spacing:-12.753920pt;}
.ws1d{word-spacing:-12.677227pt;}
.ws2{word-spacing:-12.636160pt;}
.ws1a{word-spacing:-12.600427pt;}
.ws19{word-spacing:-12.541227pt;}
.ws25{word-spacing:-12.526293pt;}
.ws21{word-spacing:-12.482560pt;}
.ws18{word-spacing:-12.067627pt;}
.ws13{word-spacing:-12.040960pt;}
.ws1c{word-spacing:-10.704000pt;}
.wsf{word-spacing:-10.416000pt;}
.ws8{word-spacing:-10.376960pt;}
.wsc{word-spacing:-9.485227pt;}
.wsb{word-spacing:-9.483627pt;}
.ws9{word-spacing:-9.304960pt;}
.wsd{word-spacing:-8.845227pt;}
.wsa{word-spacing:-8.216960pt;}
.ws0{word-spacing:-8.082816pt;}
.ws15{word-spacing:-8.064853pt;}
.ws4{word-spacing:-7.499520pt;}
.ws16{word-spacing:-7.425387pt;}
.ws22{word-spacing:-7.396053pt;}
.ws23{word-spacing:-6.758187pt;}
.ws5{word-spacing:-6.388480pt;}
.wse{word-spacing:0.000000pt;}
.ws1f{word-spacing:119.494485pt;}
.ws1e{word-spacing:136.742827pt;}
._1e{margin-left:-6.203093pt;}
._4{margin-left:-4.942080pt;}
._1{margin-left:-3.384320pt;}
._2{margin-left:-2.472960pt;}
._0{margin-left:-1.530880pt;}
._3{width:1.187627pt;}
._14{width:2.139947pt;}
._13{width:3.187200pt;}
._12{width:4.302720pt;}
._18{width:5.346133pt;}
._17{width:6.657280pt;}
._c{width:8.091307pt;}
._1a{width:9.557547pt;}
._f{width:10.574933pt;}
._16{width:11.496960pt;}
._15{width:13.155627pt;}
._1b{width:14.439040pt;}
._6{width:15.749120pt;}
._5{width:16.781440pt;}
._1f{width:17.778347pt;}
._8{width:18.878933pt;}
._22{width:19.786667pt;}
._7{width:20.740267pt;}
._21{width:23.097173pt;}
._1d{width:24.301227pt;}
._1c{width:25.478400pt;}
._19{width:27.409920pt;}
._e{width:28.460160pt;}
._24{width:29.508907pt;}
._d{width:30.404267pt;}
._25{width:31.624960pt;}
._a{width:37.427413pt;}
._b{width:38.808960pt;}
._9{width:39.802880pt;}
._11{width:130.523307pt;}
._10{width:131.889067pt;}
._23{width:133.839787pt;}
._20{width:134.869333pt;}
.fs8{font-size:29.440000pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs4{font-size:37.248000pt;}
.fs9{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsd{font-size:48.128000pt;}
.fs2{font-size:53.120000pt;}
.fse{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:59.008000pt;}
.fsb{font-size:62.064349pt;}
.fsc{font-size:69.120000pt;}
.fsa{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:1.472000pt;}
.y101{bottom:2.373333pt;}
.y107{bottom:3.133333pt;}
.y103{bottom:3.173333pt;}
.yb9{bottom:3.293333pt;}
.y105{bottom:4.773333pt;}
.yaf{bottom:6.373333pt;}
.yfe{bottom:7.360000pt;}
.ycf{bottom:16.320000pt;}
.yd5{bottom:16.480000pt;}
.ycc{bottom:17.440000pt;}
.ycd{bottom:20.160000pt;}
.y6{bottom:25.632000pt;}
.y45{bottom:28.954667pt;}
.yf9{bottom:32.293333pt;}
.yb8{bottom:34.493333pt;}
.y44{bottom:42.874667pt;}
.yb1{bottom:45.733333pt;}
.y4{bottom:51.040000pt;}
.ybc{bottom:55.933333pt;}
.y43{bottom:56.634667pt;}
.yb4{bottom:57.573333pt;}
.y5{bottom:65.280000pt;}
.y3{bottom:67.872000pt;}
.yad{bottom:68.773333pt;}
.y42{bottom:70.554667pt;}
.ybb{bottom:76.573333pt;}
.y7{bottom:78.912000pt;}
.yfa{bottom:79.066667pt;}
.y41{bottom:84.314667pt;}
.y39{bottom:88.352000pt;}
.y142{bottom:89.632000pt;}
.yde{bottom:89.792000pt;}
.yab{bottom:92.352000pt;}
.yff{bottom:96.933333pt;}
.y40{bottom:98.234667pt;}
.y9a{bottom:101.792000pt;}
.y38{bottom:105.792000pt;}
.y119{bottom:107.392000pt;}
.yc7{bottom:108.832000pt;}
.y141{bottom:110.112000pt;}
.y3f{bottom:112.154667pt;}
.yf7{bottom:119.072000pt;}
.yaa{bottom:120.832000pt;}
.y37{bottom:123.072000pt;}
.y3e{bottom:125.914667pt;}
.y3a{bottom:126.432000pt;}
.y118{bottom:127.872000pt;}
.ydd{bottom:128.992000pt;}
.y89{bottom:130.432000pt;}
.y140{bottom:130.752000pt;}
.yc6{bottom:137.466667pt;}
.y6c{bottom:137.626667pt;}
.yfb{bottom:139.106667pt;}
.y3d{bottom:139.834667pt;}
.y36{bottom:140.346667pt;}
.yf6{bottom:147.546667pt;}
.y117{bottom:148.506667pt;}
.ya9{bottom:149.466667pt;}
.y13f{bottom:151.226667pt;}
.y3c{bottom:153.594667pt;}
.y35{bottom:157.626667pt;}
.y88{bottom:159.066667pt;}
.yc5{bottom:165.946667pt;}
.y6b{bottom:166.266667pt;}
.y3b{bottom:167.514667pt;}
.ydc{bottom:168.346667pt;}
.y116{bottom:168.986667pt;}
.y13e{bottom:171.866667pt;}
.y34{bottom:175.066667pt;}
.yf5{bottom:176.186667pt;}
.ya8{bottom:178.106667pt;}
.y87{bottom:187.546667pt;}
.y115{bottom:189.626667pt;}
.y33{bottom:192.346667pt;}
.yc4{bottom:194.586667pt;}
.y6a{bottom:194.906667pt;}
.yfc{bottom:199.173333pt;}
.yf4{bottom:204.666667pt;}
.ya7{bottom:206.586667pt;}
.ydb{bottom:207.546667pt;}
.y32{bottom:209.626667pt;}
.y114{bottom:210.106667pt;}
.y13d{bottom:212.986667pt;}
.y86{bottom:216.186667pt;}
.yc3{bottom:223.226667pt;}
.y69{bottom:223.386667pt;}
.y31{bottom:226.906667pt;}
.y113{bottom:230.746667pt;}
.yf3{bottom:233.306667pt;}
.y13c{bottom:233.466667pt;}
.ya6{bottom:235.226667pt;}
.y30{bottom:244.186667pt;}
.y85{bottom:244.666667pt;}
.yda{bottom:246.746667pt;}
.y112{bottom:251.226667pt;}
.yc2{bottom:251.706667pt;}
.y68{bottom:252.026667pt;}
.y13b{bottom:254.106667pt;}
.yfd{bottom:259.200000pt;}
.y2f{bottom:261.626667pt;}
.yf2{bottom:261.946667pt;}
.ya5{bottom:263.706667pt;}
.y111{bottom:271.866667pt;}
.y84{bottom:273.306667pt;}
.y13a{bottom:274.586667pt;}
.yd9{bottom:275.386667pt;}
.y2e{bottom:278.906667pt;}
.yc1{bottom:280.346667pt;}
.y67{bottom:280.506667pt;}
.ya4{bottom:292.346667pt;}
.y139{bottom:295.226667pt;}
.y2d{bottom:296.186667pt;}
.yf1{bottom:301.186667pt;}
.y83{bottom:301.986667pt;}
.yd8{bottom:303.906667pt;}
.yc0{bottom:308.866667pt;}
.y66{bottom:309.186667pt;}
.y110{bottom:313.026667pt;}
.y2c{bottom:313.506667pt;}
.y138{bottom:315.746667pt;}
.yf0{bottom:316.706667pt;}
.ya3{bottom:321.026667pt;}
.y82{bottom:330.466667pt;}
.y2b{bottom:330.946667pt;}
.yd7{bottom:332.546667pt;}
.y10f{bottom:333.506667pt;}
.y137{bottom:336.386667pt;}
.y65{bottom:337.666667pt;}
.yef{bottom:347.906667pt;}
.y2a{bottom:348.226667pt;}
.ya2{bottom:349.506667pt;}
.y136{bottom:356.866667pt;}
.y81{bottom:359.106667pt;}
.y109{bottom:362.146667pt;}
.y29{bottom:365.506667pt;}
.y64{bottom:366.306667pt;}
.yd6{bottom:371.746667pt;}
.y135{bottom:377.506667pt;}
.ya1{bottom:378.146667pt;}
.yee{bottom:379.106667pt;}
.y28{bottom:382.786667pt;}
.yd4{bottom:387.266667pt;}
.y99{bottom:387.586667pt;}
.y10e{bottom:390.626667pt;}
.y80{bottom:390.786667pt;}
.y108{bottom:394.146667pt;}
.y134{bottom:397.986667pt;}
.y27{bottom:400.226667pt;}
.y63{bottom:405.506667pt;}
.ya0{bottom:406.626667pt;}
.yed{bottom:411.106667pt;}
.y98{bottom:416.226667pt;}
.y26{bottom:417.506667pt;}
.yd3{bottom:418.626667pt;}
.y7f{bottom:422.626667pt;}
.y10d{bottom:429.986667pt;}
.y62{bottom:434.146667pt;}
.y25{bottom:434.786667pt;}
.y9f{bottom:435.266667pt;}
.y133{bottom:439.106667pt;}
.y97{bottom:444.706667pt;}
.yd2{bottom:449.826667pt;}
.y7e{bottom:451.266667pt;}
.y24{bottom:452.066667pt;}
.yec{bottom:457.826667pt;}
.y10c{bottom:458.466667pt;}
.y132{bottom:459.746667pt;}
.y61{bottom:461.506667pt;}
.y9e{bottom:463.746667pt;}
.y23{bottom:469.506667pt;}
.y96{bottom:473.346667pt;}
.yeb{bottom:476.866667pt;}
.y7d{bottom:479.906667pt;}
.y131{bottom:480.226667pt;}
.yd1{bottom:481.026667pt;}
.y22{bottom:486.786667pt;}
.y10b{bottom:487.106667pt;}
.y60{bottom:487.586667pt;}
.y9d{bottom:492.386667pt;}
.y130{bottom:500.866667pt;}
.y95{bottom:501.986667pt;}
.y21{bottom:504.066667pt;}
.y7c{bottom:508.386667pt;}
.yd0{bottom:512.226667pt;}
.yea{bottom:516.066667pt;}
.y5f{bottom:517.346667pt;}
.y9c{bottom:521.026667pt;}
.y20{bottom:521.346667pt;}
.y10a{bottom:526.306667pt;}
.y94{bottom:530.466667pt;}
.y7b{bottom:537.053333pt;}
.y1f{bottom:538.653333pt;}
.y12f{bottom:542.013333pt;}
.yce{bottom:543.453333pt;}
.ye9{bottom:544.733333pt;}
.y5e{bottom:548.093333pt;}
.y1e{bottom:556.413333pt;}
.y93{bottom:559.133333pt;}
.y9b{bottom:560.253333pt;}
.y12e{bottom:562.493333pt;}
.y7a{bottom:565.533333pt;}
.y5d{bottom:566.813333pt;}
.ye8{bottom:573.213333pt;}
.ycb{bottom:575.293333pt;}
.yba{bottom:581.920000pt;}
.y1d{bottom:582.493333pt;}
.y12d{bottom:583.133333pt;}
.yb7{bottom:584.800000pt;}
.y5c{bottom:585.533333pt;}
.y92{bottom:587.613333pt;}
.y79{bottom:594.173333pt;}
.ye7{bottom:601.853333pt;}
.y12c{bottom:603.613333pt;}
.y5b{bottom:604.253333pt;}
.y1c{bottom:605.853333pt;}
.y91{bottom:616.253333pt;}
.ybd{bottom:617.373333pt;}
.y5a{bottom:622.813333pt;}
.y12b{bottom:624.253333pt;}
.y1b{bottom:625.373333pt;}
.yca{bottom:627.293333pt;}
.y1a{bottom:641.053333pt;}
.y59{bottom:641.533333pt;}
.y12a{bottom:644.733333pt;}
.y90{bottom:644.893333pt;}
.y78{bottom:651.293333pt;}
.yf8{bottom:655.520000pt;}
.y19{bottom:656.573333pt;}
.yc9{bottom:658.493333pt;}
.y58{bottom:660.253333pt;}
.y129{bottom:665.213333pt;}
.y18{bottom:670.493333pt;}
.y8f{bottom:673.373333pt;}
.y57{bottom:678.973333pt;}
.y77{bottom:679.933333pt;}
.ye6{bottom:680.253333pt;}
.y128{bottom:685.853333pt;}
.y17{bottom:686.813333pt;}
.y56{bottom:697.693333pt;}
.yc8{bottom:697.853333pt;}
.y8e{bottom:702.013333pt;}
.y16{bottom:705.853333pt;}
.y127{bottom:706.333333pt;}
.y76{bottom:708.413333pt;}
.y55{bottom:716.253333pt;}
.ye5{bottom:719.453333pt;}
.y15{bottom:724.893333pt;}
.y126{bottom:726.973333pt;}
.yb3{bottom:728.480000pt;}
.y8d{bottom:730.493333pt;}
.y106{bottom:732.480000pt;}
.y54{bottom:734.973333pt;}
.y75{bottom:737.053333pt;}
.y14{bottom:743.933333pt;}
.yb6{bottom:744.893333pt;}
.y125{bottom:747.453333pt;}
.yb0{bottom:749.280000pt;}
.y53{bottom:753.693333pt;}
.ye4{bottom:758.813333pt;}
.y8c{bottom:759.133333pt;}
.y13{bottom:762.973333pt;}
.yb5{bottom:765.533333pt;}
.y74{bottom:765.693333pt;}
.y124{bottom:768.093333pt;}
.y52{bottom:772.413333pt;}
.yb2{bottom:774.373333pt;}
.y12{bottom:782.053333pt;}
.y8b{bottom:787.813333pt;}
.y104{bottom:788.480000pt;}
.y123{bottom:788.613333pt;}
.y51{bottom:791.173333pt;}
.y144{bottom:793.253333pt;}
.y73{bottom:794.213333pt;}
.ye3{bottom:798.053333pt;}
.y11{bottom:801.093333pt;}
.y122{bottom:809.253333pt;}
.y50{bottom:809.893333pt;}
.ybf{bottom:813.253333pt;}
.y8a{bottom:819.493333pt;}
.y10{bottom:820.133333pt;}
.y143{bottom:821.733333pt;}
.y72{bottom:822.853333pt;}
.y4f{bottom:828.453333pt;}
.y121{bottom:829.733333pt;}
.ybe{bottom:832.293333pt;}
.ye2{bottom:837.253333pt;}
.yf{bottom:840.453333pt;}
.y4e{bottom:847.173333pt;}
.y102{bottom:849.280000pt;}
.y120{bottom:850.373333pt;}
.y71{bottom:851.333333pt;}
.ye{bottom:864.773333pt;}
.y4d{bottom:865.893333pt;}
.y11f{bottom:870.853333pt;}
.ye1{bottom:876.453333pt;}
.y70{bottom:879.973333pt;}
.yac{bottom:880.160000pt;}
.y4c{bottom:884.613333pt;}
.yd{bottom:889.093333pt;}
.y11e{bottom:891.493333pt;}
.y4b{bottom:903.333333pt;}
.y6f{bottom:908.453333pt;}
.y100{bottom:910.880000pt;}
.y11d{bottom:911.973333pt;}
.yc{bottom:913.253333pt;}
.ye0{bottom:915.813333pt;}
.yae{bottom:917.733333pt;}
.y4a{bottom:921.893333pt;}
.y11c{bottom:932.613333pt;}
.y6e{bottom:937.093333pt;}
.yb{bottom:937.573333pt;}
.y49{bottom:940.613333pt;}
.y11b{bottom:953.093333pt;}
.ydf{bottom:955.013333pt;}
.y48{bottom:959.333333pt;}
.ya{bottom:961.733333pt;}
.y6d{bottom:965.733333pt;}
.y11a{bottom:973.733333pt;}
.y47{bottom:976.613333pt;}
.y9{bottom:994.213333pt;}
.y46{bottom:1026.240000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.760000pt;}
.h1e{height:17.280000pt;}
.h1f{height:18.080000pt;}
.h20{height:19.680000pt;}
.h18{height:31.200000pt;}
.h19{height:31.232000pt;}
.h1a{height:31.360000pt;}
.ha{height:34.109375pt;}
.h16{height:35.040000pt;}
.h6{height:35.200000pt;}
.h7{height:38.751250pt;}
.h2{height:39.876250pt;}
.hc{height:44.764375pt;}
.h14{height:49.440000pt;}
.h4{height:50.109375pt;}
.h1c{height:50.243000pt;}
.h5{height:55.454375pt;}
.h1d{height:55.588000pt;}
.hd{height:58.563750pt;}
.h8{height:58.691063pt;}
.h11{height:60.640000pt;}
.h3{height:61.467500pt;}
.h12{height:61.601125pt;}
.hf{height:64.791786pt;}
.h17{height:72.157500pt;}
.h13{height:72.640000pt;}
.he{height:75.498125pt;}
.h9{height:78.170625pt;}
.h10{height:83.680000pt;}
.h15{height:91.680000pt;}
.hb{height:204.346667pt;}
.h1b{height:311.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:25.280000pt;}
.w10{width:26.080000pt;}
.wd{width:26.560000pt;}
.wf{width:38.560000pt;}
.w5{width:162.400000pt;}
.w6{width:162.560000pt;}
.w8{width:164.666667pt;}
.w7{width:164.826667pt;}
.wa{width:210.426667pt;}
.wb{width:210.466667pt;}
.w4{width:214.626667pt;}
.w9{width:234.266667pt;}
.w3{width:449.440000pt;}
.wc{width:480.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:7.200000pt;}
.x6{left:9.632000pt;}
.x23{left:19.840000pt;}
.x32{left:23.520000pt;}
.x16{left:24.893333pt;}
.x19{left:37.946667pt;}
.x10{left:40.506667pt;}
.x1a{left:44.826667pt;}
.x30{left:50.693333pt;}
.x29{left:57.320000pt;}
.x2b{left:62.120000pt;}
.x2d{left:64.840000pt;}
.x12{left:65.986667pt;}
.x2c{left:67.386667pt;}
.x25{left:70.240000pt;}
.x2a{left:71.546667pt;}
.x24{left:74.560000pt;}
.x22{left:76.480000pt;}
.x20{left:78.746667pt;}
.x2f{left:80.186667pt;}
.x5{left:114.080000pt;}
.x7{left:123.711988pt;}
.x38{left:137.466655pt;}
.xc{left:160.666655pt;}
.xb{left:170.266655pt;}
.x1d{left:173.146667pt;}
.x2e{left:192.480000pt;}
.xf{left:196.480000pt;}
.x13{left:197.600000pt;}
.x18{left:200.000000pt;}
.x14{left:223.066655pt;}
.x11{left:242.906655pt;}
.x31{left:269.253333pt;}
.xd{left:271.906655pt;}
.x4{left:299.586655pt;}
.x2{left:321.666655pt;}
.x1f{left:337.986667pt;}
.x27{left:347.746667pt;}
.x33{left:388.160000pt;}
.xe{left:400.546655pt;}
.x1{left:415.933322pt;}
.x1b{left:470.400000pt;}
.x15{left:471.520000pt;}
.x34{left:472.800000pt;}
.x1c{left:480.093322pt;}
.x17{left:487.933322pt;}
.x36{left:500.000000pt;}
.x21{left:502.653333pt;}
.x9{left:541.373333pt;}
.x28{left:558.173333pt;}
.x35{left:567.200000pt;}
.xa{left:585.733322pt;}
.x26{left:707.333322pt;}
.x37{left:709.733322pt;}
.x3{left:712.293322pt;}
.x8{left:718.373322pt;}
}




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