
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_25e1a8af099dc0ba7dac3c8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_76ae50ab86b3c035285c2303.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_ce31fde64f48b43f4a54d6df.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_cff68bdbaa312538c0c809b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_24fec7319481bfc1ddb9cdda.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_882625125b55ba840a5c3a1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_52f00f99f5061dd3c2606817.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_169909d46680633783a22f4d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.993652;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9a6ccf3c2c7750bb8c7dce0e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2a1d20abae67d5f1b17434c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_21cffd912e129fdb70bdb2b7.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.520000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.ls2e{letter-spacing:-13.200000px;}
.ls3a{letter-spacing:-0.391800px;}
.ls29{letter-spacing:-0.303000px;}
.ls37{letter-spacing:-0.243600px;}
.ls38{letter-spacing:-0.240600px;}
.ls10{letter-spacing:-0.186600px;}
.ls2c{letter-spacing:-0.178800px;}
.ls35{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.124200px;}
.lsb{letter-spacing:-0.121200px;}
.ls28{letter-spacing:-0.114600px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls31{letter-spacing:-0.068400px;}
.ls14{letter-spacing:-0.066000px;}
.ls12{letter-spacing:-0.063600px;}
.ls36{letter-spacing:-0.037800px;}
.ls33{letter-spacing:-0.031680px;}
.ls22{letter-spacing:-0.027360px;}
.ls1d{letter-spacing:-0.018360px;}
.ls5{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.031320px;}
.lse{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls2a{letter-spacing:0.056880px;}
.ls3{letter-spacing:0.065520px;}
.lsc{letter-spacing:0.074160px;}
.ls34{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.097800px;}
.ls2b{letter-spacing:0.098400px;}
.ls1e{letter-spacing:0.105600px;}
.ls20{letter-spacing:0.106560px;}
.ls1f{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.115800px;}
.ls2d{letter-spacing:0.116400px;}
.ls17{letter-spacing:0.133200px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls2f{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.199200px;}
.ls39{letter-spacing:0.201600px;}
.ls32{letter-spacing:0.328200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.lsa{letter-spacing:0.540600px;}
.ls23{letter-spacing:0.813600px;}
.ls25{letter-spacing:1.533600px;}
.ls21{letter-spacing:2.613600px;}
.lsd{letter-spacing:5.133600px;}
.ls27{letter-spacing:5.493600px;}
.ls3b{letter-spacing:6.933600px;}
.ls24{letter-spacing:9.453600px;}
.ls1a{letter-spacing:13.594320px;}
.ls18{letter-spacing:16.450200px;}
.ls19{letter-spacing:16.650360px;}
.ls30{letter-spacing:47.726640px;}
.ls26{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.ws22{word-spacing:-13.428000px;}
.ws10{word-spacing:-13.425600px;}
.ws8{word-spacing:-13.399800px;}
.ws1b{word-spacing:-13.342800px;}
.wse{word-spacing:-13.342200px;}
.ws13{word-spacing:-13.332000px;}
.ws19{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.324200px;}
.ws1d{word-spacing:-13.300800px;}
.ws18{word-spacing:-13.283280px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.208040px;}
.ws1f{word-spacing:-13.188600px;}
.wsb{word-spacing:-13.162800px;}
.wsd{word-spacing:-13.160400px;}
.ws1c{word-spacing:-13.158000px;}
.ws16{word-spacing:-13.111800px;}
.wsc{word-spacing:-13.102200px;}
.ws1e{word-spacing:-13.072800px;}
.ws1a{word-spacing:-13.047600px;}
.ws7{word-spacing:-13.039800px;}
.ws21{word-spacing:-12.985800px;}
.ws20{word-spacing:-12.982800px;}
.ws17{word-spacing:-12.923400px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws11{word-spacing:-9.297720px;}
.ws14{word-spacing:-8.660400px;}
.ws2{word-spacing:-8.553600px;}
.ws15{word-spacing:-8.526240px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._18{margin-left:-17.348520px;}
._13{margin-left:-13.843961px;}
._1{margin-left:-3.335388px;}
._2{margin-left:-2.265431px;}
._0{margin-left:-1.110000px;}
._3{width:1.419489px;}
._9{width:3.066000px;}
._7{width:4.328400px;}
._8{width:5.662636px;}
._6{width:7.098960px;}
._5{width:8.832840px;}
._4{width:10.164960px;}
._a{width:11.349960px;}
._d{width:14.308560px;}
._f{width:15.326160px;}
._e{width:16.352640px;}
._10{width:17.975880px;}
._11{width:19.386480px;}
._c{width:20.861640px;}
._b{width:21.883680px;}
._1a{width:24.457560px;}
._15{width:25.566480px;}
._16{width:27.445080px;}
._14{width:30.060000px;}
._17{width:31.661880px;}
._19{width:52.725240px;}
._12{width:91.165302px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y78{bottom:7.830000px;}
.ybc{bottom:7.860000px;}
.y72{bottom:7.920000px;}
.yad{bottom:7.950000px;}
.y7d{bottom:25.380000px;}
.y77{bottom:25.470000px;}
.y76{bottom:43.020000px;}
.y75{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.y74{bottom:78.210000px;}
.y1{bottom:101.640000px;}
.y12f{bottom:111.810000px;}
.y15b{bottom:125.580000px;}
.ydd{bottom:128.100000px;}
.y12e{bottom:129.360000px;}
.y5d{bottom:132.690000px;}
.y100{bottom:139.170000px;}
.y7a{bottom:141.780000px;}
.y15a{bottom:143.130000px;}
.yb7{bottom:146.460000px;}
.y12d{bottom:146.910000px;}
.y5c{bottom:150.330000px;}
.y4f{bottom:155.550000px;}
.yff{bottom:156.720000px;}
.ydc{bottom:163.740000px;}
.y5b{bottom:167.880000px;}
.y159{bottom:169.680000px;}
.y4e{bottom:173.190000px;}
.y12c{bottom:173.550000px;}
.yfe{bottom:174.270000px;}
.y5a{bottom:185.430000px;}
.y158{bottom:187.320000px;}
.y4d{bottom:190.740000px;}
.y12b{bottom:191.100000px;}
.yfd{bottom:191.910000px;}
.y9e{bottom:192.000000px;}
.y26{bottom:194.340000px;}
.ydb{bottom:199.290000px;}
.y157{bottom:204.870000px;}
.yb6{bottom:206.670000px;}
.y4c{bottom:208.290000px;}
.y12a{bottom:208.740000px;}
.yfc{bottom:209.460000px;}
.y9d{bottom:209.640000px;}
.y25{bottom:211.980000px;}
.y59{bottom:212.070000px;}
.y79{bottom:221.880000px;}
.y156{bottom:222.510000px;}
.y129{bottom:226.290000px;}
.yfb{bottom:227.010000px;}
.y9c{bottom:227.190000px;}
.y24{bottom:229.530000px;}
.y4b{bottom:234.840000px;}
.yda{bottom:234.930000px;}
.yfa{bottom:244.650000px;}
.y9b{bottom:244.740000px;}
.y23{bottom:247.170000px;}
.y58{bottom:247.620000px;}
.y155{bottom:249.060000px;}
.y128{bottom:253.200000px;}
.yf9{bottom:262.200000px;}
.y9a{bottom:262.380000px;}
.y22{bottom:264.720000px;}
.y57{bottom:265.260000px;}
.y154{bottom:266.610000px;}
.yb5{bottom:266.880000px;}
.y4a{bottom:267.510000px;}
.yd9{bottom:270.480000px;}
.yf8{bottom:279.840000px;}
.y21{bottom:282.270000px;}
.y99{bottom:288.930000px;}
.y153{bottom:293.250000px;}
.yf7{bottom:297.390000px;}
.y56{bottom:297.480000px;}
.y20{bottom:299.910000px;}
.y127{bottom:301.440000px;}
.y73{bottom:301.980000px;}
.y49{bottom:303.060000px;}
.yb4{bottom:305.400000px;}
.yd8{bottom:306.030000px;}
.y152{bottom:310.800000px;}
.yf6{bottom:314.940000px;}
.y1f{bottom:317.460000px;}
.yb3{bottom:322.950000px;}
.y98{bottom:323.760000px;}
.y126{bottom:328.350000px;}
.y151{bottom:328.440000px;}
.yf5{bottom:332.580000px;}
.y1e{bottom:335.100000px;}
.y48{bottom:335.280000px;}
.y97{bottom:336.000000px;}
.yd7{bottom:341.670000px;}
.yb2{bottom:349.590000px;}
.yf4{bottom:350.130000px;}
.y1d{bottom:352.650000px;}
.y150{bottom:354.990000px;}
.y96{bottom:363.360000px;}
.y125{bottom:365.700000px;}
.yf3{bottom:367.770000px;}
.y1c{bottom:370.200000px;}
.y14f{bottom:372.540000px;}
.yd6{bottom:377.220000px;}
.yb1{bottom:384.420000px;}
.yf2{bottom:385.320000px;}
.y95{bottom:390.630000px;}
.yd5{bottom:394.770000px;}
.y1b{bottom:397.110000px;}
.yb0{bottom:398.460000px;}
.y14e{bottom:399.180000px;}
.y71{bottom:399.630000px;}
.yf1{bottom:402.870000px;}
.yaf{bottom:410.700000px;}
.yd4{bottom:412.410000px;}
.y124{bottom:413.940000px;}
.y14d{bottom:416.730000px;}
.y94{bottom:417.990000px;}
.yf0{bottom:420.510000px;}
.yd3{bottom:429.960000px;}
.y123{bottom:431.580000px;}
.y14c{bottom:434.370000px;}
.yae{bottom:437.970000px;}
.yef{bottom:438.060000px;}
.y93{bottom:445.350000px;}
.y1a{bottom:445.710000px;}
.yd2{bottom:447.600000px;}
.y70{bottom:448.410000px;}
.y122{bottom:449.130000px;}
.y14b{bottom:460.920000px;}
.yee{bottom:464.970000px;}
.yac{bottom:465.330000px;}
.y121{bottom:466.770000px;}
.y92{bottom:472.650000px;}
.yd1{bottom:474.180000px;}
.y14a{bottom:478.500000px;}
.y19{bottom:482.820000px;}
.y6f{bottom:483.990000px;}
.y120{bottom:484.350000px;}
.yab{bottom:492.720000px;}
.y149{bottom:496.140000px;}
.y91{bottom:500.010000px;}
.y18{bottom:500.370000px;}
.y6e{bottom:501.540000px;}
.yd0{bottom:509.010000px;}
.y47{bottom:509.730000px;}
.y11f{bottom:511.260000px;}
.yed{bottom:512.520000px;}
.y17{bottom:517.920000px;}
.y6d{bottom:519.180000px;}
.yaa{bottom:520.080000px;}
.y148{bottom:522.690000px;}
.ycf{bottom:523.140000px;}
.yec{bottom:526.650000px;}
.y46{bottom:527.280000px;}
.yce{bottom:535.290000px;}
.y16{bottom:535.560000px;}
.y6c{bottom:536.730000px;}
.yeb{bottom:538.800000px;}
.y147{bottom:540.330000px;}
.ya9{bottom:547.350000px;}
.y90{bottom:548.700000px;}
.y15{bottom:553.110000px;}
.y45{bottom:553.830000px;}
.y146{bottom:557.880000px;}
.y11e{bottom:559.500000px;}
.ycd{bottom:562.650000px;}
.y6b{bottom:563.280000px;}
.yea{bottom:566.160000px;}
.y14{bottom:570.750000px;}
.ya8{bottom:574.710000px;}
.y11d{bottom:577.140000px;}
.y8f{bottom:584.340000px;}
.y145{bottom:584.430000px;}
.y13{bottom:588.300000px;}
.y44{bottom:589.470000px;}
.ycc{bottom:589.920000px;}
.ye9{bottom:593.520000px;}
.y11c{bottom:594.690000px;}
.y6a{bottom:598.920000px;}
.y8e{bottom:601.890000px;}
.y12{bottom:605.850000px;}
.y43{bottom:607.020000px;}
.y144{bottom:611.070000px;}
.y11b{bottom:612.330000px;}
.y69{bottom:616.470000px;}
.ycb{bottom:617.280000px;}
.y8d{bottom:619.440000px;}
.ye8{bottom:620.790000px;}
.ya7{bottom:623.400000px;}
.y11{bottom:623.490000px;}
.y42{bottom:624.660000px;}
.y16b{bottom:628.260000px;}
.y143{bottom:628.620000px;}
.y11a{bottom:629.880000px;}
.y68{bottom:634.110000px;}
.y8c{bottom:637.080000px;}
.y10{bottom:641.040000px;}
.y41{bottom:642.210000px;}
.yca{bottom:644.640000px;}
.y16a{bottom:645.810000px;}
.y142{bottom:646.260000px;}
.y119{bottom:647.430000px;}
.ye7{bottom:648.150000px;}
.yf{bottom:658.680000px;}
.ya6{bottom:659.040000px;}
.y40{bottom:659.760000px;}
.y67{bottom:660.660000px;}
.y8b{bottom:663.630000px;}
.y118{bottom:665.070000px;}
.yc9{bottom:672.000000px;}
.y169{bottom:672.360000px;}
.y141{bottom:672.810000px;}
.ye6{bottom:675.510000px;}
.ye{bottom:676.230000px;}
.ya5{bottom:676.590000px;}
.y3f{bottom:677.400000px;}
.y117{bottom:682.620000px;}
.y168{bottom:690.000000px;}
.y140{bottom:690.360000px;}
.ya4{bottom:694.140000px;}
.y3e{bottom:694.950000px;}
.y66{bottom:696.210000px;}
.yc8{bottom:699.270000px;}
.y8a{bottom:699.540000px;}
.y116{bottom:700.260000px;}
.ye5{bottom:702.780000px;}
.yd{bottom:703.140000px;}
.y13f{bottom:708.000000px;}
.ya3{bottom:711.780000px;}
.y3d{bottom:712.590000px;}
.y167{bottom:716.550000px;}
.y115{bottom:717.810000px;}
.y65{bottom:728.430000px;}
.ya2{bottom:729.330000px;}
.y3c{bottom:730.140000px;}
.y166{bottom:734.190000px;}
.y13e{bottom:734.550000px;}
.y114{bottom:735.360000px;}
.y89{bottom:747.870000px;}
.yc7{bottom:748.050000px;}
.yc{bottom:751.380000px;}
.ye4{bottom:751.560000px;}
.y13d{bottom:752.190000px;}
.y113{bottom:753.000000px;}
.ya1{bottom:755.970000px;}
.y3b{bottom:756.690000px;}
.y165{bottom:760.740000px;}
.y88{bottom:765.420000px;}
.y13c{bottom:769.740000px;}
.y112{bottom:770.550000px;}
.y164{bottom:778.290000px;}
.y87{bottom:782.970000px;}
.yc6{bottom:783.600000px;}
.ye3{bottom:787.110000px;}
.yb{bottom:787.200000px;}
.y111{bottom:788.190000px;}
.ya0{bottom:791.520000px;}
.y3a{bottom:792.600000px;}
.y13b{bottom:796.290000px;}
.y86{bottom:800.610000px;}
.yc5{bottom:801.150000px;}
.y55{bottom:802.590000px;}
.ye2{bottom:804.660000px;}
.y163{bottom:804.930000px;}
.y110{bottom:805.740000px;}
.y13a{bottom:813.930000px;}
.y85{bottom:818.160000px;}
.yc4{bottom:818.790000px;}
.y54{bottom:820.140000px;}
.ye1{bottom:822.300000px;}
.y162{bottom:822.480000px;}
.ya{bottom:823.200000px;}
.y10f{bottom:823.290000px;}
.y9f{bottom:823.740000px;}
.y139{bottom:831.480000px;}
.yc3{bottom:836.340000px;}
.y53{bottom:837.780000px;}
.ye0{bottom:839.850000px;}
.y39{bottom:840.930000px;}
.y84{bottom:844.800000px;}
.y161{bottom:849.030000px;}
.yc2{bottom:853.890000px;}
.y52{bottom:855.330000px;}
.y138{bottom:858.030000px;}
.y38{bottom:858.480000px;}
.y10e{bottom:858.930000px;}
.y9{bottom:859.200000px;}
.ydf{bottom:866.490000px;}
.y160{bottom:866.670000px;}
.y137{bottom:875.670000px;}
.y37{bottom:876.030000px;}
.y10d{bottom:876.480000px;}
.y83{bottom:879.000000px;}
.yc1{bottom:880.530000px;}
.y8{bottom:880.980000px;}
.y15f{bottom:884.220000px;}
.y82{bottom:886.560000px;}
.y51{bottom:890.970000px;}
.y136{bottom:893.220000px;}
.y36{bottom:893.670000px;}
.y10c{bottom:894.030000px;}
.y7{bottom:895.200000px;}
.yde{bottom:901.320000px;}
.y135{bottom:910.860000px;}
.y35{bottom:911.220000px;}
.y10b{bottom:911.670000px;}
.yc0{bottom:915.360000px;}
.y6{bottom:916.980000px;}
.y50{bottom:923.190000px;}
.y81{bottom:926.160000px;}
.ybf{bottom:927.600000px;}
.y15e{bottom:928.410000px;}
.y34{bottom:928.860000px;}
.y10a{bottom:929.220000px;}
.y134{bottom:937.410000px;}
.y80{bottom:943.710000px;}
.y15d{bottom:945.960000px;}
.y33{bottom:946.410000px;}
.y109{bottom:946.860000px;}
.y5{bottom:949.290000px;}
.ybe{bottom:954.870000px;}
.y133{bottom:954.960000px;}
.y7f{bottom:961.350000px;}
.y32{bottom:963.960000px;}
.y108{bottom:964.410000px;}
.y64{bottom:972.600000px;}
.y7e{bottom:978.900000px;}
.y31{bottom:981.600000px;}
.y107{bottom:981.960000px;}
.ybd{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.y63{bottom:990.150000px;}
.y30{bottom:999.150000px;}
.y106{bottom:999.600000px;}
.y62{bottom:1007.790000px;}
.ybb{bottom:1009.590000px;}
.y7c{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y105{bottom:1017.180000px;}
.y61{bottom:1025.370000px;}
.y2e{bottom:1034.370000px;}
.y104{bottom:1034.820000px;}
.yba{bottom:1036.890000px;}
.y60{bottom:1042.920000px;}
.y132{bottom:1043.370000px;}
.y2d{bottom:1051.920000px;}
.y103{bottom:1052.370000px;}
.y5f{bottom:1060.560000px;}
.y131{bottom:1060.920000px;}
.yb9{bottom:1064.250000px;}
.y2c{bottom:1069.560000px;}
.y102{bottom:1069.920000px;}
.y7b{bottom:1074.420000px;}
.y130{bottom:1078.560000px;}
.y5e{bottom:1087.110000px;}
.y101{bottom:1087.560000px;}
.yb8{bottom:1091.610000px;}
.y15c{bottom:1096.110000px;}
.y2b{bottom:1105.110000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h16{height:26.550000px;}
.h15{height:26.580000px;}
.he{height:26.640000px;}
.h19{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.hf{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.973223px;}
.h18{height:60.589687px;}
.h9{height:60.960938px;}
.h12{height:61.740000px;}
.h1a{height:61.793886px;}
.hb{height:62.585859px;}
.hd{height:62.648438px;}
.ha{height:68.582109px;}
.h13{height:70.777617px;}
.h4{height:72.985430px;}
.h11{height:79.380000px;}
.h14{height:82.551445px;}
.h10{height:96.930000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:56.430000px;}
.w6{width:108.990000px;}
.w7{width:147.600000px;}
.wb{width:175.170000px;}
.wa{width:178.050000px;}
.w3{width:179.670000px;}
.w9{width:181.920000px;}
.wc{width:192.540000px;}
.w8{width:226.920000px;}
.wd{width:300.810000px;}
.w5{width:360.750000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:4.229987px;}
.xe{left:7.740000px;}
.x1{left:68.040000px;}
.x9{left:75.149987px;}
.x1a{left:79.019987px;}
.xd{left:92.610000px;}
.x26{left:111.239987px;}
.x15{left:159.029987px;}
.x1b{left:191.549987px;}
.x25{left:192.809987px;}
.x2{left:202.799987px;}
.x17{left:207.209987px;}
.x23{left:222.060000px;}
.x13{left:259.050000px;}
.xf{left:273.000000px;}
.x21{left:276.150000px;}
.x18{left:281.550000px;}
.x1d{left:283.440000px;}
.x1f{left:284.880000px;}
.x12{left:299.099987px;}
.x10{left:330.150000px;}
.xa{left:338.249987px;}
.xc{left:351.389987px;}
.x5{left:363.719987px;}
.x24{left:370.380000px;}
.x7{left:371.549987px;}
.x14{left:407.370000px;}
.x22{left:424.560000px;}
.x19{left:429.870000px;}
.x1e{left:431.760000px;}
.x20{left:433.200000px;}
.x4{left:568.139987px;}
.x6{left:613.139987px;}
.x8{left:685.139987px;}
.x11{left:691.620000px;}
.x16{left:720.059987px;}
.x3{left:792.059987px;}
.xb{left:807.809987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.240000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.ls2e{letter-spacing:-11.733333pt;}
.ls3a{letter-spacing:-0.348267pt;}
.ls29{letter-spacing:-0.269333pt;}
.ls37{letter-spacing:-0.216533pt;}
.ls38{letter-spacing:-0.213867pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls2c{letter-spacing:-0.158933pt;}
.ls35{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.110400pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls28{letter-spacing:-0.101867pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls31{letter-spacing:-0.060800pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls12{letter-spacing:-0.056533pt;}
.ls36{letter-spacing:-0.033600pt;}
.ls33{letter-spacing:-0.028160pt;}
.ls22{letter-spacing:-0.024320pt;}
.ls1d{letter-spacing:-0.016320pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.027840pt;}
.lse{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls2a{letter-spacing:0.050560pt;}
.ls3{letter-spacing:0.058240pt;}
.lsc{letter-spacing:0.065920pt;}
.ls34{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.086933pt;}
.ls2b{letter-spacing:0.087467pt;}
.ls1e{letter-spacing:0.093867pt;}
.ls20{letter-spacing:0.094720pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.102933pt;}
.ls2d{letter-spacing:0.103467pt;}
.ls17{letter-spacing:0.118400pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.177067pt;}
.ls39{letter-spacing:0.179200pt;}
.ls32{letter-spacing:0.291733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.lsa{letter-spacing:0.480533pt;}
.ls23{letter-spacing:0.723200pt;}
.ls25{letter-spacing:1.363200pt;}
.ls21{letter-spacing:2.323200pt;}
.lsd{letter-spacing:4.563200pt;}
.ls27{letter-spacing:4.883200pt;}
.ls3b{letter-spacing:6.163200pt;}
.ls24{letter-spacing:8.403200pt;}
.ls1a{letter-spacing:12.083840pt;}
.ls18{letter-spacing:14.622400pt;}
.ls19{letter-spacing:14.800320pt;}
.ls30{letter-spacing:42.423680pt;}
.ls26{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.ws22{word-spacing:-11.936000pt;}
.ws10{word-spacing:-11.933867pt;}
.ws8{word-spacing:-11.910933pt;}
.ws1b{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.859733pt;}
.ws13{word-spacing:-11.850667pt;}
.ws19{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.843733pt;}
.ws1d{word-spacing:-11.822933pt;}
.ws18{word-spacing:-11.807360pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.740480pt;}
.ws1f{word-spacing:-11.723200pt;}
.wsb{word-spacing:-11.700267pt;}
.wsd{word-spacing:-11.698133pt;}
.ws1c{word-spacing:-11.696000pt;}
.ws16{word-spacing:-11.654933pt;}
.wsc{word-spacing:-11.646400pt;}
.ws1e{word-spacing:-11.620267pt;}
.ws1a{word-spacing:-11.597867pt;}
.ws7{word-spacing:-11.590933pt;}
.ws21{word-spacing:-11.542933pt;}
.ws20{word-spacing:-11.540267pt;}
.ws17{word-spacing:-11.487467pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws11{word-spacing:-8.264640pt;}
.ws14{word-spacing:-7.698133pt;}
.ws2{word-spacing:-7.603200pt;}
.ws15{word-spacing:-7.578880pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._18{margin-left:-15.420907pt;}
._13{margin-left:-12.305743pt;}
._1{margin-left:-2.964790pt;}
._2{margin-left:-2.013716pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.261768pt;}
._9{width:2.725333pt;}
._7{width:3.847466pt;}
._8{width:5.033455pt;}
._6{width:6.310187pt;}
._5{width:7.851413pt;}
._4{width:9.035520pt;}
._a{width:10.088854pt;}
._d{width:12.718720pt;}
._f{width:13.623253pt;}
._e{width:14.535680pt;}
._10{width:15.978560pt;}
._11{width:17.232427pt;}
._c{width:18.543680pt;}
._b{width:19.452160pt;}
._1a{width:21.740053pt;}
._15{width:22.725760pt;}
._16{width:24.395627pt;}
._14{width:26.720000pt;}
._17{width:28.143893pt;}
._19{width:46.866880pt;}
._12{width:81.035824pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:6.960000pt;}
.ybc{bottom:6.986667pt;}
.y72{bottom:7.040000pt;}
.yad{bottom:7.066667pt;}
.y7d{bottom:22.560000pt;}
.y77{bottom:22.640000pt;}
.y76{bottom:38.240000pt;}
.y75{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.y74{bottom:69.520000pt;}
.y1{bottom:90.346667pt;}
.y12f{bottom:99.386667pt;}
.y15b{bottom:111.626667pt;}
.ydd{bottom:113.866667pt;}
.y12e{bottom:114.986667pt;}
.y5d{bottom:117.946667pt;}
.y100{bottom:123.706667pt;}
.y7a{bottom:126.026667pt;}
.y15a{bottom:127.226667pt;}
.yb7{bottom:130.186667pt;}
.y12d{bottom:130.586667pt;}
.y5c{bottom:133.626667pt;}
.y4f{bottom:138.266667pt;}
.yff{bottom:139.306667pt;}
.ydc{bottom:145.546667pt;}
.y5b{bottom:149.226667pt;}
.y159{bottom:150.826667pt;}
.y4e{bottom:153.946667pt;}
.y12c{bottom:154.266667pt;}
.yfe{bottom:154.906667pt;}
.y5a{bottom:164.826667pt;}
.y158{bottom:166.506667pt;}
.y4d{bottom:169.546667pt;}
.y12b{bottom:169.866667pt;}
.yfd{bottom:170.586667pt;}
.y9e{bottom:170.666667pt;}
.y26{bottom:172.746667pt;}
.ydb{bottom:177.146667pt;}
.y157{bottom:182.106667pt;}
.yb6{bottom:183.706667pt;}
.y4c{bottom:185.146667pt;}
.y12a{bottom:185.546667pt;}
.yfc{bottom:186.186667pt;}
.y9d{bottom:186.346667pt;}
.y25{bottom:188.426667pt;}
.y59{bottom:188.506667pt;}
.y79{bottom:197.226667pt;}
.y156{bottom:197.786667pt;}
.y129{bottom:201.146667pt;}
.yfb{bottom:201.786667pt;}
.y9c{bottom:201.946667pt;}
.y24{bottom:204.026667pt;}
.y4b{bottom:208.746667pt;}
.yda{bottom:208.826667pt;}
.yfa{bottom:217.466667pt;}
.y9b{bottom:217.546667pt;}
.y23{bottom:219.706667pt;}
.y58{bottom:220.106667pt;}
.y155{bottom:221.386667pt;}
.y128{bottom:225.066667pt;}
.yf9{bottom:233.066667pt;}
.y9a{bottom:233.226667pt;}
.y22{bottom:235.306667pt;}
.y57{bottom:235.786667pt;}
.y154{bottom:236.986667pt;}
.yb5{bottom:237.226667pt;}
.y4a{bottom:237.786667pt;}
.yd9{bottom:240.426667pt;}
.yf8{bottom:248.746667pt;}
.y21{bottom:250.906667pt;}
.y99{bottom:256.826667pt;}
.y153{bottom:260.666667pt;}
.yf7{bottom:264.346667pt;}
.y56{bottom:264.426667pt;}
.y20{bottom:266.586667pt;}
.y127{bottom:267.946667pt;}
.y73{bottom:268.426667pt;}
.y49{bottom:269.386667pt;}
.yb4{bottom:271.466667pt;}
.yd8{bottom:272.026667pt;}
.y152{bottom:276.266667pt;}
.yf6{bottom:279.946667pt;}
.y1f{bottom:282.186667pt;}
.yb3{bottom:287.066667pt;}
.y98{bottom:287.786667pt;}
.y126{bottom:291.866667pt;}
.y151{bottom:291.946667pt;}
.yf5{bottom:295.626667pt;}
.y1e{bottom:297.866667pt;}
.y48{bottom:298.026667pt;}
.y97{bottom:298.666667pt;}
.yd7{bottom:303.706667pt;}
.yb2{bottom:310.746667pt;}
.yf4{bottom:311.226667pt;}
.y1d{bottom:313.466667pt;}
.y150{bottom:315.546667pt;}
.y96{bottom:322.986667pt;}
.y125{bottom:325.066667pt;}
.yf3{bottom:326.906667pt;}
.y1c{bottom:329.066667pt;}
.y14f{bottom:331.146667pt;}
.yd6{bottom:335.306667pt;}
.yb1{bottom:341.706667pt;}
.yf2{bottom:342.506667pt;}
.y95{bottom:347.226667pt;}
.yd5{bottom:350.906667pt;}
.y1b{bottom:352.986667pt;}
.yb0{bottom:354.186667pt;}
.y14e{bottom:354.826667pt;}
.y71{bottom:355.226667pt;}
.yf1{bottom:358.106667pt;}
.yaf{bottom:365.066667pt;}
.yd4{bottom:366.586667pt;}
.y124{bottom:367.946667pt;}
.y14d{bottom:370.426667pt;}
.y94{bottom:371.546667pt;}
.yf0{bottom:373.786667pt;}
.yd3{bottom:382.186667pt;}
.y123{bottom:383.626667pt;}
.y14c{bottom:386.106667pt;}
.yae{bottom:389.306667pt;}
.yef{bottom:389.386667pt;}
.y93{bottom:395.866667pt;}
.y1a{bottom:396.186667pt;}
.yd2{bottom:397.866667pt;}
.y70{bottom:398.586667pt;}
.y122{bottom:399.226667pt;}
.y14b{bottom:409.706667pt;}
.yee{bottom:413.306667pt;}
.yac{bottom:413.626667pt;}
.y121{bottom:414.906667pt;}
.y92{bottom:420.133333pt;}
.yd1{bottom:421.493333pt;}
.y14a{bottom:425.333333pt;}
.y19{bottom:429.173333pt;}
.y6f{bottom:430.213333pt;}
.y120{bottom:430.533333pt;}
.yab{bottom:437.973333pt;}
.y149{bottom:441.013333pt;}
.y91{bottom:444.453333pt;}
.y18{bottom:444.773333pt;}
.y6e{bottom:445.813333pt;}
.yd0{bottom:452.453333pt;}
.y47{bottom:453.093333pt;}
.y11f{bottom:454.453333pt;}
.yed{bottom:455.573333pt;}
.y17{bottom:460.373333pt;}
.y6d{bottom:461.493333pt;}
.yaa{bottom:462.293333pt;}
.y148{bottom:464.613333pt;}
.ycf{bottom:465.013333pt;}
.yec{bottom:468.133333pt;}
.y46{bottom:468.693333pt;}
.yce{bottom:475.813333pt;}
.y16{bottom:476.053333pt;}
.y6c{bottom:477.093333pt;}
.yeb{bottom:478.933333pt;}
.y147{bottom:480.293333pt;}
.ya9{bottom:486.533333pt;}
.y90{bottom:487.733333pt;}
.y15{bottom:491.653333pt;}
.y45{bottom:492.293333pt;}
.y146{bottom:495.893333pt;}
.y11e{bottom:497.333333pt;}
.ycd{bottom:500.133333pt;}
.y6b{bottom:500.693333pt;}
.yea{bottom:503.253333pt;}
.y14{bottom:507.333333pt;}
.ya8{bottom:510.853333pt;}
.y11d{bottom:513.013333pt;}
.y8f{bottom:519.413333pt;}
.y145{bottom:519.493333pt;}
.y13{bottom:522.933333pt;}
.y44{bottom:523.973333pt;}
.ycc{bottom:524.373333pt;}
.ye9{bottom:527.573333pt;}
.y11c{bottom:528.613333pt;}
.y6a{bottom:532.373333pt;}
.y8e{bottom:535.013333pt;}
.y12{bottom:538.533333pt;}
.y43{bottom:539.573333pt;}
.y144{bottom:543.173333pt;}
.y11b{bottom:544.293333pt;}
.y69{bottom:547.973333pt;}
.ycb{bottom:548.693333pt;}
.y8d{bottom:550.613333pt;}
.ye8{bottom:551.813333pt;}
.ya7{bottom:554.133333pt;}
.y11{bottom:554.213333pt;}
.y42{bottom:555.253333pt;}
.y16b{bottom:558.453333pt;}
.y143{bottom:558.773333pt;}
.y11a{bottom:559.893333pt;}
.y68{bottom:563.653333pt;}
.y8c{bottom:566.293333pt;}
.y10{bottom:569.813333pt;}
.y41{bottom:570.853333pt;}
.yca{bottom:573.013333pt;}
.y16a{bottom:574.053333pt;}
.y142{bottom:574.453333pt;}
.y119{bottom:575.493333pt;}
.ye7{bottom:576.133333pt;}
.yf{bottom:585.493333pt;}
.ya6{bottom:585.813333pt;}
.y40{bottom:586.453333pt;}
.y67{bottom:587.253333pt;}
.y8b{bottom:589.893333pt;}
.y118{bottom:591.173333pt;}
.yc9{bottom:597.333333pt;}
.y169{bottom:597.653333pt;}
.y141{bottom:598.053333pt;}
.ye6{bottom:600.453333pt;}
.ye{bottom:601.093333pt;}
.ya5{bottom:601.413333pt;}
.y3f{bottom:602.133333pt;}
.y117{bottom:606.773333pt;}
.y168{bottom:613.333333pt;}
.y140{bottom:613.653333pt;}
.ya4{bottom:617.013333pt;}
.y3e{bottom:617.733333pt;}
.y66{bottom:618.853333pt;}
.yc8{bottom:621.573333pt;}
.y8a{bottom:621.813333pt;}
.y116{bottom:622.453333pt;}
.ye5{bottom:624.693333pt;}
.yd{bottom:625.013333pt;}
.y13f{bottom:629.333333pt;}
.ya3{bottom:632.693333pt;}
.y3d{bottom:633.413333pt;}
.y167{bottom:636.933333pt;}
.y115{bottom:638.053333pt;}
.y65{bottom:647.493333pt;}
.ya2{bottom:648.293333pt;}
.y3c{bottom:649.013333pt;}
.y166{bottom:652.613333pt;}
.y13e{bottom:652.933333pt;}
.y114{bottom:653.653333pt;}
.y89{bottom:664.773333pt;}
.yc7{bottom:664.933333pt;}
.yc{bottom:667.893333pt;}
.ye4{bottom:668.053333pt;}
.y13d{bottom:668.613333pt;}
.y113{bottom:669.333333pt;}
.ya1{bottom:671.973333pt;}
.y3b{bottom:672.613333pt;}
.y165{bottom:676.213333pt;}
.y88{bottom:680.373333pt;}
.y13c{bottom:684.213333pt;}
.y112{bottom:684.933333pt;}
.y164{bottom:691.813333pt;}
.y87{bottom:695.973333pt;}
.yc6{bottom:696.533333pt;}
.ye3{bottom:699.653333pt;}
.yb{bottom:699.733333pt;}
.y111{bottom:700.613333pt;}
.ya0{bottom:703.573333pt;}
.y3a{bottom:704.533333pt;}
.y13b{bottom:707.813333pt;}
.y86{bottom:711.653333pt;}
.yc5{bottom:712.133333pt;}
.y55{bottom:713.413333pt;}
.ye2{bottom:715.253333pt;}
.y163{bottom:715.493333pt;}
.y110{bottom:716.213333pt;}
.y13a{bottom:723.493333pt;}
.y85{bottom:727.253333pt;}
.yc4{bottom:727.813333pt;}
.y54{bottom:729.013333pt;}
.ye1{bottom:730.933333pt;}
.y162{bottom:731.093333pt;}
.ya{bottom:731.733333pt;}
.y10f{bottom:731.813333pt;}
.y9f{bottom:732.213333pt;}
.y139{bottom:739.093333pt;}
.yc3{bottom:743.413333pt;}
.y53{bottom:744.693333pt;}
.ye0{bottom:746.533333pt;}
.y39{bottom:747.493333pt;}
.y84{bottom:750.933333pt;}
.y161{bottom:754.693333pt;}
.yc2{bottom:759.013333pt;}
.y52{bottom:760.293333pt;}
.y138{bottom:762.693333pt;}
.y38{bottom:763.093333pt;}
.y10e{bottom:763.493333pt;}
.y9{bottom:763.733333pt;}
.ydf{bottom:770.213333pt;}
.y160{bottom:770.373333pt;}
.y137{bottom:778.373333pt;}
.y37{bottom:778.693333pt;}
.y10d{bottom:779.093333pt;}
.y83{bottom:781.333333pt;}
.yc1{bottom:782.693333pt;}
.y8{bottom:783.093333pt;}
.y15f{bottom:785.973333pt;}
.y82{bottom:788.053333pt;}
.y51{bottom:791.973333pt;}
.y136{bottom:793.973333pt;}
.y36{bottom:794.373333pt;}
.y10c{bottom:794.693333pt;}
.y7{bottom:795.733333pt;}
.yde{bottom:801.173333pt;}
.y135{bottom:809.653333pt;}
.y35{bottom:809.973333pt;}
.y10b{bottom:810.373333pt;}
.yc0{bottom:813.653333pt;}
.y6{bottom:815.093333pt;}
.y50{bottom:820.613333pt;}
.y81{bottom:823.253333pt;}
.ybf{bottom:824.533333pt;}
.y15e{bottom:825.253333pt;}
.y34{bottom:825.653333pt;}
.y10a{bottom:825.973333pt;}
.y134{bottom:833.253333pt;}
.y80{bottom:838.853333pt;}
.y15d{bottom:840.853333pt;}
.y33{bottom:841.253333pt;}
.y109{bottom:841.653333pt;}
.y5{bottom:843.813333pt;}
.ybe{bottom:848.773333pt;}
.y133{bottom:848.853333pt;}
.y7f{bottom:854.533333pt;}
.y32{bottom:856.853333pt;}
.y108{bottom:857.253333pt;}
.y64{bottom:864.533333pt;}
.y7e{bottom:870.133333pt;}
.y31{bottom:872.533333pt;}
.y107{bottom:872.853333pt;}
.ybd{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.y63{bottom:880.133333pt;}
.y30{bottom:888.133333pt;}
.y106{bottom:888.533333pt;}
.y62{bottom:895.813333pt;}
.ybb{bottom:897.413333pt;}
.y7c{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y105{bottom:904.160000pt;}
.y61{bottom:911.440000pt;}
.y2e{bottom:919.440000pt;}
.y104{bottom:919.840000pt;}
.yba{bottom:921.680000pt;}
.y60{bottom:927.040000pt;}
.y132{bottom:927.440000pt;}
.y2d{bottom:935.040000pt;}
.y103{bottom:935.440000pt;}
.y5f{bottom:942.720000pt;}
.y131{bottom:943.040000pt;}
.yb9{bottom:946.000000pt;}
.y2c{bottom:950.720000pt;}
.y102{bottom:951.040000pt;}
.y7b{bottom:955.040000pt;}
.y130{bottom:958.720000pt;}
.y5e{bottom:966.320000pt;}
.y101{bottom:966.720000pt;}
.yb8{bottom:970.320000pt;}
.y15c{bottom:974.320000pt;}
.y2b{bottom:982.320000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h16{height:23.600000pt;}
.h15{height:23.626667pt;}
.he{height:23.680000pt;}
.h19{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.hf{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:53.309531pt;}
.h18{height:53.857500pt;}
.h9{height:54.187500pt;}
.h12{height:54.880000pt;}
.h1a{height:54.927899pt;}
.hb{height:55.631875pt;}
.hd{height:55.687500pt;}
.ha{height:60.961875pt;}
.h13{height:62.913437pt;}
.h4{height:64.875937pt;}
.h11{height:70.560000pt;}
.h14{height:73.379062pt;}
.h10{height:86.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:50.160000pt;}
.w6{width:96.880000pt;}
.w7{width:131.200000pt;}
.wb{width:155.706667pt;}
.wa{width:158.266667pt;}
.w3{width:159.706667pt;}
.w9{width:161.706667pt;}
.wc{width:171.146667pt;}
.w8{width:201.706667pt;}
.wd{width:267.386667pt;}
.w5{width:320.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:3.759988pt;}
.xe{left:6.880000pt;}
.x1{left:60.480000pt;}
.x9{left:66.799988pt;}
.x1a{left:70.239988pt;}
.xd{left:82.320000pt;}
.x26{left:98.879988pt;}
.x15{left:141.359988pt;}
.x1b{left:170.266655pt;}
.x25{left:171.386655pt;}
.x2{left:180.266655pt;}
.x17{left:184.186655pt;}
.x23{left:197.386667pt;}
.x13{left:230.266667pt;}
.xf{left:242.666667pt;}
.x21{left:245.466667pt;}
.x18{left:250.266667pt;}
.x1d{left:251.946667pt;}
.x1f{left:253.226667pt;}
.x12{left:265.866655pt;}
.x10{left:293.466667pt;}
.xa{left:300.666655pt;}
.xc{left:312.346655pt;}
.x5{left:323.306655pt;}
.x24{left:329.226667pt;}
.x7{left:330.266655pt;}
.x14{left:362.106667pt;}
.x22{left:377.386667pt;}
.x19{left:382.106667pt;}
.x1e{left:383.786667pt;}
.x20{left:385.066667pt;}
.x4{left:505.013322pt;}
.x6{left:545.013322pt;}
.x8{left:609.013322pt;}
.x11{left:614.773333pt;}
.x16{left:640.053322pt;}
.x3{left:704.053322pt;}
.xb{left:718.053322pt;}
}




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