
    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_c6fc5f5bf82871363f16bffa.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_dc0812415cc9c2b9e9d409bf.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_89625c567a2e35ad88231335.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0612b180c9bdbd32454b4cd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.034180;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_40b72e19aab4dba9a843260c.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_1a92a24dbcec8c6bc95284af.woff2')format("woff");}.ff7{font-family:ff7;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: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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-33.540000px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls33{letter-spacing:-2.124000px;}
.ls1b{letter-spacing:-1.494000px;}
.ls21{letter-spacing:-1.260000px;}
.ls34{letter-spacing:-1.242000px;}
.ls13{letter-spacing:-1.224000px;}
.lsd{letter-spacing:-0.539400px;}
.ls2b{letter-spacing:-0.522000px;}
.ls16{letter-spacing:-0.517200px;}
.ls2e{letter-spacing:-0.411600px;}
.ls18{letter-spacing:-0.334200px;}
.ls1a{letter-spacing:-0.328200px;}
.ls10{letter-spacing:-0.324000px;}
.ls11{letter-spacing:-0.306000px;}
.ls3d{letter-spacing:-0.288000px;}
.ls20{letter-spacing:-0.237600px;}
.lsf{letter-spacing:-0.234000px;}
.ls3e{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.192000px;}
.lse{letter-spacing:-0.158400px;}
.ls12{letter-spacing:-0.135600px;}
.ls26{letter-spacing:-0.072000px;}
.ls2c{letter-spacing:-0.046080px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.025920px;}
.ls17{letter-spacing:0.037440px;}
.ls24{letter-spacing:0.063360px;}
.ls2d{letter-spacing:0.086400px;}
.ls1e{letter-spacing:0.105600px;}
.ls2{letter-spacing:0.147000px;}
.ls9{letter-spacing:0.149760px;}
.ls30{letter-spacing:0.180600px;}
.ls32{letter-spacing:0.186600px;}
.ls2f{letter-spacing:0.195000px;}
.ls29{letter-spacing:0.198000px;}
.ls14{letter-spacing:0.201000px;}
.ls15{letter-spacing:0.202800px;}
.ls19{letter-spacing:0.214800px;}
.ls35{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.246000px;}
.ls2a{letter-spacing:0.253440px;}
.ls28{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.298080px;}
.ls23{letter-spacing:0.302400px;}
.ls25{letter-spacing:0.312480px;}
.lsc{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.336960px;}
.ls27{letter-spacing:0.337200px;}
.ls22{letter-spacing:0.354240px;}
.ls7{letter-spacing:0.356400px;}
.ls8{letter-spacing:0.396000px;}
.ls6{letter-spacing:0.402480px;}
.ls43{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.774000px;}
.ls1{letter-spacing:27.799920px;}
.ls0{letter-spacing:29.239920px;}
.ls42{letter-spacing:100.944000px;}
.ls3b{letter-spacing:111.744000px;}
.ls40{letter-spacing:114.624000px;}
.ls3f{letter-spacing:116.064000px;}
.ls41{letter-spacing:118.944000px;}
.ls3c{letter-spacing:126.864000px;}
.ls39{letter-spacing:139.824000px;}
.ls38{letter-spacing:141.264000px;}
.ls37{letter-spacing:141.984000px;}
.ls3a{letter-spacing:144.144000px;}
.ls36{letter-spacing:152.784000px;}
.ls4{letter-spacing:2707.681920px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws2{word-spacing:-18.280080px;}
.ws1b{word-spacing:-17.424000px;}
.ws2a{word-spacing:-16.056000px;}
.ws21{word-spacing:-16.030080px;}
.ws20{word-spacing:-15.912000px;}
.ws27{word-spacing:-15.840000px;}
.ws1e{word-spacing:-15.624000px;}
.ws29{word-spacing:-15.408000px;}
.ws28{word-spacing:-15.336000px;}
.ws6{word-spacing:-14.521080px;}
.ws9{word-spacing:-14.461920px;}
.ws22{word-spacing:-14.460480px;}
.ws4{word-spacing:-14.374080px;}
.ws5{word-spacing:-14.215680px;}
.ws23{word-spacing:-12.999168px;}
.ws1a{word-spacing:-12.967920px;}
.wsb{word-spacing:-12.832320px;}
.ws17{word-spacing:-12.775920px;}
.ws18{word-spacing:-12.730320px;}
.ws1{word-spacing:-12.428520px;}
.ws0{word-spacing:-12.042000px;}
.ws1d{word-spacing:-11.916000px;}
.ws8{word-spacing:-11.718000px;}
.ws19{word-spacing:-11.707920px;}
.wsd{word-spacing:-11.674080px;}
.ws1f{word-spacing:-11.196000px;}
.ws10{word-spacing:-10.670880px;}
.wsf{word-spacing:-10.669080px;}
.ws26{word-spacing:-10.476000px;}
.wsc{word-spacing:-10.468080px;}
.ws11{word-spacing:-9.950880px;}
.ws1c{word-spacing:-9.399120px;}
.ws13{word-spacing:-9.276720px;}
.wse{word-spacing:-9.244080px;}
.ws14{word-spacing:-9.061920px;}
.ws12{word-spacing:-8.727720px;}
.ws3{word-spacing:-8.436960px;}
.ws15{word-spacing:-7.567920px;}
.ws7{word-spacing:-7.187040px;}
.ws25{word-spacing:-6.937920px;}
.ws16{word-spacing:0.000000px;}
.ws24{word-spacing:176.076720px;}
._21{margin-left:-7.083120px;}
._6{margin-left:-5.325120px;}
._1{margin-left:-3.807360px;}
._2{margin-left:-2.782080px;}
._0{margin-left:-1.722240px;}
._3{width:1.336080px;}
._13{width:2.569680px;}
._12{width:4.003920px;}
._14{width:5.177760px;}
._16{width:7.051680px;}
._f{width:8.067600px;}
._10{width:9.322560px;}
._15{width:10.421520px;}
._11{width:11.712960px;}
._e{width:12.950160px;}
._17{width:14.380800px;}
._1b{width:15.584880px;}
._d{width:16.641600px;}
._4{width:18.535920px;}
._19{width:20.244960px;}
._18{width:21.509760px;}
._1e{width:22.590720px;}
._20{width:24.184320px;}
._a{width:25.711680px;}
._8{width:26.963280px;}
._9{width:28.019520px;}
._1a{width:29.230560px;}
._24{width:30.269280px;}
._1d{width:36.530160px;}
._1c{width:37.584000px;}
._23{width:70.266480px;}
._22{width:71.418240px;}
._c{width:74.351280px;}
._b{width:76.025280px;}
._7{width:85.808640px;}
._5{width:86.894400px;}
._1f{width:171.576000px;}
.fc5{color:transparent;}
.fc4{color:rgb(56,86,35);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:33.120000px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y44{bottom:7.020000px;}
.yc0{bottom:14.010000px;}
.y95{bottom:18.360000px;}
.y96{bottom:18.405000px;}
.yc9{bottom:18.540000px;}
.y98{bottom:18.900000px;}
.y43{bottom:20.700000px;}
.y40{bottom:32.574000px;}
.ybf{bottom:33.480000px;}
.y93{bottom:35.865000px;}
.yc4{bottom:36.360000px;}
.y3f{bottom:48.234000px;}
.ybe{bottom:52.950000px;}
.yc8{bottom:53.685000px;}
.y4{bottom:57.420000px;}
.y3e{bottom:63.894000px;}
.ybd{bottom:72.465000px;}
.y42{bottom:73.656000px;}
.y3{bottom:76.356000px;}
.y3d{bottom:79.374000px;}
.yb4{bottom:93.420000px;}
.y3c{bottom:95.034000px;}
.yde{bottom:96.696000px;}
.y87{bottom:99.936000px;}
.y34{bottom:100.116000px;}
.yac{bottom:100.476000px;}
.y3b{bottom:110.514000px;}
.yf2{bottom:111.636000px;}
.y33{bottom:119.556000px;}
.y9d{bottom:124.956000px;}
.y6b{bottom:125.496000px;}
.y3a{bottom:126.174000px;}
.yb1{bottom:129.750000px;}
.ydd{bottom:131.616000px;}
.yb5{bottom:132.810000px;}
.y86{bottom:135.036000px;}
.y32{bottom:138.996000px;}
.y39{bottom:141.834000px;}
.yae{bottom:142.305000px;}
.y35{bottom:143.136000px;}
.yab{bottom:144.576000px;}
.y38{bottom:157.314000px;}
.y31{bottom:158.430000px;}
.y9c{bottom:159.870000px;}
.y6a{bottom:160.410000px;}
.ydc{bottom:166.710000px;}
.y85{bottom:170.130000px;}
.yb6{bottom:172.155000px;}
.y37{bottom:172.974000px;}
.yaa{bottom:176.790000px;}
.y30{bottom:178.050000px;}
.yf1{bottom:181.830000px;}
.y36{bottom:188.454000px;}
.yb0{bottom:192.570000px;}
.y9b{bottom:194.970000px;}
.y69{bottom:195.510000px;}
.y2f{bottom:197.490000px;}
.ydb{bottom:201.810000px;}
.yb2{bottom:205.125000px;}
.y84{bottom:205.230000px;}
.ya9{bottom:208.830000px;}
.yb7{bottom:211.530000px;}
.y2e{bottom:216.930000px;}
.yf0{bottom:228.630000px;}
.y68{bottom:230.610000px;}
.yaf{bottom:234.435000px;}
.y2d{bottom:236.370000px;}
.yda{bottom:236.910000px;}
.y83{bottom:240.330000px;}
.y9a{bottom:240.510000px;}
.ya8{bottom:241.050000px;}
.yb8{bottom:250.890000px;}
.yef{bottom:252.030000px;}
.y2c{bottom:255.810000px;}
.y99{bottom:258.150000px;}
.y67{bottom:265.710000px;}
.yd9{bottom:272.010000px;}
.ya7{bottom:273.090000px;}
.yfc{bottom:275.070000px;}
.y82{bottom:275.250000px;}
.y2b{bottom:275.430000px;}
.yb9{bottom:290.265000px;}
.y97{bottom:293.250000px;}
.y2a{bottom:294.870000px;}
.yee{bottom:298.650000px;}
.y66{bottom:300.810000px;}
.ya6{bottom:305.310000px;}
.yd8{bottom:306.930000px;}
.yfb{bottom:310.170000px;}
.y81{bottom:310.350000px;}
.y29{bottom:314.310000px;}
.yed{bottom:322.050000px;}
.y92{bottom:329.610000px;}
.yfa{bottom:333.570000px;}
.y28{bottom:333.750000px;}
.y65{bottom:335.910000px;}
.yd7{bottom:342.075000px;}
.y80{bottom:345.495000px;}
.ya5{bottom:349.455000px;}
.y27{bottom:353.415000px;}
.y94{bottom:365.475000px;}
.yec{bottom:368.895000px;}
.yba{bottom:369.000000px;}
.y64{bottom:370.875000px;}
.y26{bottom:372.855000px;}
.yd6{bottom:377.175000px;}
.y7f{bottom:380.595000px;}
.ya4{bottom:381.675000px;}
.y25{bottom:392.295000px;}
.y63{bottom:405.975000px;}
.ybb{bottom:408.345000px;}
.y24{bottom:411.735000px;}
.yd5{bottom:412.275000px;}
.ya3{bottom:413.715000px;}
.yb3{bottom:414.510000px;}
.y7e{bottom:415.695000px;}
.y91{bottom:428.835000px;}
.y23{bottom:431.355000px;}
.yeb{bottom:439.095000px;}
.y62{bottom:441.075000px;}
.ya2{bottom:445.935000px;}
.yd4{bottom:447.375000px;}
.ybc{bottom:447.735000px;}
.y22{bottom:450.795000px;}
.y90{bottom:460.875000px;}
.yea{bottom:462.495000px;}
.y21{bottom:470.235000px;}
.y61{bottom:476.175000px;}
.ya1{bottom:478.155000px;}
.yd3{bottom:482.475000px;}
.y7d{bottom:485.715000px;}
.ye9{bottom:485.895000px;}
.y20{bottom:489.675000px;}
.y8f{bottom:493.095000px;}
.ye8{bottom:509.115000px;}
.y1f{bottom:509.295000px;}
.ya0{bottom:510.195000px;}
.y60{bottom:511.275000px;}
.yd2{bottom:517.395000px;}
.y7c{bottom:520.815000px;}
.y8e{bottom:526.755000px;}
.y1e{bottom:528.735000px;}
.ye7{bottom:532.515000px;}
.y5f{bottom:546.195000px;}
.y1d{bottom:548.175000px;}
.yd1{bottom:552.495000px;}
.y9f{bottom:554.295000px;}
.y7b{bottom:555.915000px;}
.y8d{bottom:561.855000px;}
.y1c{bottom:567.615000px;}
.y5e{bottom:578.595000px;}
.ye6{bottom:579.315000px;}
.y9e{bottom:582.735000px;}
.yad{bottom:583.920000px;}
.y1b{bottom:587.055000px;}
.yd0{bottom:587.595000px;}
.y7a{bottom:591.015000px;}
.y8c{bottom:596.775000px;}
.y5d{bottom:598.035000px;}
.ye5{bottom:602.715000px;}
.y1a{bottom:606.705000px;}
.ycf{bottom:622.725000px;}
.y79{bottom:626.145000px;}
.y19{bottom:626.505000px;}
.y5c{bottom:631.185000px;}
.y8b{bottom:631.905000px;}
.ye4{bottom:649.545000px;}
.y5b{bottom:650.625000px;}
.y18{bottom:655.845000px;}
.yce{bottom:657.825000px;}
.y78{bottom:661.245000px;}
.y8a{bottom:667.005000px;}
.y5a{bottom:670.065000px;}
.ye3{bottom:672.945000px;}
.y17{bottom:677.805000px;}
.y59{bottom:689.505000px;}
.ycd{bottom:692.925000px;}
.y16{bottom:695.445000px;}
.y77{bottom:696.165000px;}
.y89{bottom:700.665000px;}
.y58{bottom:708.945000px;}
.y15{bottom:712.905000px;}
.ye2{bottom:719.565000px;}
.ycc{bottom:726.405000px;}
.y14{bottom:728.565000px;}
.y76{bottom:731.265000px;}
.y88{bottom:732.705000px;}
.ye1{bottom:742.965000px;}
.y57{bottom:748.005000px;}
.y13{bottom:750.165000px;}
.ycb{bottom:759.885000px;}
.y75{bottom:766.365000px;}
.y56{bottom:767.445000px;}
.y12{bottom:774.825000px;}
.yca{bottom:781.305000px;}
.y55{bottom:786.885000px;}
.ye0{bottom:789.765000px;}
.y11{bottom:799.485000px;}
.y74{bottom:801.465000px;}
.y54{bottom:806.505000px;}
.ydf{bottom:813.165000px;}
.y10{bottom:824.145000px;}
.y53{bottom:825.945000px;}
.yc7{bottom:834.585000px;}
.y73{bottom:836.565000px;}
.y52{bottom:845.385000px;}
.yf{bottom:848.805000px;}
.yf9{bottom:859.965000px;}
.y51{bottom:864.825000px;}
.y72{bottom:871.530000px;}
.ye{bottom:873.510000px;}
.yf8{bottom:883.410000px;}
.y50{bottom:884.490000px;}
.yd{bottom:898.170000px;}
.y4f{bottom:903.930000px;}
.yc6{bottom:905.010000px;}
.y71{bottom:906.630000px;}
.yc{bottom:922.650000px;}
.y4e{bottom:923.370000px;}
.yf7{bottom:930.030000px;}
.yc3{bottom:941.550000px;}
.y70{bottom:941.730000px;}
.y4d{bottom:942.810000px;}
.yb{bottom:945.510000px;}
.yf6{bottom:953.430000px;}
.y4c{bottom:962.430000px;}
.ya{bottom:972.870000px;}
.y6f{bottom:976.830000px;}
.yc5{bottom:978.270000px;}
.y4b{bottom:981.870000px;}
.y9{bottom:1000.230000px;}
.y4a{bottom:1001.310000px;}
.y6e{bottom:1011.930000px;}
.y49{bottom:1020.750000px;}
.yf5{bottom:1023.630000px;}
.y8{bottom:1027.410000px;}
.y48{bottom:1040.190000px;}
.yc2{bottom:1042.170000px;}
.y6d{bottom:1047.030000px;}
.y7{bottom:1054.770000px;}
.y47{bottom:1059.810000px;}
.yf4{bottom:1070.430000px;}
.yc1{bottom:1074.390000px;}
.y46{bottom:1079.250000px;}
.y6{bottom:1081.950000px;}
.yf3{bottom:1093.650000px;}
.y45{bottom:1098.690000px;}
.y6c{bottom:1117.050000px;}
.y5{bottom:1118.490000px;}
.y41{bottom:1167.300000px;}
.y2{bottom:1173.960000px;}
.y1{bottom:1194.480000px;}
.hf{height:35.100000px;}
.h10{height:35.136000px;}
.ha{height:35.460000px;}
.h11{height:35.640000px;}
.h7{height:38.373047px;}
.hb{height:43.595156px;}
.h2{height:44.860781px;}
.h9{height:50.359922px;}
.h4{height:56.373047px;}
.h5{height:62.386172px;}
.h13{height:62.536500px;}
.hc{height:65.884219px;}
.h3{height:69.150937px;}
.h15{height:70.416000px;}
.he{height:70.956000px;}
.h14{height:71.820000px;}
.hd{height:75.164062px;}
.h6{height:87.941953px;}
.h8{height:229.890000px;}
.h12{height:469.260000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:101.376000px;}
.w7{width:104.760000px;}
.wd{width:106.236000px;}
.w11{width:114.876000px;}
.w9{width:121.680000px;}
.w13{width:125.496000px;}
.w12{width:125.640000px;}
.wb{width:133.056000px;}
.wa{width:134.676000px;}
.w5{width:138.060000px;}
.wf{width:219.630000px;}
.w3{width:241.635000px;}
.w10{width:251.130000px;}
.w6{width:267.735000px;}
.we{width:470.775000px;}
.w4{width:654.765000px;}
.wc{width:669.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4a{left:8.100000px;}
.x11{left:9.180000px;}
.x8{left:10.800000px;}
.x29{left:12.528000px;}
.x1a{left:15.300000px;}
.x19{left:16.920000px;}
.x13{left:18.540000px;}
.x15{left:20.340000px;}
.x1c{left:21.600000px;}
.x49{left:23.580000px;}
.x18{left:25.020000px;}
.x1d{left:26.640000px;}
.x1e{left:29.160000px;}
.x48{left:30.420000px;}
.x16{left:32.580000px;}
.x1f{left:34.740000px;}
.x1b{left:36.360000px;}
.x45{left:44.280000px;}
.xd{left:45.900000px;}
.x43{left:53.100000px;}
.x47{left:57.420000px;}
.x2a{left:61.890000px;}
.x2b{left:66.885000px;}
.x22{left:78.630000px;}
.x42{left:94.500000px;}
.xc{left:101.016000px;}
.xf{left:109.125000px;}
.x6{left:127.655987px;}
.x2c{left:136.980000px;}
.x23{left:149.580000px;}
.x4b{left:154.649987px;}
.x3f{left:179.310000px;}
.xa{left:180.749987px;}
.x21{left:191.549987px;}
.x4c{left:207.569987px;}
.x2e{left:212.610000px;}
.x2d{left:215.355000px;}
.x2f{left:218.160000px;}
.x24{left:228.855000px;}
.xe{left:239.070000px;}
.x40{left:285.555000px;}
.x33{left:286.635000px;}
.x32{left:287.715000px;}
.x30{left:290.490000px;}
.x25{left:299.805000px;}
.x31{left:303.045000px;}
.x4{left:333.254987px;}
.x2{left:361.874987px;}
.x35{left:363.630000px;}
.x36{left:365.370000px;}
.x34{left:369.825000px;}
.x17{left:373.755000px;}
.x26{left:379.230000px;}
.x44{left:390.315000px;}
.x39{left:433.875000px;}
.x38{left:438.765000px;}
.x37{left:444.960000px;}
.x27{left:450.570000px;}
.x1{left:467.924987px;}
.x41{left:505.185000px;}
.x10{left:506.805000px;}
.x3b{left:513.870000px;}
.x3a{left:515.850000px;}
.x3e{left:584.070000px;}
.x3d{left:588.960000px;}
.x3c{left:590.940000px;}
.x28{left:598.065000px;}
.x12{left:611.565000px;}
.x7{left:620.745000px;}
.x46{left:630.825000px;}
.x9{left:658.769987px;}
.x14{left:712.950000px;}
.xb{left:793.769987px;}
.x3{left:796.469987px;}
.x20{left:798.269987px;}
.x5{left:808.169987px;}
@media print{
.v4{vertical-align:-29.813333pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls33{letter-spacing:-1.888000pt;}
.ls1b{letter-spacing:-1.328000pt;}
.ls21{letter-spacing:-1.120000pt;}
.ls34{letter-spacing:-1.104000pt;}
.ls13{letter-spacing:-1.088000pt;}
.lsd{letter-spacing:-0.479467pt;}
.ls2b{letter-spacing:-0.464000pt;}
.ls16{letter-spacing:-0.459733pt;}
.ls2e{letter-spacing:-0.365867pt;}
.ls18{letter-spacing:-0.297067pt;}
.ls1a{letter-spacing:-0.291733pt;}
.ls10{letter-spacing:-0.288000pt;}
.ls11{letter-spacing:-0.272000pt;}
.ls3d{letter-spacing:-0.256000pt;}
.ls20{letter-spacing:-0.211200pt;}
.lsf{letter-spacing:-0.208000pt;}
.ls3e{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.170667pt;}
.lse{letter-spacing:-0.140800pt;}
.ls12{letter-spacing:-0.120533pt;}
.ls26{letter-spacing:-0.064000pt;}
.ls2c{letter-spacing:-0.040960pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.023040pt;}
.ls17{letter-spacing:0.033280pt;}
.ls24{letter-spacing:0.056320pt;}
.ls2d{letter-spacing:0.076800pt;}
.ls1e{letter-spacing:0.093867pt;}
.ls2{letter-spacing:0.130667pt;}
.ls9{letter-spacing:0.133120pt;}
.ls30{letter-spacing:0.160533pt;}
.ls32{letter-spacing:0.165867pt;}
.ls2f{letter-spacing:0.173333pt;}
.ls29{letter-spacing:0.176000pt;}
.ls14{letter-spacing:0.178667pt;}
.ls15{letter-spacing:0.180267pt;}
.ls19{letter-spacing:0.190933pt;}
.ls35{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.218667pt;}
.ls2a{letter-spacing:0.225280pt;}
.ls28{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.264960pt;}
.ls23{letter-spacing:0.268800pt;}
.ls25{letter-spacing:0.277760pt;}
.lsc{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.299520pt;}
.ls27{letter-spacing:0.299733pt;}
.ls22{letter-spacing:0.314880pt;}
.ls7{letter-spacing:0.316800pt;}
.ls8{letter-spacing:0.352000pt;}
.ls6{letter-spacing:0.357760pt;}
.ls43{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.688000pt;}
.ls1{letter-spacing:24.711040pt;}
.ls0{letter-spacing:25.991040pt;}
.ls42{letter-spacing:89.728000pt;}
.ls3b{letter-spacing:99.328000pt;}
.ls40{letter-spacing:101.888000pt;}
.ls3f{letter-spacing:103.168000pt;}
.ls41{letter-spacing:105.728000pt;}
.ls3c{letter-spacing:112.768000pt;}
.ls39{letter-spacing:124.288000pt;}
.ls38{letter-spacing:125.568000pt;}
.ls37{letter-spacing:126.208000pt;}
.ls3a{letter-spacing:128.128000pt;}
.ls36{letter-spacing:135.808000pt;}
.ls4{letter-spacing:2406.828373pt;}
.wsa{word-spacing:-53.120000pt;}
.ws2{word-spacing:-16.248960pt;}
.ws1b{word-spacing:-15.488000pt;}
.ws2a{word-spacing:-14.272000pt;}
.ws21{word-spacing:-14.248960pt;}
.ws20{word-spacing:-14.144000pt;}
.ws27{word-spacing:-14.080000pt;}
.ws1e{word-spacing:-13.888000pt;}
.ws29{word-spacing:-13.696000pt;}
.ws28{word-spacing:-13.632000pt;}
.ws6{word-spacing:-12.907627pt;}
.ws9{word-spacing:-12.855040pt;}
.ws22{word-spacing:-12.853760pt;}
.ws4{word-spacing:-12.776960pt;}
.ws5{word-spacing:-12.636160pt;}
.ws23{word-spacing:-11.554816pt;}
.ws1a{word-spacing:-11.527040pt;}
.wsb{word-spacing:-11.406507pt;}
.ws17{word-spacing:-11.356373pt;}
.ws18{word-spacing:-11.315840pt;}
.ws1{word-spacing:-11.047573pt;}
.ws0{word-spacing:-10.704000pt;}
.ws1d{word-spacing:-10.592000pt;}
.ws8{word-spacing:-10.416000pt;}
.ws19{word-spacing:-10.407040pt;}
.wsd{word-spacing:-10.376960pt;}
.ws1f{word-spacing:-9.952000pt;}
.ws10{word-spacing:-9.485227pt;}
.wsf{word-spacing:-9.483627pt;}
.ws26{word-spacing:-9.312000pt;}
.wsc{word-spacing:-9.304960pt;}
.ws11{word-spacing:-8.845227pt;}
.ws1c{word-spacing:-8.354773pt;}
.ws13{word-spacing:-8.245973pt;}
.wse{word-spacing:-8.216960pt;}
.ws14{word-spacing:-8.055040pt;}
.ws12{word-spacing:-7.757973pt;}
.ws3{word-spacing:-7.499520pt;}
.ws15{word-spacing:-6.727040pt;}
.ws7{word-spacing:-6.388480pt;}
.ws25{word-spacing:-6.167040pt;}
.ws16{word-spacing:0.000000pt;}
.ws24{word-spacing:156.512640pt;}
._21{margin-left:-6.296107pt;}
._6{margin-left:-4.733440pt;}
._1{margin-left:-3.384320pt;}
._2{margin-left:-2.472960pt;}
._0{margin-left:-1.530880pt;}
._3{width:1.187627pt;}
._13{width:2.284160pt;}
._12{width:3.559040pt;}
._14{width:4.602453pt;}
._16{width:6.268160pt;}
._f{width:7.171200pt;}
._10{width:8.286720pt;}
._15{width:9.263573pt;}
._11{width:10.411520pt;}
._e{width:11.511253pt;}
._17{width:12.782933pt;}
._1b{width:13.853227pt;}
._d{width:14.792533pt;}
._4{width:16.476373pt;}
._19{width:17.995520pt;}
._18{width:19.119787pt;}
._1e{width:20.080640pt;}
._20{width:21.497173pt;}
._a{width:22.854827pt;}
._8{width:23.967360pt;}
._9{width:24.906240pt;}
._1a{width:25.982720pt;}
._24{width:26.906027pt;}
._1d{width:32.471253pt;}
._1c{width:33.408000pt;}
._23{width:62.459093pt;}
._22{width:63.482880pt;}
._c{width:66.090027pt;}
._b{width:67.578027pt;}
._7{width:76.274347pt;}
._5{width:77.239467pt;}
._1f{width:152.512000pt;}
.fs5{font-size:29.440000pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:6.240000pt;}
.yc0{bottom:12.453333pt;}
.y95{bottom:16.320000pt;}
.y96{bottom:16.360000pt;}
.yc9{bottom:16.480000pt;}
.y98{bottom:16.800000pt;}
.y43{bottom:18.400000pt;}
.y40{bottom:28.954667pt;}
.ybf{bottom:29.760000pt;}
.y93{bottom:31.880000pt;}
.yc4{bottom:32.320000pt;}
.y3f{bottom:42.874667pt;}
.ybe{bottom:47.066667pt;}
.yc8{bottom:47.720000pt;}
.y4{bottom:51.040000pt;}
.y3e{bottom:56.794667pt;}
.ybd{bottom:64.413333pt;}
.y42{bottom:65.472000pt;}
.y3{bottom:67.872000pt;}
.y3d{bottom:70.554667pt;}
.yb4{bottom:83.040000pt;}
.y3c{bottom:84.474667pt;}
.yde{bottom:85.952000pt;}
.y87{bottom:88.832000pt;}
.y34{bottom:88.992000pt;}
.yac{bottom:89.312000pt;}
.y3b{bottom:98.234667pt;}
.yf2{bottom:99.232000pt;}
.y33{bottom:106.272000pt;}
.y9d{bottom:111.072000pt;}
.y6b{bottom:111.552000pt;}
.y3a{bottom:112.154667pt;}
.yb1{bottom:115.333333pt;}
.ydd{bottom:116.992000pt;}
.yb5{bottom:118.053333pt;}
.y86{bottom:120.032000pt;}
.y32{bottom:123.552000pt;}
.y39{bottom:126.074667pt;}
.yae{bottom:126.493333pt;}
.y35{bottom:127.232000pt;}
.yab{bottom:128.512000pt;}
.y38{bottom:139.834667pt;}
.y31{bottom:140.826667pt;}
.y9c{bottom:142.106667pt;}
.y6a{bottom:142.586667pt;}
.ydc{bottom:148.186667pt;}
.y85{bottom:151.226667pt;}
.yb6{bottom:153.026667pt;}
.y37{bottom:153.754667pt;}
.yaa{bottom:157.146667pt;}
.y30{bottom:158.266667pt;}
.yf1{bottom:161.626667pt;}
.y36{bottom:167.514667pt;}
.yb0{bottom:171.173333pt;}
.y9b{bottom:173.306667pt;}
.y69{bottom:173.786667pt;}
.y2f{bottom:175.546667pt;}
.ydb{bottom:179.386667pt;}
.yb2{bottom:182.333333pt;}
.y84{bottom:182.426667pt;}
.ya9{bottom:185.626667pt;}
.yb7{bottom:188.026667pt;}
.y2e{bottom:192.826667pt;}
.yf0{bottom:203.226667pt;}
.y68{bottom:204.986667pt;}
.yaf{bottom:208.386667pt;}
.y2d{bottom:210.106667pt;}
.yda{bottom:210.586667pt;}
.y83{bottom:213.626667pt;}
.y9a{bottom:213.786667pt;}
.ya8{bottom:214.266667pt;}
.yb8{bottom:223.013333pt;}
.yef{bottom:224.026667pt;}
.y2c{bottom:227.386667pt;}
.y99{bottom:229.466667pt;}
.y67{bottom:236.186667pt;}
.yd9{bottom:241.786667pt;}
.ya7{bottom:242.746667pt;}
.yfc{bottom:244.506667pt;}
.y82{bottom:244.666667pt;}
.y2b{bottom:244.826667pt;}
.yb9{bottom:258.013333pt;}
.y97{bottom:260.666667pt;}
.y2a{bottom:262.106667pt;}
.yee{bottom:265.466667pt;}
.y66{bottom:267.386667pt;}
.ya6{bottom:271.386667pt;}
.yd8{bottom:272.826667pt;}
.yfb{bottom:275.706667pt;}
.y81{bottom:275.866667pt;}
.y29{bottom:279.386667pt;}
.yed{bottom:286.266667pt;}
.y92{bottom:292.986667pt;}
.yfa{bottom:296.506667pt;}
.y28{bottom:296.666667pt;}
.y65{bottom:298.586667pt;}
.yd7{bottom:304.066667pt;}
.y80{bottom:307.106667pt;}
.ya5{bottom:310.626667pt;}
.y27{bottom:314.146667pt;}
.y94{bottom:324.866667pt;}
.yec{bottom:327.906667pt;}
.yba{bottom:328.000000pt;}
.y64{bottom:329.666667pt;}
.y26{bottom:331.426667pt;}
.yd6{bottom:335.266667pt;}
.y7f{bottom:338.306667pt;}
.ya4{bottom:339.266667pt;}
.y25{bottom:348.706667pt;}
.y63{bottom:360.866667pt;}
.ybb{bottom:362.973333pt;}
.y24{bottom:365.986667pt;}
.yd5{bottom:366.466667pt;}
.ya3{bottom:367.746667pt;}
.yb3{bottom:368.453333pt;}
.y7e{bottom:369.506667pt;}
.y91{bottom:381.186667pt;}
.y23{bottom:383.426667pt;}
.yeb{bottom:390.306667pt;}
.y62{bottom:392.066667pt;}
.ya2{bottom:396.386667pt;}
.yd4{bottom:397.666667pt;}
.ybc{bottom:397.986667pt;}
.y22{bottom:400.706667pt;}
.y90{bottom:409.666667pt;}
.yea{bottom:411.106667pt;}
.y21{bottom:417.986667pt;}
.y61{bottom:423.266667pt;}
.ya1{bottom:425.026667pt;}
.yd3{bottom:428.866667pt;}
.y7d{bottom:431.746667pt;}
.ye9{bottom:431.906667pt;}
.y20{bottom:435.266667pt;}
.y8f{bottom:438.306667pt;}
.ye8{bottom:452.546667pt;}
.y1f{bottom:452.706667pt;}
.ya0{bottom:453.506667pt;}
.y60{bottom:454.466667pt;}
.yd2{bottom:459.906667pt;}
.y7c{bottom:462.946667pt;}
.y8e{bottom:468.226667pt;}
.y1e{bottom:469.986667pt;}
.ye7{bottom:473.346667pt;}
.y5f{bottom:485.506667pt;}
.y1d{bottom:487.266667pt;}
.yd1{bottom:491.106667pt;}
.y9f{bottom:492.706667pt;}
.y7b{bottom:494.146667pt;}
.y8d{bottom:499.426667pt;}
.y1c{bottom:504.546667pt;}
.y5e{bottom:514.306667pt;}
.ye6{bottom:514.946667pt;}
.y9e{bottom:517.986667pt;}
.yad{bottom:519.040000pt;}
.y1b{bottom:521.826667pt;}
.yd0{bottom:522.306667pt;}
.y7a{bottom:525.346667pt;}
.y8c{bottom:530.466667pt;}
.y5d{bottom:531.586667pt;}
.ye5{bottom:535.746667pt;}
.y1a{bottom:539.293333pt;}
.ycf{bottom:553.533333pt;}
.y79{bottom:556.573333pt;}
.y19{bottom:556.893333pt;}
.y5c{bottom:561.053333pt;}
.y8b{bottom:561.693333pt;}
.ye4{bottom:577.373333pt;}
.y5b{bottom:578.333333pt;}
.y18{bottom:582.973333pt;}
.yce{bottom:584.733333pt;}
.y78{bottom:587.773333pt;}
.y8a{bottom:592.893333pt;}
.y5a{bottom:595.613333pt;}
.ye3{bottom:598.173333pt;}
.y17{bottom:602.493333pt;}
.y59{bottom:612.893333pt;}
.ycd{bottom:615.933333pt;}
.y16{bottom:618.173333pt;}
.y77{bottom:618.813333pt;}
.y89{bottom:622.813333pt;}
.y58{bottom:630.173333pt;}
.y15{bottom:633.693333pt;}
.ye2{bottom:639.613333pt;}
.ycc{bottom:645.693333pt;}
.y14{bottom:647.613333pt;}
.y76{bottom:650.013333pt;}
.y88{bottom:651.293333pt;}
.ye1{bottom:660.413333pt;}
.y57{bottom:664.893333pt;}
.y13{bottom:666.813333pt;}
.ycb{bottom:675.453333pt;}
.y75{bottom:681.213333pt;}
.y56{bottom:682.173333pt;}
.y12{bottom:688.733333pt;}
.yca{bottom:694.493333pt;}
.y55{bottom:699.453333pt;}
.ye0{bottom:702.013333pt;}
.y11{bottom:710.653333pt;}
.y74{bottom:712.413333pt;}
.y54{bottom:716.893333pt;}
.ydf{bottom:722.813333pt;}
.y10{bottom:732.573333pt;}
.y53{bottom:734.173333pt;}
.yc7{bottom:741.853333pt;}
.y73{bottom:743.613333pt;}
.y52{bottom:751.453333pt;}
.yf{bottom:754.493333pt;}
.yf9{bottom:764.413333pt;}
.y51{bottom:768.733333pt;}
.y72{bottom:774.693333pt;}
.ye{bottom:776.453333pt;}
.yf8{bottom:785.253333pt;}
.y50{bottom:786.213333pt;}
.yd{bottom:798.373333pt;}
.y4f{bottom:803.493333pt;}
.yc6{bottom:804.453333pt;}
.y71{bottom:805.893333pt;}
.yc{bottom:820.133333pt;}
.y4e{bottom:820.773333pt;}
.yf7{bottom:826.693333pt;}
.yc3{bottom:836.933333pt;}
.y70{bottom:837.093333pt;}
.y4d{bottom:838.053333pt;}
.yb{bottom:840.453333pt;}
.yf6{bottom:847.493333pt;}
.y4c{bottom:855.493333pt;}
.ya{bottom:864.773333pt;}
.y6f{bottom:868.293333pt;}
.yc5{bottom:869.573333pt;}
.y4b{bottom:872.773333pt;}
.y9{bottom:889.093333pt;}
.y4a{bottom:890.053333pt;}
.y6e{bottom:899.493333pt;}
.y49{bottom:907.333333pt;}
.yf5{bottom:909.893333pt;}
.y8{bottom:913.253333pt;}
.y48{bottom:924.613333pt;}
.yc2{bottom:926.373333pt;}
.y6d{bottom:930.693333pt;}
.y7{bottom:937.573333pt;}
.y47{bottom:942.053333pt;}
.yf4{bottom:951.493333pt;}
.yc1{bottom:955.013333pt;}
.y46{bottom:959.333333pt;}
.y6{bottom:961.733333pt;}
.yf3{bottom:972.133333pt;}
.y45{bottom:976.613333pt;}
.y6c{bottom:992.933333pt;}
.y5{bottom:994.213333pt;}
.y41{bottom:1037.600000pt;}
.y2{bottom:1043.520000pt;}
.y1{bottom:1061.760000pt;}
.hf{height:31.200000pt;}
.h10{height:31.232000pt;}
.ha{height:31.520000pt;}
.h11{height:31.680000pt;}
.h7{height:34.109375pt;}
.hb{height:38.751250pt;}
.h2{height:39.876250pt;}
.h9{height:44.764375pt;}
.h4{height:50.109375pt;}
.h5{height:55.454375pt;}
.h13{height:55.588000pt;}
.hc{height:58.563750pt;}
.h3{height:61.467500pt;}
.h15{height:62.592000pt;}
.he{height:63.072000pt;}
.h14{height:63.840000pt;}
.hd{height:66.812500pt;}
.h6{height:78.170625pt;}
.h8{height:204.346667pt;}
.h12{height:417.120000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:90.112000pt;}
.w7{width:93.120000pt;}
.wd{width:94.432000pt;}
.w11{width:102.112000pt;}
.w9{width:108.160000pt;}
.w13{width:111.552000pt;}
.w12{width:111.680000pt;}
.wb{width:118.272000pt;}
.wa{width:119.712000pt;}
.w5{width:122.720000pt;}
.wf{width:195.226667pt;}
.w3{width:214.786667pt;}
.w10{width:223.226667pt;}
.w6{width:237.986667pt;}
.we{width:418.466667pt;}
.w4{width:582.013333pt;}
.wc{width:594.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4a{left:7.200000pt;}
.x11{left:8.160000pt;}
.x8{left:9.600000pt;}
.x29{left:11.136000pt;}
.x1a{left:13.600000pt;}
.x19{left:15.040000pt;}
.x13{left:16.480000pt;}
.x15{left:18.080000pt;}
.x1c{left:19.200000pt;}
.x49{left:20.960000pt;}
.x18{left:22.240000pt;}
.x1d{left:23.680000pt;}
.x1e{left:25.920000pt;}
.x48{left:27.040000pt;}
.x16{left:28.960000pt;}
.x1f{left:30.880000pt;}
.x1b{left:32.320000pt;}
.x45{left:39.360000pt;}
.xd{left:40.800000pt;}
.x43{left:47.200000pt;}
.x47{left:51.040000pt;}
.x2a{left:55.013333pt;}
.x2b{left:59.453333pt;}
.x22{left:69.893333pt;}
.x42{left:84.000000pt;}
.xc{left:89.792000pt;}
.xf{left:97.000000pt;}
.x6{left:113.471988pt;}
.x2c{left:121.760000pt;}
.x23{left:132.960000pt;}
.x4b{left:137.466655pt;}
.x3f{left:159.386667pt;}
.xa{left:160.666655pt;}
.x21{left:170.266655pt;}
.x4c{left:184.506655pt;}
.x2e{left:188.986667pt;}
.x2d{left:191.426667pt;}
.x2f{left:193.920000pt;}
.x24{left:203.426667pt;}
.xe{left:212.506667pt;}
.x40{left:253.826667pt;}
.x33{left:254.786667pt;}
.x32{left:255.746667pt;}
.x30{left:258.213333pt;}
.x25{left:266.493333pt;}
.x31{left:269.373333pt;}
.x4{left:296.226655pt;}
.x2{left:321.666655pt;}
.x35{left:323.226667pt;}
.x36{left:324.773333pt;}
.x34{left:328.733333pt;}
.x17{left:332.226667pt;}
.x26{left:337.093333pt;}
.x44{left:346.946667pt;}
.x39{left:385.666667pt;}
.x38{left:390.013333pt;}
.x37{left:395.520000pt;}
.x27{left:400.506667pt;}
.x1{left:415.933322pt;}
.x41{left:449.053333pt;}
.x10{left:450.493333pt;}
.x3b{left:456.773333pt;}
.x3a{left:458.533333pt;}
.x3e{left:519.173333pt;}
.x3d{left:523.520000pt;}
.x3c{left:525.280000pt;}
.x28{left:531.613333pt;}
.x12{left:543.613333pt;}
.x7{left:551.773333pt;}
.x46{left:560.733333pt;}
.x9{left:585.573322pt;}
.x14{left:633.733333pt;}
.xb{left:705.573322pt;}
.x3{left:707.973322pt;}
.x20{left:709.573322pt;}
.x5{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; }
  