
    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_b8aa12fa2d66498c72d0539a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_33c055020e8d7fa6a6eecbc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959473;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_86343ad81cf4f001568beea8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_626e0c753d548e721b54c824.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_e92eaf13880fd3745c69648b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_b82f691a01c3e71969eff9dd.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d12127ddf82ac63d4877f96a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_04b72dc814f9eb92bff5bd62.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933594;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.864000px;}
.ls4{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005040px;}
.ls0{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.212400px;}
.lse{letter-spacing:0.226080px;}
.ls2{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.313920px;}
.ls9{letter-spacing:0.432000px;}
.ls1{letter-spacing:13.680000px;}
.ls6{letter-spacing:1322.250240px;}
.ls5{letter-spacing:1431.096000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.wsc{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.424000px;}
.ws2{word-spacing:-17.352000px;}
.wsb{word-spacing:-15.152400px;}
.wsd{word-spacing:-14.945040px;}
.wsa{word-spacing:-14.940000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._25{margin-left:-214.685520px;}
._22{margin-left:-196.206720px;}
._26{margin-left:-56.850480px;}
._28{margin-left:-55.160640px;}
._23{margin-left:-50.834880px;}
._2c{margin-left:-47.386080px;}
._2d{margin-left:-27.329040px;}
._27{margin-left:-25.827120px;}
._2a{margin-left:-18.894960px;}
._29{margin-left:-7.571520px;}
._2b{margin-left:-6.538320px;}
._24{margin-left:-4.145760px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._11{width:2.304000px;}
._e{width:4.140000px;}
._d{width:5.256000px;}
._12{width:6.840000px;}
._b{width:7.920000px;}
._a{width:9.072000px;}
._c{width:10.296000px;}
._f{width:12.234000px;}
._14{width:13.350000px;}
._13{width:14.388000px;}
._17{width:15.474000px;}
._10{width:16.506000px;}
._36{width:19.224000px;}
._15{width:20.304000px;}
._16{width:21.354000px;}
._1d{width:22.752000px;}
._30{width:23.778000px;}
._2f{width:25.488000px;}
._1f{width:27.000000px;}
._1e{width:28.296000px;}
._4{width:29.754000px;}
._3b{width:30.816000px;}
._3a{width:32.328000px;}
._3d{width:33.552000px;}
._37{width:35.208000px;}
._48{width:36.588000px;}
._47{width:37.728000px;}
._35{width:39.240000px;}
._3c{width:40.320000px;}
._1b{width:41.760000px;}
._1a{width:42.840000px;}
._31{width:45.000000px;}
._19{width:47.340000px;}
._18{width:48.600000px;}
._4c{width:50.976000px;}
._34{width:54.144000px;}
._33{width:56.160000px;}
._32{width:57.816000px;}
._49{width:64.740000px;}
._43{width:66.096000px;}
._44{width:67.104000px;}
._42{width:68.760000px;}
._3f{width:70.200000px;}
._9{width:71.496000px;}
._2e{width:72.648000px;}
._7{width:85.188000px;}
._1c{width:88.992000px;}
._3{width:90.504000px;}
._41{width:92.576880px;}
._40{width:94.065120px;}
._8{width:104.736000px;}
._46{width:119.304000px;}
._45{width:120.600000px;}
._4b{width:135.720000px;}
._3e{width:145.728000px;}
._4a{width:162.648000px;}
._21{width:180.120720px;}
._39{width:193.675440px;}
._38{width:195.124560px;}
._6{width:641.556000px;}
._20{width:1432.554240px;}
._5{width:1433.832000px;}
.fc7{color:rgb(5,99,193);}
.fc6{color:transparent;}
.fc3{color:rgb(19,20,74);}
.fc1{color:rgb(10,120,154);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:75.893905px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y48{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y46{bottom:3.600000px;}
.yf3{bottom:3.960000px;}
.y44{bottom:56.160000px;}
.y6{bottom:57.600000px;}
.y43{bottom:69.660000px;}
.y5{bottom:76.860000px;}
.y4{bottom:91.980000px;}
.y45{bottom:98.280000px;}
.y47{bottom:104.580000px;}
.y3{bottom:107.280000px;}
.y2{bottom:122.400000px;}
.y1{bottom:137.520000px;}
.y42{bottom:148.500000px;}
.y40{bottom:165.990000px;}
.ycf{bottom:167.430000px;}
.y161{bottom:172.830000px;}
.y31{bottom:173.730000px;}
.y136{bottom:173.910000px;}
.yf1{bottom:181.470000px;}
.y17b{bottom:182.910000px;}
.ya5{bottom:184.890000px;}
.y11a{bottom:185.250000px;}
.y78{bottom:185.970000px;}
.y3f{bottom:186.150000px;}
.yce{bottom:187.770000px;}
.y160{bottom:193.170000px;}
.y30{bottom:194.070000px;}
.y135{bottom:194.250000px;}
.yf0{bottom:201.810000px;}
.y17a{bottom:203.250000px;}
.ya4{bottom:205.050000px;}
.y119{bottom:205.410000px;}
.y77{bottom:206.310000px;}
.y3e{bottom:206.490000px;}
.ycd{bottom:207.930000px;}
.y15f{bottom:213.330000px;}
.y2f{bottom:214.230000px;}
.y134{bottom:214.410000px;}
.yef{bottom:221.970000px;}
.y179{bottom:223.410000px;}
.ya3{bottom:225.390000px;}
.y118{bottom:225.750000px;}
.y76{bottom:226.470000px;}
.y3d{bottom:226.650000px;}
.ycc{bottom:228.270000px;}
.y15e{bottom:233.670000px;}
.y2e{bottom:234.570000px;}
.y133{bottom:234.750000px;}
.yee{bottom:242.310000px;}
.ya2{bottom:245.550000px;}
.y117{bottom:245.910000px;}
.y75{bottom:246.810000px;}
.y3c{bottom:246.990000px;}
.ycb{bottom:248.430000px;}
.y178{bottom:252.570000px;}
.y15d{bottom:253.830000px;}
.y2d{bottom:254.730000px;}
.y132{bottom:254.910000px;}
.yed{bottom:262.470000px;}
.ya1{bottom:265.890000px;}
.y116{bottom:266.250000px;}
.y74{bottom:266.970000px;}
.y3b{bottom:267.150000px;}
.yca{bottom:268.770000px;}
.y177{bottom:272.910000px;}
.y15c{bottom:274.170000px;}
.y2c{bottom:275.070000px;}
.y131{bottom:275.250000px;}
.yec{bottom:282.810000px;}
.ya0{bottom:286.050000px;}
.y115{bottom:286.410000px;}
.y73{bottom:287.310000px;}
.y3a{bottom:287.490000px;}
.y176{bottom:293.250000px;}
.y15b{bottom:294.330000px;}
.y2b{bottom:295.230000px;}
.y130{bottom:295.410000px;}
.yc9{bottom:297.930000px;}
.yeb{bottom:302.970000px;}
.y9f{bottom:306.390000px;}
.y114{bottom:306.750000px;}
.y72{bottom:307.470000px;}
.y39{bottom:307.650000px;}
.y175{bottom:313.410000px;}
.y2a{bottom:315.570000px;}
.y12f{bottom:315.750000px;}
.yea{bottom:323.310000px;}
.y15a{bottom:323.490000px;}
.y9e{bottom:326.550000px;}
.y113{bottom:326.910000px;}
.yc8{bottom:327.090000px;}
.y71{bottom:327.810000px;}
.y38{bottom:327.990000px;}
.y29{bottom:335.730000px;}
.y12e{bottom:335.910000px;}
.y174{bottom:342.570000px;}
.ye9{bottom:343.470000px;}
.y9d{bottom:346.890000px;}
.yc7{bottom:347.430000px;}
.y70{bottom:347.970000px;}
.y37{bottom:348.150000px;}
.y159{bottom:352.830000px;}
.y28{bottom:356.070000px;}
.y12d{bottom:356.250000px;}
.y173{bottom:362.910000px;}
.ye8{bottom:363.810000px;}
.y9c{bottom:367.050000px;}
.yc6{bottom:367.770000px;}
.y6f{bottom:368.310000px;}
.y36{bottom:368.490000px;}
.y158{bottom:373.170000px;}
.y27{bottom:376.230000px;}
.y12c{bottom:376.410000px;}
.y172{bottom:383.250000px;}
.ye7{bottom:383.970000px;}
.y112{bottom:385.410000px;}
.y9b{bottom:387.390000px;}
.yc5{bottom:387.930000px;}
.y35{bottom:388.650000px;}
.y157{bottom:393.330000px;}
.y26{bottom:396.570000px;}
.y12b{bottom:396.750000px;}
.y6e{bottom:397.470000px;}
.y171{bottom:403.455000px;}
.ye6{bottom:404.355000px;}
.y111{bottom:405.795000px;}
.y9a{bottom:407.595000px;}
.yc4{bottom:408.315000px;}
.y34{bottom:409.035000px;}
.y156{bottom:413.715000px;}
.y25{bottom:416.775000px;}
.y12a{bottom:416.955000px;}
.y170{bottom:423.795000px;}
.ye5{bottom:424.515000px;}
.y110{bottom:425.955000px;}
.y6d{bottom:427.575000px;}
.y99{bottom:427.935000px;}
.yc3{bottom:428.475000px;}
.y33{bottom:429.195000px;}
.y155{bottom:433.875000px;}
.y129{bottom:437.295000px;}
.y16f{bottom:443.955000px;}
.ye4{bottom:444.855000px;}
.y10f{bottom:446.295000px;}
.y24{bottom:446.835000px;}
.y98{bottom:448.095000px;}
.yc2{bottom:448.815000px;}
.y32{bottom:449.535000px;}
.y154{bottom:454.215000px;}
.y128{bottom:457.455000px;}
.y6c{bottom:459.255000px;}
.y16e{bottom:464.295000px;}
.ye3{bottom:465.015000px;}
.y10e{bottom:466.455000px;}
.y97{bottom:468.435000px;}
.yc1{bottom:468.975000px;}
.y153{bottom:474.375000px;}
.y127{bottom:477.795000px;}
.y23{bottom:478.695000px;}
.y6b{bottom:479.595000px;}
.y16d{bottom:484.455000px;}
.ye2{bottom:485.355000px;}
.y10d{bottom:486.795000px;}
.y96{bottom:488.595000px;}
.yc0{bottom:489.315000px;}
.y152{bottom:494.715000px;}
.y126{bottom:497.955000px;}
.y6a{bottom:499.935000px;}
.y16c{bottom:504.795000px;}
.ye1{bottom:505.515000px;}
.y10c{bottom:506.955000px;}
.y22{bottom:507.855000px;}
.ybf{bottom:509.475000px;}
.y151{bottom:514.875000px;}
.y95{bottom:517.755000px;}
.y125{bottom:518.295000px;}
.y69{bottom:520.095000px;}
.y16b{bottom:524.955000px;}
.ye0{bottom:525.855000px;}
.y10b{bottom:527.295000px;}
.ybe{bottom:529.815000px;}
.y150{bottom:535.215000px;}
.y94{bottom:538.095000px;}
.y124{bottom:538.455000px;}
.y68{bottom:540.435000px;}
.y21{bottom:543.315000px;}
.ydf{bottom:546.015000px;}
.y10a{bottom:547.455000px;}
.ybd{bottom:549.975000px;}
.y16a{bottom:554.115000px;}
.y14f{bottom:555.375000px;}
.y123{bottom:558.795000px;}
.y67{bottom:560.595000px;}
.yde{bottom:566.355000px;}
.y20{bottom:566.715000px;}
.y93{bottom:567.255000px;}
.y109{bottom:567.795000px;}
.ybc{bottom:570.315000px;}
.y169{bottom:574.455000px;}
.y14e{bottom:575.715000px;}
.y122{bottom:578.955000px;}
.y66{bottom:580.935000px;}
.y108{bottom:587.955000px;}
.y1f{bottom:589.935000px;}
.ybb{bottom:590.475000px;}
.y168{bottom:594.795000px;}
.ydd{bottom:595.515000px;}
.y14d{bottom:595.875000px;}
.y92{bottom:596.595000px;}
.y65{bottom:601.095000px;}
.y121{bottom:608.115000px;}
.y107{bottom:608.295000px;}
.yba{bottom:610.815000px;}
.y167{bottom:614.955000px;}
.y14c{bottom:616.215000px;}
.y91{bottom:616.935000px;}
.y1e{bottom:618.915000px;}
.y64{bottom:621.435000px;}
.ydc{bottom:625.575000px;}
.y106{bottom:628.455000px;}
.yb9{bottom:630.975000px;}
.y166{bottom:635.295000px;}
.y14b{bottom:636.375000px;}
.y90{bottom:637.095000px;}
.y120{bottom:637.455000px;}
.y63{bottom:641.595000px;}
.y1d{bottom:648.255000px;}
.y105{bottom:648.795000px;}
.yb8{bottom:651.345000px;}
.y165{bottom:655.485000px;}
.y14a{bottom:656.745000px;}
.ydb{bottom:657.285000px;}
.y8f{bottom:657.465000px;}
.y11f{bottom:657.825000px;}
.y62{bottom:661.965000px;}
.y1c{bottom:668.625000px;}
.y104{bottom:668.985000px;}
.yb7{bottom:671.505000px;}
.y164{bottom:675.825000px;}
.y149{bottom:676.905000px;}
.y8e{bottom:677.625000px;}
.y11e{bottom:677.985000px;}
.y61{bottom:682.125000px;}
.y1b{bottom:688.785000px;}
.y103{bottom:689.325000px;}
.yb6{bottom:691.845000px;}
.y148{bottom:697.245000px;}
.y8d{bottom:697.965000px;}
.y11d{bottom:698.325000px;}
.y60{bottom:702.465000px;}
.y163{bottom:705.885000px;}
.y1a{bottom:709.125000px;}
.y102{bottom:709.485000px;}
.y147{bottom:717.405000px;}
.y8c{bottom:718.125000px;}
.y11c{bottom:718.485000px;}
.yb5{bottom:721.005000px;}
.y5f{bottom:722.625000px;}
.y19{bottom:729.285000px;}
.y162{bottom:737.565000px;}
.y146{bottom:737.745000px;}
.y8b{bottom:738.465000px;}
.y101{bottom:738.645000px;}
.y11b{bottom:738.825000px;}
.y5e{bottom:742.965000px;}
.y18{bottom:749.625000px;}
.yb4{bottom:750.165000px;}
.y8a{bottom:758.625000px;}
.y5d{bottom:763.125000px;}
.y145{bottom:767.625000px;}
.y100{bottom:767.985000px;}
.y17{bottom:769.785000px;}
.yb3{bottom:770.505000px;}
.y89{bottom:778.965000px;}
.yda{bottom:787.785000px;}
.y16{bottom:790.125000px;}
.yb2{bottom:790.845000px;}
.y5c{bottom:792.285000px;}
.yff{bottom:797.145000px;}
.y88{bottom:799.125000px;}
.y144{bottom:799.485000px;}
.y15{bottom:810.285000px;}
.yb1{bottom:811.005000px;}
.y5b{bottom:812.625000px;}
.yd9{bottom:817.125000px;}
.yfe{bottom:817.485000px;}
.y87{bottom:819.465000px;}
.y143{bottom:828.645000px;}
.y14{bottom:830.625000px;}
.yb0{bottom:831.345000px;}
.y5a{bottom:832.965000px;}
.yd8{bottom:837.465000px;}
.yfd{bottom:837.825000px;}
.y86{bottom:839.625000px;}
.y142{bottom:848.985000px;}
.y13{bottom:850.785000px;}
.yaf{bottom:851.505000px;}
.y59{bottom:853.125000px;}
.yd7{bottom:857.625000px;}
.yfc{bottom:857.985000px;}
.y85{bottom:859.965000px;}
.y141{bottom:869.325000px;}
.y12{bottom:871.125000px;}
.yae{bottom:871.845000px;}
.y58{bottom:873.465000px;}
.yfb{bottom:874.365000px;}
.yd6{bottom:877.965000px;}
.y84{bottom:880.125000px;}
.y181{bottom:886.785000px;}
.y140{bottom:889.485000px;}
.yfa{bottom:892.005000px;}
.yad{bottom:893.265000px;}
.y57{bottom:893.625000px;}
.yd5{bottom:898.170000px;}
.y11{bottom:901.230000px;}
.y13f{bottom:905.910000px;}
.y83{bottom:909.330000px;}
.yf9{bottom:909.690000px;}
.yac{bottom:913.650000px;}
.y56{bottom:914.010000px;}
.y180{bottom:916.170000px;}
.yd4{bottom:918.510000px;}
.y13e{bottom:923.550000px;}
.yf8{bottom:927.330000px;}
.y82{bottom:929.670000px;}
.y10{bottom:932.910000px;}
.y55{bottom:934.170000px;}
.yab{bottom:935.250000px;}
.y17d{bottom:936.510000px;}
.y13d{bottom:941.190000px;}
.yf7{bottom:944.970000px;}
.yd3{bottom:947.670000px;}
.y54{bottom:954.510000px;}
.yaa{bottom:956.670000px;}
.y81{bottom:958.830000px;}
.yf{bottom:962.250000px;}
.yf6{bottom:962.610000px;}
.y53{bottom:974.670000px;}
.y13c{bottom:976.470000px;}
.yd2{bottom:976.830000px;}
.ya9{bottom:977.010000px;}
.yf5{bottom:980.250000px;}
.ye{bottom:982.590000px;}
.y80{bottom:988.170000px;}
.y13b{bottom:994.110000px;}
.y52{bottom:995.010000px;}
.ya8{bottom:997.170000px;}
.yf4{bottom:997.890000px;}
.yd1{bottom:1006.170000px;}
.yd{bottom:1011.750000px;}
.y51{bottom:1015.170000px;}
.yf2{bottom:1015.350000px;}
.y7f{bottom:1017.330000px;}
.ya7{bottom:1017.510000px;}
.y17f{bottom:1026.330000px;}
.y17c{bottom:1026.510000px;}
.y13a{bottom:1029.390000px;}
.yd0{bottom:1035.330000px;}
.y50{bottom:1035.510000px;}
.yc{bottom:1040.910000px;}
.y7e{bottom:1046.670000px;}
.y139{bottom:1046.850000px;}
.y4f{bottom:1055.670000px;}
.yb{bottom:1061.250000px;}
.y7d{bottom:1067.010000px;}
.ya6{bottom:1075.830000px;}
.y4e{bottom:1076.010000px;}
.y138{bottom:1078.170000px;}
.ya{bottom:1081.590000px;}
.y7c{bottom:1087.170000px;}
.y4d{bottom:1096.170000px;}
.y137{bottom:1107.330000px;}
.y7b{bottom:1107.510000px;}
.y4c{bottom:1116.510000px;}
.y9{bottom:1122.090000px;}
.y7a{bottom:1127.670000px;}
.y4b{bottom:1136.670000px;}
.y79{bottom:1148.040000px;}
.y8{bottom:1149.120000px;}
.y17e{bottom:1156.860000px;}
.y4a{bottom:1157.040000px;}
.y49{bottom:1177.200000px;}
.y7{bottom:1183.320000px;}
.y41{bottom:1196.820000px;}
.h10{height:10.620000px;}
.h12{height:16.740000px;}
.h11{height:16.920000px;}
.h13{height:16.956000px;}
.he{height:22.500000px;}
.h2{height:36.571289px;}
.h3{height:37.599609px;}
.hc{height:41.610234px;}
.h8{height:48.761719px;}
.h5{height:50.132812px;}
.h9{height:52.844096px;}
.h7{height:53.332031px;}
.hb{height:56.437031px;}
.ha{height:58.655391px;}
.hd{height:59.439023px;}
.h4{height:65.884219px;}
.h6{height:66.676641px;}
.hf{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.wa{width:85.320000px;}
.w5{width:89.280000px;}
.w8{width:101.556000px;}
.w7{width:116.280000px;}
.w9{width:130.860000px;}
.wc{width:173.910000px;}
.wd{width:194.790000px;}
.wb{width:265.170000px;}
.w6{width:280.335000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x11{left:10.836000px;}
.x10{left:13.500000px;}
.x2{left:84.995987px;}
.x18{left:106.055987px;}
.xa{left:136.475987px;}
.x4{left:163.109987px;}
.x3{left:171.389987px;}
.x15{left:176.070000px;}
.x6{left:188.669987px;}
.x7{left:198.389987px;}
.x12{left:215.669987px;}
.x13{left:242.849987px;}
.x5{left:367.274987px;}
.x9{left:387.794987px;}
.xd{left:409.214987px;}
.x19{left:437.835000px;}
.x8{left:446.504987px;}
.x16{left:457.125000px;}
.xe{left:473.144987px;}
.x17{left:574.125000px;}
.x1a{left:612.465000px;}
.xb{left:676.589987px;}
.xc{left:681.089987px;}
.x1{left:808.019987px;}
.xf{left:810.360000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.768000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004480pt;}
.ls0{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.188800pt;}
.lse{letter-spacing:0.200960pt;}
.ls2{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.279040pt;}
.ls9{letter-spacing:0.384000pt;}
.ls1{letter-spacing:12.160000pt;}
.ls6{letter-spacing:1175.333547pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.wsc{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.488000pt;}
.ws2{word-spacing:-15.424000pt;}
.wsb{word-spacing:-13.468800pt;}
.wsd{word-spacing:-13.284480pt;}
.wsa{word-spacing:-13.280000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._25{margin-left:-190.831573pt;}
._22{margin-left:-174.405973pt;}
._26{margin-left:-50.533760pt;}
._28{margin-left:-49.031680pt;}
._23{margin-left:-45.186560pt;}
._2c{margin-left:-42.120960pt;}
._2d{margin-left:-24.292480pt;}
._27{margin-left:-22.957440pt;}
._2a{margin-left:-16.795520pt;}
._29{margin-left:-6.730240pt;}
._2b{margin-left:-5.811840pt;}
._24{margin-left:-3.685120pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._11{width:2.048000pt;}
._e{width:3.680000pt;}
._d{width:4.672000pt;}
._12{width:6.080000pt;}
._b{width:7.040000pt;}
._a{width:8.064000pt;}
._c{width:9.152000pt;}
._f{width:10.874667pt;}
._14{width:11.866667pt;}
._13{width:12.789333pt;}
._17{width:13.754667pt;}
._10{width:14.672000pt;}
._36{width:17.088000pt;}
._15{width:18.048000pt;}
._16{width:18.981333pt;}
._1d{width:20.224000pt;}
._30{width:21.136000pt;}
._2f{width:22.656000pt;}
._1f{width:24.000000pt;}
._1e{width:25.152000pt;}
._4{width:26.448000pt;}
._3b{width:27.392000pt;}
._3a{width:28.736000pt;}
._3d{width:29.824000pt;}
._37{width:31.296000pt;}
._48{width:32.522667pt;}
._47{width:33.536000pt;}
._35{width:34.880000pt;}
._3c{width:35.840000pt;}
._1b{width:37.120000pt;}
._1a{width:38.080000pt;}
._31{width:40.000000pt;}
._19{width:42.080000pt;}
._18{width:43.200000pt;}
._4c{width:45.312000pt;}
._34{width:48.128000pt;}
._33{width:49.920000pt;}
._32{width:51.392000pt;}
._49{width:57.546667pt;}
._43{width:58.752000pt;}
._44{width:59.648000pt;}
._42{width:61.120000pt;}
._3f{width:62.400000pt;}
._9{width:63.552000pt;}
._2e{width:64.576000pt;}
._7{width:75.722667pt;}
._1c{width:79.104000pt;}
._3{width:80.448000pt;}
._41{width:82.290560pt;}
._40{width:83.613440pt;}
._8{width:93.098667pt;}
._46{width:106.048000pt;}
._45{width:107.200000pt;}
._4b{width:120.640000pt;}
._3e{width:129.536000pt;}
._4a{width:144.576000pt;}
._21{width:160.107307pt;}
._39{width:172.155947pt;}
._38{width:173.444053pt;}
._6{width:570.272000pt;}
._20{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:67.461249pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y48{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y46{bottom:3.200000pt;}
.yf3{bottom:3.520000pt;}
.y44{bottom:49.920000pt;}
.y6{bottom:51.200000pt;}
.y43{bottom:61.920000pt;}
.y5{bottom:68.320000pt;}
.y4{bottom:81.760000pt;}
.y45{bottom:87.360000pt;}
.y47{bottom:92.960000pt;}
.y3{bottom:95.360000pt;}
.y2{bottom:108.800000pt;}
.y1{bottom:122.240000pt;}
.y42{bottom:132.000000pt;}
.y40{bottom:147.546667pt;}
.ycf{bottom:148.826667pt;}
.y161{bottom:153.626667pt;}
.y31{bottom:154.426667pt;}
.y136{bottom:154.586667pt;}
.yf1{bottom:161.306667pt;}
.y17b{bottom:162.586667pt;}
.ya5{bottom:164.346667pt;}
.y11a{bottom:164.666667pt;}
.y78{bottom:165.306667pt;}
.y3f{bottom:165.466667pt;}
.yce{bottom:166.906667pt;}
.y160{bottom:171.706667pt;}
.y30{bottom:172.506667pt;}
.y135{bottom:172.666667pt;}
.yf0{bottom:179.386667pt;}
.y17a{bottom:180.666667pt;}
.ya4{bottom:182.266667pt;}
.y119{bottom:182.586667pt;}
.y77{bottom:183.386667pt;}
.y3e{bottom:183.546667pt;}
.ycd{bottom:184.826667pt;}
.y15f{bottom:189.626667pt;}
.y2f{bottom:190.426667pt;}
.y134{bottom:190.586667pt;}
.yef{bottom:197.306667pt;}
.y179{bottom:198.586667pt;}
.ya3{bottom:200.346667pt;}
.y118{bottom:200.666667pt;}
.y76{bottom:201.306667pt;}
.y3d{bottom:201.466667pt;}
.ycc{bottom:202.906667pt;}
.y15e{bottom:207.706667pt;}
.y2e{bottom:208.506667pt;}
.y133{bottom:208.666667pt;}
.yee{bottom:215.386667pt;}
.ya2{bottom:218.266667pt;}
.y117{bottom:218.586667pt;}
.y75{bottom:219.386667pt;}
.y3c{bottom:219.546667pt;}
.ycb{bottom:220.826667pt;}
.y178{bottom:224.506667pt;}
.y15d{bottom:225.626667pt;}
.y2d{bottom:226.426667pt;}
.y132{bottom:226.586667pt;}
.yed{bottom:233.306667pt;}
.ya1{bottom:236.346667pt;}
.y116{bottom:236.666667pt;}
.y74{bottom:237.306667pt;}
.y3b{bottom:237.466667pt;}
.yca{bottom:238.906667pt;}
.y177{bottom:242.586667pt;}
.y15c{bottom:243.706667pt;}
.y2c{bottom:244.506667pt;}
.y131{bottom:244.666667pt;}
.yec{bottom:251.386667pt;}
.ya0{bottom:254.266667pt;}
.y115{bottom:254.586667pt;}
.y73{bottom:255.386667pt;}
.y3a{bottom:255.546667pt;}
.y176{bottom:260.666667pt;}
.y15b{bottom:261.626667pt;}
.y2b{bottom:262.426667pt;}
.y130{bottom:262.586667pt;}
.yc9{bottom:264.826667pt;}
.yeb{bottom:269.306667pt;}
.y9f{bottom:272.346667pt;}
.y114{bottom:272.666667pt;}
.y72{bottom:273.306667pt;}
.y39{bottom:273.466667pt;}
.y175{bottom:278.586667pt;}
.y2a{bottom:280.506667pt;}
.y12f{bottom:280.666667pt;}
.yea{bottom:287.386667pt;}
.y15a{bottom:287.546667pt;}
.y9e{bottom:290.266667pt;}
.y113{bottom:290.586667pt;}
.yc8{bottom:290.746667pt;}
.y71{bottom:291.386667pt;}
.y38{bottom:291.546667pt;}
.y29{bottom:298.426667pt;}
.y12e{bottom:298.586667pt;}
.y174{bottom:304.506667pt;}
.ye9{bottom:305.306667pt;}
.y9d{bottom:308.346667pt;}
.yc7{bottom:308.826667pt;}
.y70{bottom:309.306667pt;}
.y37{bottom:309.466667pt;}
.y159{bottom:313.626667pt;}
.y28{bottom:316.506667pt;}
.y12d{bottom:316.666667pt;}
.y173{bottom:322.586667pt;}
.ye8{bottom:323.386667pt;}
.y9c{bottom:326.266667pt;}
.yc6{bottom:326.906667pt;}
.y6f{bottom:327.386667pt;}
.y36{bottom:327.546667pt;}
.y158{bottom:331.706667pt;}
.y27{bottom:334.426667pt;}
.y12c{bottom:334.586667pt;}
.y172{bottom:340.666667pt;}
.ye7{bottom:341.306667pt;}
.y112{bottom:342.586667pt;}
.y9b{bottom:344.346667pt;}
.yc5{bottom:344.826667pt;}
.y35{bottom:345.466667pt;}
.y157{bottom:349.626667pt;}
.y26{bottom:352.506667pt;}
.y12b{bottom:352.666667pt;}
.y6e{bottom:353.306667pt;}
.y171{bottom:358.626667pt;}
.ye6{bottom:359.426667pt;}
.y111{bottom:360.706667pt;}
.y9a{bottom:362.306667pt;}
.yc4{bottom:362.946667pt;}
.y34{bottom:363.586667pt;}
.y156{bottom:367.746667pt;}
.y25{bottom:370.466667pt;}
.y12a{bottom:370.626667pt;}
.y170{bottom:376.706667pt;}
.ye5{bottom:377.346667pt;}
.y110{bottom:378.626667pt;}
.y6d{bottom:380.066667pt;}
.y99{bottom:380.386667pt;}
.yc3{bottom:380.866667pt;}
.y33{bottom:381.506667pt;}
.y155{bottom:385.666667pt;}
.y129{bottom:388.706667pt;}
.y16f{bottom:394.626667pt;}
.ye4{bottom:395.426667pt;}
.y10f{bottom:396.706667pt;}
.y24{bottom:397.186667pt;}
.y98{bottom:398.306667pt;}
.yc2{bottom:398.946667pt;}
.y32{bottom:399.586667pt;}
.y154{bottom:403.746667pt;}
.y128{bottom:406.626667pt;}
.y6c{bottom:408.226667pt;}
.y16e{bottom:412.706667pt;}
.ye3{bottom:413.346667pt;}
.y10e{bottom:414.626667pt;}
.y97{bottom:416.386667pt;}
.yc1{bottom:416.866667pt;}
.y153{bottom:421.666667pt;}
.y127{bottom:424.706667pt;}
.y23{bottom:425.506667pt;}
.y6b{bottom:426.306667pt;}
.y16d{bottom:430.626667pt;}
.ye2{bottom:431.426667pt;}
.y10d{bottom:432.706667pt;}
.y96{bottom:434.306667pt;}
.yc0{bottom:434.946667pt;}
.y152{bottom:439.746667pt;}
.y126{bottom:442.626667pt;}
.y6a{bottom:444.386667pt;}
.y16c{bottom:448.706667pt;}
.ye1{bottom:449.346667pt;}
.y10c{bottom:450.626667pt;}
.y22{bottom:451.426667pt;}
.ybf{bottom:452.866667pt;}
.y151{bottom:457.666667pt;}
.y95{bottom:460.226667pt;}
.y125{bottom:460.706667pt;}
.y69{bottom:462.306667pt;}
.y16b{bottom:466.626667pt;}
.ye0{bottom:467.426667pt;}
.y10b{bottom:468.706667pt;}
.ybe{bottom:470.946667pt;}
.y150{bottom:475.746667pt;}
.y94{bottom:478.306667pt;}
.y124{bottom:478.626667pt;}
.y68{bottom:480.386667pt;}
.y21{bottom:482.946667pt;}
.ydf{bottom:485.346667pt;}
.y10a{bottom:486.626667pt;}
.ybd{bottom:488.866667pt;}
.y16a{bottom:492.546667pt;}
.y14f{bottom:493.666667pt;}
.y123{bottom:496.706667pt;}
.y67{bottom:498.306667pt;}
.yde{bottom:503.426667pt;}
.y20{bottom:503.746667pt;}
.y93{bottom:504.226667pt;}
.y109{bottom:504.706667pt;}
.ybc{bottom:506.946667pt;}
.y169{bottom:510.626667pt;}
.y14e{bottom:511.746667pt;}
.y122{bottom:514.626667pt;}
.y66{bottom:516.386667pt;}
.y108{bottom:522.626667pt;}
.y1f{bottom:524.386667pt;}
.ybb{bottom:524.866667pt;}
.y168{bottom:528.706667pt;}
.ydd{bottom:529.346667pt;}
.y14d{bottom:529.666667pt;}
.y92{bottom:530.306667pt;}
.y65{bottom:534.306667pt;}
.y121{bottom:540.546667pt;}
.y107{bottom:540.706667pt;}
.yba{bottom:542.946667pt;}
.y167{bottom:546.626667pt;}
.y14c{bottom:547.746667pt;}
.y91{bottom:548.386667pt;}
.y1e{bottom:550.146667pt;}
.y64{bottom:552.386667pt;}
.ydc{bottom:556.066667pt;}
.y106{bottom:558.626667pt;}
.yb9{bottom:560.866667pt;}
.y166{bottom:564.706667pt;}
.y14b{bottom:565.666667pt;}
.y90{bottom:566.306667pt;}
.y120{bottom:566.626667pt;}
.y63{bottom:570.306667pt;}
.y1d{bottom:576.226667pt;}
.y105{bottom:576.706667pt;}
.yb8{bottom:578.973333pt;}
.y165{bottom:582.653333pt;}
.y14a{bottom:583.773333pt;}
.ydb{bottom:584.253333pt;}
.y8f{bottom:584.413333pt;}
.y11f{bottom:584.733333pt;}
.y62{bottom:588.413333pt;}
.y1c{bottom:594.333333pt;}
.y104{bottom:594.653333pt;}
.yb7{bottom:596.893333pt;}
.y164{bottom:600.733333pt;}
.y149{bottom:601.693333pt;}
.y8e{bottom:602.333333pt;}
.y11e{bottom:602.653333pt;}
.y61{bottom:606.333333pt;}
.y1b{bottom:612.253333pt;}
.y103{bottom:612.733333pt;}
.yb6{bottom:614.973333pt;}
.y148{bottom:619.773333pt;}
.y8d{bottom:620.413333pt;}
.y11d{bottom:620.733333pt;}
.y60{bottom:624.413333pt;}
.y163{bottom:627.453333pt;}
.y1a{bottom:630.333333pt;}
.y102{bottom:630.653333pt;}
.y147{bottom:637.693333pt;}
.y8c{bottom:638.333333pt;}
.y11c{bottom:638.653333pt;}
.yb5{bottom:640.893333pt;}
.y5f{bottom:642.333333pt;}
.y19{bottom:648.253333pt;}
.y162{bottom:655.613333pt;}
.y146{bottom:655.773333pt;}
.y8b{bottom:656.413333pt;}
.y101{bottom:656.573333pt;}
.y11b{bottom:656.733333pt;}
.y5e{bottom:660.413333pt;}
.y18{bottom:666.333333pt;}
.yb4{bottom:666.813333pt;}
.y8a{bottom:674.333333pt;}
.y5d{bottom:678.333333pt;}
.y145{bottom:682.333333pt;}
.y100{bottom:682.653333pt;}
.y17{bottom:684.253333pt;}
.yb3{bottom:684.893333pt;}
.y89{bottom:692.413333pt;}
.yda{bottom:700.253333pt;}
.y16{bottom:702.333333pt;}
.yb2{bottom:702.973333pt;}
.y5c{bottom:704.253333pt;}
.yff{bottom:708.573333pt;}
.y88{bottom:710.333333pt;}
.y144{bottom:710.653333pt;}
.y15{bottom:720.253333pt;}
.yb1{bottom:720.893333pt;}
.y5b{bottom:722.333333pt;}
.yd9{bottom:726.333333pt;}
.yfe{bottom:726.653333pt;}
.y87{bottom:728.413333pt;}
.y143{bottom:736.573333pt;}
.y14{bottom:738.333333pt;}
.yb0{bottom:738.973333pt;}
.y5a{bottom:740.413333pt;}
.yd8{bottom:744.413333pt;}
.yfd{bottom:744.733333pt;}
.y86{bottom:746.333333pt;}
.y142{bottom:754.653333pt;}
.y13{bottom:756.253333pt;}
.yaf{bottom:756.893333pt;}
.y59{bottom:758.333333pt;}
.yd7{bottom:762.333333pt;}
.yfc{bottom:762.653333pt;}
.y85{bottom:764.413333pt;}
.y141{bottom:772.733333pt;}
.y12{bottom:774.333333pt;}
.yae{bottom:774.973333pt;}
.y58{bottom:776.413333pt;}
.yfb{bottom:777.213333pt;}
.yd6{bottom:780.413333pt;}
.y84{bottom:782.333333pt;}
.y181{bottom:788.253333pt;}
.y140{bottom:790.653333pt;}
.yfa{bottom:792.893333pt;}
.yad{bottom:794.013333pt;}
.y57{bottom:794.333333pt;}
.yd5{bottom:798.373333pt;}
.y11{bottom:801.093333pt;}
.y13f{bottom:805.253333pt;}
.y83{bottom:808.293333pt;}
.yf9{bottom:808.613333pt;}
.yac{bottom:812.133333pt;}
.y56{bottom:812.453333pt;}
.y180{bottom:814.373333pt;}
.yd4{bottom:816.453333pt;}
.y13e{bottom:820.933333pt;}
.yf8{bottom:824.293333pt;}
.y82{bottom:826.373333pt;}
.y10{bottom:829.253333pt;}
.y55{bottom:830.373333pt;}
.yab{bottom:831.333333pt;}
.y17d{bottom:832.453333pt;}
.y13d{bottom:836.613333pt;}
.yf7{bottom:839.973333pt;}
.yd3{bottom:842.373333pt;}
.y54{bottom:848.453333pt;}
.yaa{bottom:850.373333pt;}
.y81{bottom:852.293333pt;}
.yf{bottom:855.333333pt;}
.yf6{bottom:855.653333pt;}
.y53{bottom:866.373333pt;}
.y13c{bottom:867.973333pt;}
.yd2{bottom:868.293333pt;}
.ya9{bottom:868.453333pt;}
.yf5{bottom:871.333333pt;}
.ye{bottom:873.413333pt;}
.y80{bottom:878.373333pt;}
.y13b{bottom:883.653333pt;}
.y52{bottom:884.453333pt;}
.ya8{bottom:886.373333pt;}
.yf4{bottom:887.013333pt;}
.yd1{bottom:894.373333pt;}
.yd{bottom:899.333333pt;}
.y51{bottom:902.373333pt;}
.yf2{bottom:902.533333pt;}
.y7f{bottom:904.293333pt;}
.ya7{bottom:904.453333pt;}
.y17f{bottom:912.293333pt;}
.y17c{bottom:912.453333pt;}
.y13a{bottom:915.013333pt;}
.yd0{bottom:920.293333pt;}
.y50{bottom:920.453333pt;}
.yc{bottom:925.253333pt;}
.y7e{bottom:930.373333pt;}
.y139{bottom:930.533333pt;}
.y4f{bottom:938.373333pt;}
.yb{bottom:943.333333pt;}
.y7d{bottom:948.453333pt;}
.ya6{bottom:956.293333pt;}
.y4e{bottom:956.453333pt;}
.y138{bottom:958.373333pt;}
.ya{bottom:961.413333pt;}
.y7c{bottom:966.373333pt;}
.y4d{bottom:974.373333pt;}
.y137{bottom:984.293333pt;}
.y7b{bottom:984.453333pt;}
.y4c{bottom:992.453333pt;}
.y9{bottom:997.413333pt;}
.y7a{bottom:1002.373333pt;}
.y4b{bottom:1010.373333pt;}
.y79{bottom:1020.480000pt;}
.y8{bottom:1021.440000pt;}
.y17e{bottom:1028.320000pt;}
.y4a{bottom:1028.480000pt;}
.y49{bottom:1046.400000pt;}
.y7{bottom:1051.840000pt;}
.y41{bottom:1063.840000pt;}
.h10{height:9.440000pt;}
.h12{height:14.880000pt;}
.h11{height:15.040000pt;}
.h13{height:15.072000pt;}
.he{height:20.000000pt;}
.h2{height:32.507812pt;}
.h3{height:33.421875pt;}
.hc{height:36.986875pt;}
.h8{height:43.343750pt;}
.h5{height:44.562500pt;}
.h9{height:46.972530pt;}
.h7{height:47.406250pt;}
.hb{height:50.166250pt;}
.ha{height:52.138125pt;}
.hd{height:52.834688pt;}
.h4{height:58.563750pt;}
.h6{height:59.268125pt;}
.hf{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.wa{width:75.840000pt;}
.w5{width:79.360000pt;}
.w8{width:90.272000pt;}
.w7{width:103.360000pt;}
.w9{width:116.320000pt;}
.wc{width:154.586667pt;}
.wd{width:173.146667pt;}
.wb{width:235.706667pt;}
.w6{width:249.186667pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x11{left:9.632000pt;}
.x10{left:12.000000pt;}
.x2{left:75.551988pt;}
.x18{left:94.271988pt;}
.xa{left:121.311988pt;}
.x4{left:144.986655pt;}
.x3{left:152.346655pt;}
.x15{left:156.506667pt;}
.x6{left:167.706655pt;}
.x7{left:176.346655pt;}
.x12{left:191.706655pt;}
.x13{left:215.866655pt;}
.x5{left:326.466655pt;}
.x9{left:344.706655pt;}
.xd{left:363.746655pt;}
.x19{left:389.186667pt;}
.x8{left:396.893322pt;}
.x16{left:406.333333pt;}
.xe{left:420.573322pt;}
.x17{left:510.333333pt;}
.x1a{left:544.413333pt;}
.xb{left:601.413322pt;}
.xc{left:605.413322pt;}
.x1{left:718.239988pt;}
.xf{left:720.320000pt;}
}




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