
    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_a446c7ec384541685d1176ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_c3cd84f43965f0da734a5035.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_fe6b047958ec1eee1b7760d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_b53a69099602174ae38f8761.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6acdcf200128123db4962cc4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_01af3ed85620f4af07eb92b5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.090820;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_4e0d361fdd545609910051f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.090820;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_1f7d0c7cff965e944d71fc69.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-9.152178px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.152178px;}
.v3{vertical-align:48.240000px;}
.v2{vertical-align:54.720000px;}
.ls19{letter-spacing:-1.128769px;}
.ls10{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.576000px;}
.ls1{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.175697px;}
.ls11{letter-spacing:0.178925px;}
.lse{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.864000px;}
.ls15{letter-spacing:1.729609px;}
.ls14{letter-spacing:1.793827px;}
.lsb{letter-spacing:1.872000px;}
.ls1b{letter-spacing:1.874106px;}
.ls1c{letter-spacing:1.911253px;}
.lsc{letter-spacing:2.160000px;}
.ls12{letter-spacing:2.288045px;}
.ls5{letter-spacing:2.880000px;}
.ls4{letter-spacing:64.397280px;}
.lsa{letter-spacing:159.840000px;}
.ls16{letter-spacing:236.156701px;}
.ls13{letter-spacing:249.884968px;}
.ls18{letter-spacing:302.747033px;}
.ls17{letter-spacing:316.475300px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws5{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.288000px;}
.wsd{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws0{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.128000px;}
.ws7{word-spacing:-16.056000px;}
.ws8{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.768000px;}
.wsa{word-spacing:-15.552000px;}
.ws10{word-spacing:-14.910423px;}
.ws11{word-spacing:-13.781655px;}
.wsf{word-spacing:-13.479023px;}
.ws19{word-spacing:-13.235875px;}
.ws1d{word-spacing:-13.220605px;}
.wsc{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
.wse{word-spacing:79.387518px;}
.ws1e{word-spacing:181.017350px;}
.ws1b{word-spacing:192.455365px;}
.ws13{word-spacing:200.231809px;}
.ws1a{word-spacing:210.503373px;}
.ws1c{word-spacing:215.090230px;}
.ws18{word-spacing:218.535707px;}
.ws15{word-spacing:218.536165px;}
.ws17{word-spacing:218.718751px;}
.ws14{word-spacing:225.579376px;}
.ws16{word-spacing:241.599653px;}
.ws12{word-spacing:243.819057px;}
._a{margin-left:-4.968000px;}
._b{margin-left:-3.600000px;}
._1a{margin-left:-2.540160px;}
._0{margin-left:-1.457280px;}
._1{width:1.583520px;}
._15{width:2.610240px;}
._8{width:3.672000px;}
._9{width:4.860000px;}
._12{width:6.840000px;}
._d{width:8.208000px;}
._e{width:9.360000px;}
._10{width:10.493280px;}
._f{width:11.592000px;}
._16{width:12.906720px;}
._1b{width:13.971600px;}
._4{width:15.034320px;}
._13{width:16.640640px;}
._11{width:19.224000px;}
._19{width:21.024000px;}
._14{width:22.320000px;}
._2b{width:23.952000px;}
._c{width:25.200000px;}
._27{width:27.144000px;}
._28{width:28.296480px;}
._17{width:44.064000px;}
._18{width:45.540000px;}
._2{width:48.115920px;}
._3{width:49.507920px;}
._1c{width:92.215200px;}
._7{width:139.087920px;}
._23{width:141.878122px;}
._20{width:155.541714px;}
._6{width:163.410960px;}
._5{width:165.186000px;}
._25{width:173.878409px;}
._1d{width:194.376000px;}
._22{width:202.840323px;}
._2a{width:205.065314px;}
._29{width:218.659627px;}
._1f{width:221.144679px;}
._26{width:230.754789px;}
._1e{width:234.844269px;}
._21{width:248.687069px;}
._24{width:271.383756px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs7{font-size:41.184801px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:58.498253px;}
.fs8{font-size:58.565818px;}
.fs6{font-size:59.641694px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y158{bottom:4.491323px;}
.y11a{bottom:4.493541px;}
.ycd{bottom:4.576124px;}
.yc6{bottom:4.606600px;}
.yed{bottom:4.606631px;}
.ydc{bottom:4.621885px;}
.y15a{bottom:6.755582px;}
.y15c{bottom:6.755642px;}
.y10f{bottom:6.864100px;}
.y108{bottom:6.864161px;}
.yf8{bottom:6.894669px;}
.yf2{bottom:6.894676px;}
.y103{bottom:6.902296px;}
.y100{bottom:6.905346px;}
.yfb{bottom:6.909922px;}
.yf5{bottom:6.909929px;}
.y137{bottom:7.859203px;}
.y10d{bottom:8.008137px;}
.y7e{bottom:9.900000px;}
.y87{bottom:10.620000px;}
.y117{bottom:13.480623px;}
.y155{bottom:13.511039px;}
.yc2{bottom:14.902800px;}
.ybf{bottom:14.902803px;}
.y7d{bottom:21.960000px;}
.y86{bottom:22.680000px;}
.y157{bottom:23.607186px;}
.y152{bottom:23.607238px;}
.y119{bottom:23.621047px;}
.yca{bottom:24.054979px;}
.yc5{bottom:24.054980px;}
.y88{bottom:24.480000px;}
.y116{bottom:32.608129px;}
.y136{bottom:32.611125px;}
.y154{bottom:32.626905px;}
.y10b{bottom:33.215065px;}
.yc1{bottom:34.396939px;}
.ybe{bottom:34.396941px;}
.y118{bottom:42.718596px;}
.y156{bottom:42.760170px;}
.yc4{bottom:43.549118px;}
.y135{bottom:57.363047px;}
.y109{bottom:58.421689px;}
.y134{bottom:82.114968px;}
.y5{bottom:82.116000px;}
.y106{bottom:83.628313px;}
.y133{bottom:106.866890px;}
.y4{bottom:108.396000px;}
.y104{bottom:108.873070px;}
.y3{bottom:127.476000px;}
.y132{bottom:131.618812px;}
.y101{bottom:134.079694px;}
.y2{bottom:146.556000px;}
.y131{bottom:156.375227px;}
.yfe{bottom:159.289369px;}
.y32{bottom:166.350000px;}
.yba{bottom:168.330000px;}
.y51{bottom:177.510000px;}
.y130{bottom:181.119659px;}
.y98{bottom:183.090000px;}
.yfc{bottom:184.488365px;}
.y31{bottom:187.050000px;}
.y6a{bottom:189.210000px;}
.yb9{bottom:195.150000px;}
.y12f{bottom:205.879070px;}
.y150{bottom:206.490000px;}
.y30{bottom:207.750000px;}
.y50{bottom:208.650000px;}
.yf9{bottom:209.702616px;}
.y112{bottom:214.050000px;}
.y97{bottom:214.230000px;}
.y69{bottom:220.350000px;}
.y7b{bottom:221.790000px;}
.y2f{bottom:228.450000px;}
.y12e{bottom:230.623503px;}
.y14f{bottom:233.130000px;}
.yf6{bottom:234.901613px;}
.y4f{bottom:239.610000px;}
.y96{bottom:245.190000px;}
.yb8{bottom:248.430000px;}
.y2e{bottom:249.150000px;}
.y68{bottom:251.310000px;}
.y7a{bottom:252.750000px;}
.y14e{bottom:253.830000px;}
.y12d{bottom:255.382914px;}
.yf3{bottom:260.115863px;}
.y2d{bottom:269.850000px;}
.y4e{bottom:270.750000px;}
.y111{bottom:276.150000px;}
.y95{bottom:276.330000px;}
.y12c{bottom:280.127346px;}
.y14d{bottom:280.650000px;}
.y67{bottom:282.450000px;}
.y79{bottom:283.890000px;}
.yf0{bottom:285.314860px;}
.yb7{bottom:285.510000px;}
.y2c{bottom:290.550000px;}
.y4d{bottom:301.710000px;}
.y12b{bottom:304.886757px;}
.y94{bottom:307.290000px;}
.yee{bottom:308.241066px;}
.y2b{bottom:311.250000px;}
.y66{bottom:313.410000px;}
.y78{bottom:314.850000px;}
.yb6{bottom:316.650000px;}
.y14c{bottom:327.990000px;}
.y12a{bottom:329.631189px;}
.y110{bottom:329.970000px;}
.yeb{bottom:330.007996px;}
.y113{bottom:331.230000px;}
.y2a{bottom:331.950000px;}
.y4c{bottom:332.850000px;}
.y93{bottom:338.475000px;}
.y65{bottom:344.595000px;}
.y77{bottom:346.035000px;}
.yb5{bottom:347.655000px;}
.y14b{bottom:348.735000px;}
.ye9{bottom:351.744419px;}
.y29{bottom:352.695000px;}
.y129{bottom:354.390600px;}
.y4b{bottom:363.855000px;}
.y14a{bottom:369.435000px;}
.ybb{bottom:372.859288px;}
.y28{bottom:373.395000px;}
.ye7{bottom:373.526603px;}
.y10e{bottom:374.003314px;}
.yb4{bottom:374.295000px;}
.y64{bottom:375.555000px;}
.y76{bottom:376.995000px;}
.y92{bottom:377.715000px;}
.y128{bottom:379.135033px;}
.y149{bottom:390.135000px;}
.y27{bottom:394.095000px;}
.y4a{bottom:394.995000px;}
.ye5{bottom:395.293533px;}
.y10c{bottom:399.210181px;}
.yb3{bottom:401.115000px;}
.y127{bottom:403.849508px;}
.y63{bottom:406.695000px;}
.y75{bottom:408.135000px;}
.y148{bottom:410.835000px;}
.y26{bottom:414.795000px;}
.ye3{bottom:417.075717px;}
.y91{bottom:420.735000px;}
.y10a{bottom:424.416805px;}
.y49{bottom:425.955000px;}
.yb2{bottom:427.755000px;}
.y126{bottom:428.608919px;}
.y147{bottom:431.535000px;}
.y25{bottom:435.495000px;}
.y62{bottom:437.655000px;}
.ye1{bottom:438.842647px;}
.y74{bottom:439.095000px;}
.y107{bottom:449.623429px;}
.y90{bottom:451.695000px;}
.y146{bottom:452.235000px;}
.y125{bottom:453.353352px;}
.yb1{bottom:454.395000px;}
.y24{bottom:456.195000px;}
.y48{bottom:457.095000px;}
.ydf{bottom:460.624831px;}
.y61{bottom:468.795000px;}
.y73{bottom:470.235000px;}
.y145{bottom:472.935000px;}
.y105{bottom:474.830052px;}
.y23{bottom:476.895000px;}
.y124{bottom:478.112763px;}
.yb0{bottom:481.215000px;}
.ydd{bottom:482.391760px;}
.y8f{bottom:482.835000px;}
.y47{bottom:488.055000px;}
.y22{bottom:497.595000px;}
.y144{bottom:499.575000px;}
.y60{bottom:499.755000px;}
.y102{bottom:500.036676px;}
.y72{bottom:501.195000px;}
.y123{bottom:502.857195px;}
.yda{bottom:504.173944px;}
.yaf{bottom:507.855000px;}
.y8e{bottom:513.975000px;}
.y21{bottom:518.295000px;}
.y46{bottom:519.195000px;}
.yff{bottom:525.243300px;}
.yd8{bottom:525.910367px;}
.y143{bottom:526.755000px;}
.y122{bottom:527.616606px;}
.y5f{bottom:530.895000px;}
.y71{bottom:532.335000px;}
.yae{bottom:534.495000px;}
.y20{bottom:538.995000px;}
.y8d{bottom:545.475000px;}
.yd6{bottom:547.677297px;}
.y45{bottom:550.155000px;}
.yfd{bottom:550.452974px;}
.y121{bottom:552.361038px;}
.y5e{bottom:558.075000px;}
.y1f{bottom:559.695000px;}
.yad{bottom:561.315000px;}
.y70{bottom:563.295000px;}
.yd4{bottom:569.459481px;}
.y142{bottom:569.775000px;}
.yfa{bottom:575.651971px;}
.y8c{bottom:576.795000px;}
.y120{bottom:577.120449px;}
.y1e{bottom:580.395000px;}
.y44{bottom:581.295000px;}
.yac{bottom:587.955000px;}
.y5d{bottom:590.655000px;}
.yd2{bottom:591.226411px;}
.y6f{bottom:594.435000px;}
.yf7{bottom:600.866221px;}
.y141{bottom:600.915000px;}
.y1d{bottom:601.095000px;}
.y11f{bottom:601.864882px;}
.y8b{bottom:608.505000px;}
.y43{bottom:612.285000px;}
.yd0{bottom:613.008595px;}
.yab{bottom:614.625000px;}
.y1c{bottom:621.645000px;}
.y6e{bottom:625.425000px;}
.yf4{bottom:626.065218px;}
.y11e{bottom:626.624293px;}
.y140{bottom:631.905000px;}
.yce{bottom:634.775525px;}
.y8a{bottom:640.005000px;}
.yaa{bottom:641.445000px;}
.y1b{bottom:642.345000px;}
.y42{bottom:643.245000px;}
.yf1{bottom:651.279469px;}
.y11d{bottom:651.368725px;}
.y5c{bottom:652.785000px;}
.ycb{bottom:656.557708px;}
.y6d{bottom:656.565000px;}
.y1a{bottom:663.045000px;}
.ya9{bottom:668.085000px;}
.y89{bottom:671.505000px;}
.y41{bottom:674.385000px;}
.y11c{bottom:676.128136px;}
.yef{bottom:676.478466px;}
.y19{bottom:683.745000px;}
.y6c{bottom:687.525000px;}
.y85{bottom:688.245000px;}
.y13f{bottom:694.005000px;}
.ya8{bottom:694.725000px;}
.ybc{bottom:697.773018px;}
.yec{bottom:698.260649px;}
.y11b{bottom:700.872568px;}
.y18{bottom:704.445000px;}
.y40{bottom:705.345000px;}
.y6b{bottom:710.205000px;}
.y5b{bottom:714.885000px;}
.yea{bottom:720.027580px;}
.ya7{bottom:721.545000px;}
.y17{bottom:725.145000px;}
.y3f{bottom:736.485000px;}
.ye8{bottom:741.809763px;}
.y114{bottom:742.512715px;}
.y16{bottom:745.845000px;}
.ya6{bottom:748.185000px;}
.y84{bottom:753.945000px;}
.y13e{bottom:756.105000px;}
.ye6{bottom:763.576693px;}
.y15{bottom:766.545000px;}
.y3e{bottom:767.445000px;}
.ya5{bottom:774.825000px;}
.y5a{bottom:776.985000px;}
.y83{bottom:785.265000px;}
.ye4{bottom:785.358877px;}
.y14{bottom:787.245000px;}
.y3d{bottom:798.585000px;}
.ya4{bottom:801.645000px;}
.ye2{bottom:807.125807px;}
.y13{bottom:807.945000px;}
.y82{bottom:816.945000px;}
.y13d{bottom:818.205000px;}
.ya3{bottom:828.285000px;}
.y12{bottom:828.645000px;}
.ye0{bottom:828.907991px;}
.y3c{bottom:829.545000px;}
.y59{bottom:839.085000px;}
.y81{bottom:848.625000px;}
.y13c{bottom:849.165000px;}
.y11{bottom:849.345000px;}
.yde{bottom:850.674921px;}
.ya2{bottom:854.925000px;}
.y3b{bottom:860.685000px;}
.y10{bottom:870.045000px;}
.ydb{bottom:872.411344px;}
.y80{bottom:880.350000px;}
.ya1{bottom:881.790000px;}
.yf{bottom:890.790000px;}
.y3a{bottom:891.690000px;}
.yd9{bottom:894.193528px;}
.y58{bottom:901.230000px;}
.y164{bottom:902.310000px;}
.ya0{bottom:908.430000px;}
.y13b{bottom:911.310000px;}
.ye{bottom:911.490000px;}
.y7f{bottom:912.030000px;}
.yd7{bottom:915.960458px;}
.y39{bottom:922.830000px;}
.y163{bottom:928.950000px;}
.y7c{bottom:929.130000px;}
.y57{bottom:932.190000px;}
.yd{bottom:933.630000px;}
.y9f{bottom:935.070000px;}
.yd5{bottom:937.742641px;}
.y13a{bottom:942.450000px;}
.y162{bottom:949.650000px;}
.y38{bottom:953.790000px;}
.yd3{bottom:959.509572px;}
.yc{bottom:961.170000px;}
.y9e{bottom:961.710000px;}
.y56{bottom:963.330000px;}
.y139{bottom:969.630000px;}
.y161{bottom:976.290000px;}
.yd1{bottom:981.291755px;}
.y37{bottom:984.930000px;}
.y9d{bottom:988.530000px;}
.yb{bottom:988.710000px;}
.y55{bottom:994.290000px;}
.y138{bottom:998.250000px;}
.y15b{bottom:1000.589099px;}
.ycf{bottom:1003.058685px;}
.y160{bottom:1003.110000px;}
.ya{bottom:1014.990000px;}
.y9c{bottom:1015.170000px;}
.y36{bottom:1015.890000px;}
.y15f{bottom:1023.810000px;}
.ycc{bottom:1024.840869px;}
.y159{bottom:1025.346836px;}
.y54{bottom:1025.430000px;}
.y9{bottom:1037.130000px;}
.y9b{bottom:1041.810000px;}
.yc9{bottom:1046.577292px;}
.yc8{bottom:1046.577296px;}
.yc7{bottom:1046.577301px;}
.yc3{bottom:1046.577307px;}
.yc0{bottom:1046.577312px;}
.ybd{bottom:1046.577317px;}
.y35{bottom:1047.030000px;}
.y151{bottom:1050.104663px;}
.y153{bottom:1050.104690px;}
.y115{bottom:1050.121668px;}
.y15e{bottom:1050.450000px;}
.y53{bottom:1056.390000px;}
.y8{bottom:1064.670000px;}
.y9a{bottom:1068.630000px;}
.y34{bottom:1074.210000px;}
.y15d{bottom:1077.090000px;}
.y52{bottom:1087.530000px;}
.y7{bottom:1092.210000px;}
.y99{bottom:1094.550000px;}
.y33{bottom:1097.790000px;}
.y6{bottom:1118.490000px;}
.y1{bottom:1233.900000px;}
.h10{height:20.592441px;}
.h11{height:20.630575px;}
.h1a{height:23.644362px;}
.h12{height:24.062642px;}
.h7{height:50.940000px;}
.ha{height:51.480000px;}
.hb{height:53.573906px;}
.h15{height:57.367540px;}
.h18{height:57.384733px;}
.h19{height:57.384734px;}
.h16{height:57.384788px;}
.h17{height:58.184053px;}
.h14{height:58.251255px;}
.hd{height:59.321352px;}
.h5{height:59.343750px;}
.h3{height:59.383125px;}
.hf{height:59.603564px;}
.he{height:59.603566px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h4{height:85.052461px;}
.h9{height:112.786875px;}
.h8{height:117.368438px;}
.hc{height:733.318306px;}
.h13{height:776.254728px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.260000px;}
.w7{width:72.177584px;}
.wa{width:81.328466px;}
.w10{width:84.365200px;}
.wd{width:85.510615px;}
.w9{width:85.942035px;}
.w11{width:88.884096px;}
.w8{width:93.949057px;}
.we{width:103.508918px;}
.w6{width:105.425789px;}
.wc{width:263.253235px;}
.w13{width:268.878071px;}
.w12{width:268.878080px;}
.wf{width:268.878102px;}
.w3{width:643.065000px;}
.wb{width:679.452998px;}
.w5{width:679.453008px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:2.287721px;}
.x16{left:3.416330px;}
.x1d{left:5.704050px;}
.x23{left:6.893665px;}
.xe{left:8.100000px;}
.x30{left:11.278580px;}
.x2e{left:12.361625px;}
.x31{left:13.519362px;}
.x13{left:14.908313px;}
.x15{left:19.476128px;}
.x22{left:20.619988px;}
.x32{left:24.760570px;}
.x20{left:27.483150px;}
.x1c{left:28.627010px;}
.x18{left:32.058591px;}
.x1e{left:35.520675px;}
.x1a{left:38.967507px;}
.xb{left:85.314000px;}
.x24{left:97.380637px;}
.x2{left:127.655987px;}
.x7{left:160.049987px;}
.x5{left:161.129987px;}
.x4{left:170.129987px;}
.x8{left:179.129987px;}
.x11{left:180.749987px;}
.xf{left:196.059000px;}
.x25{left:211.949682px;}
.xc{left:215.139000px;}
.x26{left:244.829987px;}
.x6{left:265.889987px;}
.x14{left:289.977674px;}
.x12{left:310.574987px;}
.x9{left:350.894987px;}
.x2c{left:355.120347px;}
.x28{left:357.370186px;}
.x10{left:396.069000px;}
.x29{left:429.363400px;}
.x2d{left:448.523318px;}
.x17{left:469.868765px;}
.x1{left:489.164987px;}
.x2a{left:515.994238px;}
.x2f{left:534.008885px;}
.x1b{left:564.961682px;}
.x27{left:621.824987px;}
.x2b{left:624.164987px;}
.xa{left:638.744987px;}
.x1f{left:652.047577px;}
.x21{left:734.512276px;}
.xd{left:770.730000px;}
.x3{left:808.169987px;}
@media print{
.v4{vertical-align:-8.135269pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.135269pt;}
.v3{vertical-align:42.880000pt;}
.v2{vertical-align:48.640000pt;}
.ls19{letter-spacing:-1.003350pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.512000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.156176pt;}
.ls11{letter-spacing:0.159045pt;}
.lse{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.768000pt;}
.ls15{letter-spacing:1.537430pt;}
.ls14{letter-spacing:1.594513pt;}
.lsb{letter-spacing:1.664000pt;}
.ls1b{letter-spacing:1.665872pt;}
.ls1c{letter-spacing:1.698891pt;}
.lsc{letter-spacing:1.920000pt;}
.ls12{letter-spacing:2.033817pt;}
.ls5{letter-spacing:2.560000pt;}
.ls4{letter-spacing:57.242027pt;}
.lsa{letter-spacing:142.080000pt;}
.ls16{letter-spacing:209.917067pt;}
.ls13{letter-spacing:222.119971pt;}
.ls18{letter-spacing:269.108474pt;}
.ls17{letter-spacing:281.311378pt;}
.ws1{word-spacing:-64.000000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.wsd{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws0{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws7{word-spacing:-14.272000pt;}
.ws8{word-spacing:-14.080000pt;}
.wsb{word-spacing:-14.016000pt;}
.wsa{word-spacing:-13.824000pt;}
.ws10{word-spacing:-13.253710pt;}
.ws11{word-spacing:-12.250360pt;}
.wsf{word-spacing:-11.981354pt;}
.ws19{word-spacing:-11.765222pt;}
.ws1d{word-spacing:-11.751649pt;}
.wsc{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
.wse{word-spacing:70.566682pt;}
.ws1e{word-spacing:160.904311pt;}
.ws1b{word-spacing:171.071436pt;}
.ws13{word-spacing:177.983830pt;}
.ws1a{word-spacing:187.114110pt;}
.ws1c{word-spacing:191.191316pt;}
.ws18{word-spacing:194.253962pt;}
.ws15{word-spacing:194.254369pt;}
.ws17{word-spacing:194.416667pt;}
.ws14{word-spacing:200.515001pt;}
.ws16{word-spacing:214.755248pt;}
.ws12{word-spacing:216.728050pt;}
._a{margin-left:-4.416000pt;}
._b{margin-left:-3.200000pt;}
._1a{margin-left:-2.257920pt;}
._0{margin-left:-1.295360pt;}
._1{width:1.407573pt;}
._15{width:2.320213pt;}
._8{width:3.264000pt;}
._9{width:4.320000pt;}
._12{width:6.080000pt;}
._d{width:7.296000pt;}
._e{width:8.320000pt;}
._10{width:9.327360pt;}
._f{width:10.304000pt;}
._16{width:11.472640pt;}
._1b{width:12.419200pt;}
._4{width:13.363840pt;}
._13{width:14.791680pt;}
._11{width:17.088000pt;}
._19{width:18.688000pt;}
._14{width:19.840000pt;}
._2b{width:21.290667pt;}
._c{width:22.400000pt;}
._27{width:24.128000pt;}
._28{width:25.152427pt;}
._17{width:39.168000pt;}
._18{width:40.480000pt;}
._2{width:42.769707pt;}
._3{width:44.007040pt;}
._1c{width:81.969067pt;}
._7{width:123.633707pt;}
._23{width:126.113887pt;}
._20{width:138.259301pt;}
._6{width:145.254187pt;}
._5{width:146.832000pt;}
._25{width:154.558585pt;}
._1d{width:172.778667pt;}
._22{width:180.302509pt;}
._2a{width:182.280279pt;}
._29{width:194.364113pt;}
._1f{width:196.573048pt;}
._26{width:205.115368pt;}
._1e{width:208.750461pt;}
._21{width:221.055173pt;}
._24{width:241.230006pt;}
.fs7{font-size:36.608712pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:51.998447pt;}
.fs8{font-size:52.058505pt;}
.fs6{font-size:53.014839pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:3.992287pt;}
.y11a{bottom:3.994259pt;}
.ycd{bottom:4.067666pt;}
.yc6{bottom:4.094755pt;}
.yed{bottom:4.094783pt;}
.ydc{bottom:4.108342pt;}
.y15a{bottom:6.004961pt;}
.y15c{bottom:6.005015pt;}
.y10f{bottom:6.101423pt;}
.y108{bottom:6.101477pt;}
.yf8{bottom:6.128594pt;}
.yf2{bottom:6.128601pt;}
.y103{bottom:6.135374pt;}
.y100{bottom:6.138086pt;}
.yfb{bottom:6.142153pt;}
.yf5{bottom:6.142159pt;}
.y137{bottom:6.985958pt;}
.y10d{bottom:7.118344pt;}
.y7e{bottom:8.800000pt;}
.y87{bottom:9.440000pt;}
.y117{bottom:11.982776pt;}
.y155{bottom:12.009813pt;}
.yc2{bottom:13.246933pt;}
.ybf{bottom:13.246936pt;}
.y7d{bottom:19.520000pt;}
.y86{bottom:20.160000pt;}
.y157{bottom:20.984166pt;}
.y152{bottom:20.984211pt;}
.y119{bottom:20.996486pt;}
.yca{bottom:21.382203pt;}
.yc5{bottom:21.382205pt;}
.y88{bottom:21.760000pt;}
.y116{bottom:28.985004pt;}
.y136{bottom:28.987667pt;}
.y154{bottom:29.001693pt;}
.y10b{bottom:29.524503pt;}
.yc1{bottom:30.575057pt;}
.ybe{bottom:30.575059pt;}
.y118{bottom:37.972086pt;}
.y156{bottom:38.009040pt;}
.yc4{bottom:38.710327pt;}
.y135{bottom:50.989375pt;}
.y109{bottom:51.930390pt;}
.y134{bottom:72.991083pt;}
.y5{bottom:72.992000pt;}
.y106{bottom:74.336278pt;}
.y133{bottom:94.992791pt;}
.y4{bottom:96.352000pt;}
.y104{bottom:96.776063pt;}
.y3{bottom:113.312000pt;}
.y132{bottom:116.994499pt;}
.y101{bottom:119.181950pt;}
.y2{bottom:130.272000pt;}
.y131{bottom:139.000202pt;}
.yfe{bottom:141.590550pt;}
.y32{bottom:147.866667pt;}
.yba{bottom:149.626667pt;}
.y51{bottom:157.786667pt;}
.y130{bottom:160.995253pt;}
.y98{bottom:162.746667pt;}
.yfc{bottom:163.989658pt;}
.y31{bottom:166.266667pt;}
.y6a{bottom:168.186667pt;}
.yb9{bottom:173.466667pt;}
.y12f{bottom:183.003618pt;}
.y150{bottom:183.546667pt;}
.y30{bottom:184.666667pt;}
.y50{bottom:185.466667pt;}
.yf9{bottom:186.402325pt;}
.y112{bottom:190.266667pt;}
.y97{bottom:190.426667pt;}
.y69{bottom:195.866667pt;}
.y7b{bottom:197.146667pt;}
.y2f{bottom:203.066667pt;}
.y12e{bottom:204.998669pt;}
.y14f{bottom:207.226667pt;}
.yf6{bottom:208.801434pt;}
.y4f{bottom:212.986667pt;}
.y96{bottom:217.946667pt;}
.yb8{bottom:220.826667pt;}
.y2e{bottom:221.466667pt;}
.y68{bottom:223.386667pt;}
.y7a{bottom:224.666667pt;}
.y14e{bottom:225.626667pt;}
.y12d{bottom:227.007034pt;}
.yf3{bottom:231.214101pt;}
.y2d{bottom:239.866667pt;}
.y4e{bottom:240.666667pt;}
.y111{bottom:245.466667pt;}
.y95{bottom:245.626667pt;}
.y12c{bottom:249.002085pt;}
.y14d{bottom:249.466667pt;}
.y67{bottom:251.066667pt;}
.y79{bottom:252.346667pt;}
.yf0{bottom:253.613209pt;}
.yb7{bottom:253.786667pt;}
.y2c{bottom:258.266667pt;}
.y4d{bottom:268.186667pt;}
.y12b{bottom:271.010451pt;}
.y94{bottom:273.146667pt;}
.yee{bottom:273.992059pt;}
.y2b{bottom:276.666667pt;}
.y66{bottom:278.586667pt;}
.y78{bottom:279.866667pt;}
.yb6{bottom:281.466667pt;}
.y14c{bottom:291.546667pt;}
.y12a{bottom:293.005502pt;}
.y110{bottom:293.306667pt;}
.yeb{bottom:293.340441pt;}
.y113{bottom:294.426667pt;}
.y2a{bottom:295.066667pt;}
.y4c{bottom:295.866667pt;}
.y93{bottom:300.866667pt;}
.y65{bottom:306.306667pt;}
.y77{bottom:307.586667pt;}
.yb5{bottom:309.026667pt;}
.y14b{bottom:309.986667pt;}
.ye9{bottom:312.661706pt;}
.y29{bottom:313.506667pt;}
.y129{bottom:315.013867pt;}
.y4b{bottom:323.426667pt;}
.y14a{bottom:328.386667pt;}
.ybb{bottom:331.430479pt;}
.y28{bottom:331.906667pt;}
.ye7{bottom:332.023647pt;}
.y10e{bottom:332.447390pt;}
.yb4{bottom:332.706667pt;}
.y64{bottom:333.826667pt;}
.y76{bottom:335.106667pt;}
.y92{bottom:335.746667pt;}
.y128{bottom:337.008918pt;}
.y149{bottom:346.786667pt;}
.y27{bottom:350.306667pt;}
.y4a{bottom:351.106667pt;}
.ye5{bottom:351.372029pt;}
.y10c{bottom:354.853494pt;}
.yb3{bottom:356.546667pt;}
.y127{bottom:358.977341pt;}
.y63{bottom:361.506667pt;}
.y75{bottom:362.786667pt;}
.y148{bottom:365.186667pt;}
.y26{bottom:368.706667pt;}
.ye3{bottom:370.733970pt;}
.y91{bottom:373.986667pt;}
.y10a{bottom:377.259382pt;}
.y49{bottom:378.626667pt;}
.yb2{bottom:380.226667pt;}
.y126{bottom:380.985706pt;}
.y147{bottom:383.586667pt;}
.y25{bottom:387.106667pt;}
.y62{bottom:389.026667pt;}
.ye1{bottom:390.082353pt;}
.y74{bottom:390.306667pt;}
.y107{bottom:399.665270pt;}
.y90{bottom:401.506667pt;}
.y146{bottom:401.986667pt;}
.y125{bottom:402.980757pt;}
.yb1{bottom:403.906667pt;}
.y24{bottom:405.506667pt;}
.y48{bottom:406.306667pt;}
.ydf{bottom:409.444294pt;}
.y61{bottom:416.706667pt;}
.y73{bottom:417.986667pt;}
.y145{bottom:420.386667pt;}
.y105{bottom:422.071158pt;}
.y23{bottom:423.906667pt;}
.y124{bottom:424.989122pt;}
.yb0{bottom:427.746667pt;}
.ydd{bottom:428.792676pt;}
.y8f{bottom:429.186667pt;}
.y47{bottom:433.826667pt;}
.y22{bottom:442.306667pt;}
.y144{bottom:444.066667pt;}
.y60{bottom:444.226667pt;}
.y102{bottom:444.477045pt;}
.y72{bottom:445.506667pt;}
.y123{bottom:446.984173pt;}
.yda{bottom:448.154617pt;}
.yaf{bottom:451.426667pt;}
.y8e{bottom:456.866667pt;}
.y21{bottom:460.706667pt;}
.y46{bottom:461.506667pt;}
.yff{bottom:466.882933pt;}
.yd8{bottom:467.475882pt;}
.y143{bottom:468.226667pt;}
.y122{bottom:468.992539pt;}
.y5f{bottom:471.906667pt;}
.y71{bottom:473.186667pt;}
.yae{bottom:475.106667pt;}
.y20{bottom:479.106667pt;}
.y8d{bottom:484.866667pt;}
.yd6{bottom:486.824264pt;}
.y45{bottom:489.026667pt;}
.yfd{bottom:489.291533pt;}
.y121{bottom:490.987590pt;}
.y5e{bottom:496.066667pt;}
.y1f{bottom:497.506667pt;}
.yad{bottom:498.946667pt;}
.y70{bottom:500.706667pt;}
.yd4{bottom:506.186205pt;}
.y142{bottom:506.466667pt;}
.yfa{bottom:511.690641pt;}
.y8c{bottom:512.706667pt;}
.y120{bottom:512.995955pt;}
.y1e{bottom:515.906667pt;}
.y44{bottom:516.706667pt;}
.yac{bottom:522.626667pt;}
.y5d{bottom:525.026667pt;}
.yd2{bottom:525.534587pt;}
.y6f{bottom:528.386667pt;}
.yf7{bottom:534.103308pt;}
.y141{bottom:534.146667pt;}
.y1d{bottom:534.306667pt;}
.y11f{bottom:534.991006pt;}
.y8b{bottom:540.893333pt;}
.y43{bottom:544.253333pt;}
.yd0{bottom:544.896529pt;}
.yab{bottom:546.333333pt;}
.y1c{bottom:552.573333pt;}
.y6e{bottom:555.933333pt;}
.yf4{bottom:556.502416pt;}
.y11e{bottom:556.999371pt;}
.y140{bottom:561.693333pt;}
.yce{bottom:564.244911pt;}
.y8a{bottom:568.893333pt;}
.yaa{bottom:570.173333pt;}
.y1b{bottom:570.973333pt;}
.y42{bottom:571.773333pt;}
.yf1{bottom:578.915083pt;}
.y11d{bottom:578.994422pt;}
.y5c{bottom:580.253333pt;}
.ycb{bottom:583.606852pt;}
.y6d{bottom:583.613333pt;}
.y1a{bottom:589.373333pt;}
.ya9{bottom:593.853333pt;}
.y89{bottom:596.893333pt;}
.y41{bottom:599.453333pt;}
.y11c{bottom:601.002788pt;}
.yef{bottom:601.314192pt;}
.y19{bottom:607.773333pt;}
.y6c{bottom:611.133333pt;}
.y85{bottom:611.773333pt;}
.y13f{bottom:616.893333pt;}
.ya8{bottom:617.533333pt;}
.ybc{bottom:620.242683pt;}
.yec{bottom:620.676133pt;}
.y11b{bottom:622.997839pt;}
.y18{bottom:626.173333pt;}
.y40{bottom:626.973333pt;}
.y6b{bottom:631.293333pt;}
.y5b{bottom:635.453333pt;}
.yea{bottom:640.024515pt;}
.ya7{bottom:641.373333pt;}
.y17{bottom:644.573333pt;}
.y3f{bottom:654.653333pt;}
.ye8{bottom:659.386456pt;}
.y114{bottom:660.011302pt;}
.y16{bottom:662.973333pt;}
.ya6{bottom:665.053333pt;}
.y84{bottom:670.173333pt;}
.y13e{bottom:672.093333pt;}
.ye6{bottom:678.734839pt;}
.y15{bottom:681.373333pt;}
.y3e{bottom:682.173333pt;}
.ya5{bottom:688.733333pt;}
.y5a{bottom:690.653333pt;}
.y83{bottom:698.013333pt;}
.ye4{bottom:698.096780pt;}
.y14{bottom:699.773333pt;}
.y3d{bottom:709.853333pt;}
.ya4{bottom:712.573333pt;}
.ye2{bottom:717.445162pt;}
.y13{bottom:718.173333pt;}
.y82{bottom:726.173333pt;}
.y13d{bottom:727.293333pt;}
.ya3{bottom:736.253333pt;}
.y12{bottom:736.573333pt;}
.ye0{bottom:736.807103pt;}
.y3c{bottom:737.373333pt;}
.y59{bottom:745.853333pt;}
.y81{bottom:754.333333pt;}
.y13c{bottom:754.813333pt;}
.y11{bottom:754.973333pt;}
.yde{bottom:756.155485pt;}
.ya2{bottom:759.933333pt;}
.y3b{bottom:765.053333pt;}
.y10{bottom:773.373333pt;}
.ydb{bottom:775.476750pt;}
.y80{bottom:782.533333pt;}
.ya1{bottom:783.813333pt;}
.yf{bottom:791.813333pt;}
.y3a{bottom:792.613333pt;}
.yd9{bottom:794.838691pt;}
.y58{bottom:801.093333pt;}
.y164{bottom:802.053333pt;}
.ya0{bottom:807.493333pt;}
.y13b{bottom:810.053333pt;}
.ye{bottom:810.213333pt;}
.y7f{bottom:810.693333pt;}
.yd7{bottom:814.187074pt;}
.y39{bottom:820.293333pt;}
.y163{bottom:825.733333pt;}
.y7c{bottom:825.893333pt;}
.y57{bottom:828.613333pt;}
.yd{bottom:829.893333pt;}
.y9f{bottom:831.173333pt;}
.yd5{bottom:833.549015pt;}
.y13a{bottom:837.733333pt;}
.y162{bottom:844.133333pt;}
.y38{bottom:847.813333pt;}
.yd3{bottom:852.897397pt;}
.yc{bottom:854.373333pt;}
.y9e{bottom:854.853333pt;}
.y56{bottom:856.293333pt;}
.y139{bottom:861.893333pt;}
.y161{bottom:867.813333pt;}
.yd1{bottom:872.259338pt;}
.y37{bottom:875.493333pt;}
.y9d{bottom:878.693333pt;}
.yb{bottom:878.853333pt;}
.y55{bottom:883.813333pt;}
.y138{bottom:887.333333pt;}
.y15b{bottom:889.412532pt;}
.ycf{bottom:891.607720pt;}
.y160{bottom:891.653333pt;}
.ya{bottom:902.213333pt;}
.y9c{bottom:902.373333pt;}
.y36{bottom:903.013333pt;}
.y15f{bottom:910.053333pt;}
.ycc{bottom:910.969661pt;}
.y159{bottom:911.419410pt;}
.y54{bottom:911.493333pt;}
.y9{bottom:921.893333pt;}
.y9b{bottom:926.053333pt;}
.yc9{bottom:930.290926pt;}
.yc8{bottom:930.290930pt;}
.yc7{bottom:930.290935pt;}
.yc3{bottom:930.290939pt;}
.yc0{bottom:930.290944pt;}
.ybd{bottom:930.290948pt;}
.y35{bottom:930.693333pt;}
.y151{bottom:933.426367pt;}
.y153{bottom:933.426391pt;}
.y115{bottom:933.441483pt;}
.y15e{bottom:933.733333pt;}
.y53{bottom:939.013333pt;}
.y8{bottom:946.373333pt;}
.y9a{bottom:949.893333pt;}
.y34{bottom:954.853333pt;}
.y15d{bottom:957.413333pt;}
.y52{bottom:966.693333pt;}
.y7{bottom:970.853333pt;}
.y99{bottom:972.933333pt;}
.y33{bottom:975.813333pt;}
.y6{bottom:994.213333pt;}
.y1{bottom:1096.800000pt;}
.h10{height:18.304392pt;}
.h11{height:18.338289pt;}
.h1a{height:21.017211pt;}
.h12{height:21.389015pt;}
.h7{height:45.280000pt;}
.ha{height:45.760000pt;}
.hb{height:47.621250pt;}
.h15{height:50.993369pt;}
.h18{height:51.008651pt;}
.h19{height:51.008653pt;}
.h16{height:51.008701pt;}
.h17{height:51.719158pt;}
.h14{height:51.778894pt;}
.hd{height:52.730091pt;}
.h5{height:52.750000pt;}
.h3{height:52.785000pt;}
.hf{height:52.980946pt;}
.he{height:52.980947pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h4{height:75.602187pt;}
.h9{height:100.255000pt;}
.h8{height:104.327500pt;}
.hc{height:651.838494pt;}
.h13{height:690.004203pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:33.120000pt;}
.w7{width:64.157852pt;}
.wa{width:72.291969pt;}
.w10{width:74.991289pt;}
.wd{width:76.009436pt;}
.w9{width:76.392920pt;}
.w11{width:79.008086pt;}
.w8{width:83.510273pt;}
.we{width:92.007927pt;}
.w6{width:93.711812pt;}
.wc{width:234.002875pt;}
.w13{width:239.002730pt;}
.w12{width:239.002738pt;}
.wf{width:239.002757pt;}
.w3{width:571.613333pt;}
.wb{width:603.958220pt;}
.w5{width:603.958229pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:2.033530pt;}
.x16{left:3.036738pt;}
.x1d{left:5.070267pt;}
.x23{left:6.127702pt;}
.xe{left:7.200000pt;}
.x30{left:10.025405pt;}
.x2e{left:10.988111pt;}
.x31{left:12.017211pt;}
.x13{left:13.251833pt;}
.x15{left:17.312114pt;}
.x22{left:18.328878pt;}
.x32{left:22.009396pt;}
.x20{left:24.429467pt;}
.x1c{left:25.446231pt;}
.x18{left:28.496525pt;}
.x1e{left:31.573933pt;}
.x1a{left:34.637784pt;}
.xb{left:75.834667pt;}
.x24{left:86.560567pt;}
.x2{left:113.471988pt;}
.x7{left:142.266655pt;}
.x5{left:143.226655pt;}
.x4{left:151.226655pt;}
.x8{left:159.226655pt;}
.x11{left:160.666655pt;}
.xf{left:174.274667pt;}
.x25{left:188.399717pt;}
.xc{left:191.234667pt;}
.x26{left:217.626655pt;}
.x6{left:236.346655pt;}
.x14{left:257.757932pt;}
.x12{left:276.066655pt;}
.x9{left:311.906655pt;}
.x2c{left:315.662531pt;}
.x28{left:317.662387pt;}
.x10{left:352.061333pt;}
.x29{left:381.656355pt;}
.x2d{left:398.687394pt;}
.x17{left:417.661124pt;}
.x1{left:434.813322pt;}
.x2a{left:458.661545pt;}
.x2f{left:474.674564pt;}
.x1b{left:502.188161pt;}
.x27{left:552.733322pt;}
.x2b{left:554.813322pt;}
.xa{left:567.773322pt;}
.x1f{left:579.597846pt;}
.x21{left:652.899801pt;}
.xd{left:685.093333pt;}
.x3{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; }
  