
    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_8e206d6734cc1e93bbd88d83.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c651672ef6e0d492da08bbf8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_afced36d0140b16781d5d775.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_457cebd7f611ae15259c8c00.woff')format("woff");}.ff4{font-family:ff4;line-height:1.208008;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_882af4db6a9a1a7b2ce79b43.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_c29f88367cd1e62ba27a5808.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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_5c3dbecef8a9c7e6f135a8e1.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_bb2a0bbe9b21c596d59345b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.682129;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_f9dc188f76dc0410063f5e4f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.208008;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_7c04760d73c7387d0f1e5bbe.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e57bf36e07c5db95cf31c13e.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.ls16{letter-spacing:-0.804000px;}
.ls7{letter-spacing:-0.396000px;}
.ls3{letter-spacing:-0.292200px;}
.ls8{letter-spacing:-0.270000px;}
.ls11{letter-spacing:-0.187200px;}
.ls5{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.085200px;}
.lsc{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.190800px;}
.ls9{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.276600px;}
.lse{letter-spacing:0.317400px;}
.ls0{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.403920px;}
.ls10{letter-spacing:0.720000px;}
.ls15{letter-spacing:31.229280px;}
.ls13{letter-spacing:31.349280px;}
.lsf{letter-spacing:56.520000px;}
.ls12{letter-spacing:57.989280px;}
.lsa{letter-spacing:71.226720px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-59.760000px;}
.ws4{word-spacing:-33.642000px;}
.ws2{word-spacing:-28.368000px;}
.ws13{word-spacing:-13.464600px;}
.ws12{word-spacing:-13.147200px;}
.ws11{word-spacing:-13.111200px;}
.ws3{word-spacing:-12.204000px;}
.ws10{word-spacing:-12.186000px;}
.ws6{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.610000px;}
.ws5{word-spacing:-11.484000px;}
.ws15{word-spacing:-10.527600px;}
.ws16{word-spacing:-9.808800px;}
.ws1{word-spacing:-9.714360px;}
.ws0{word-spacing:-9.145560px;}
.wsd{word-spacing:-0.756000px;}
.wsb{word-spacing:-0.036000px;}
.ws8{word-spacing:0.000000px;}
.wse{word-spacing:0.504000px;}
.wsf{word-spacing:0.684000px;}
.wsc{word-spacing:0.756000px;}
.ws9{word-spacing:0.918000px;}
.wsa{word-spacing:1.080000px;}
._f{margin-left:-3.515399px;}
._e{margin-left:-2.211000px;}
._3{margin-left:-1.206000px;}
._0{width:1.127395px;}
._7{width:2.197816px;}
._1{width:3.226373px;}
._5{width:4.644601px;}
._1d{width:5.654768px;}
._c{width:6.693000px;}
._6{width:7.740000px;}
._8{width:9.234000px;}
._19{width:10.622026px;}
._d{width:11.959806px;}
._2a{width:13.250885px;}
._a{width:14.641798px;}
._9{width:15.657000px;}
._21{width:16.704982px;}
._20{width:17.748720px;}
._1a{width:18.764640px;}
._17{width:19.780560px;}
._1f{width:21.004449px;}
._10{width:22.171199px;}
._25{width:23.519899px;}
._24{width:24.561360px;}
._15{width:26.362444px;}
._b{width:27.429601px;}
._1b{width:28.518736px;}
._2{width:29.568000px;}
._27{width:30.716640px;}
._13{width:32.330399px;}
._16{width:33.348355px;}
._11{width:34.658525px;}
._12{width:35.889115px;}
._26{width:36.953429px;}
._28{width:42.847920px;}
._23{width:45.596880px;}
._4{width:47.622240px;}
._18{width:50.858400px;}
._1c{width:57.309840px;}
._22{width:60.656400px;}
._29{width:62.090640px;}
._1e{width:66.990960px;}
._14{width:2046.678000px;}
.fc2{color:rgb(55,54,103);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:3.420000px;}
.yc0{bottom:3.780000px;}
.ybb{bottom:4.860000px;}
.y9f{bottom:5.580000px;}
.y4{bottom:9.930000px;}
.ya2{bottom:12.060000px;}
.y9b{bottom:12.240000px;}
.yb7{bottom:12.285000px;}
.yc5{bottom:12.960000px;}
.yba{bottom:13.860000px;}
.y99{bottom:14.760000px;}
.ya1{bottom:20.880000px;}
.y9c{bottom:21.060000px;}
.yb6{bottom:21.105000px;}
.ybf{bottom:21.420000px;}
.y9e{bottom:23.580000px;}
.yb2{bottom:29.880000px;}
.yc4{bottom:30.450000px;}
.yca{bottom:30.600000px;}
.y98{bottom:32.400000px;}
.yb0{bottom:38.520000px;}
.yb1{bottom:47.340000px;}
.yb3{bottom:56.160000px;}
.y7{bottom:67.356000px;}
.yb4{bottom:73.800000px;}
.y6{bottom:83.196000px;}
.y5{bottom:95.976000px;}
.yc1{bottom:123.336000px;}
.y90{bottom:125.316000px;}
.yf8{bottom:134.136000px;}
.y139{bottom:137.556000px;}
.y6a{bottom:139.896000px;}
.y8f{bottom:142.956000px;}
.y107{bottom:149.436000px;}
.yf7{bottom:151.770000px;}
.y2f{bottom:153.210000px;}
.y69{bottom:157.350000px;}
.ybe{bottom:159.150000px;}
.y8e{bottom:160.590000px;}
.y26{bottom:162.390000px;}
.y106{bottom:165.270000px;}
.y138{bottom:165.810000px;}
.yf6{bottom:169.230000px;}
.y2e{bottom:170.850000px;}
.y68{bottom:174.990000px;}
.ybd{bottom:177.510000px;}
.y8d{bottom:178.050000px;}
.y137{bottom:179.850000px;}
.y25{bottom:180.030000px;}
.y105{bottom:181.110000px;}
.yf5{bottom:186.870000px;}
.y2d{bottom:188.490000px;}
.y67{bottom:192.630000px;}
.y136{bottom:193.890000px;}
.y8c{bottom:195.690000px;}
.ybc{bottom:195.870000px;}
.y24{bottom:197.670000px;}
.yf4{bottom:204.510000px;}
.y2c{bottom:206.130000px;}
.y104{bottom:207.210000px;}
.y135{bottom:207.930000px;}
.y66{bottom:210.270000px;}
.y8b{bottom:213.330000px;}
.y23{bottom:215.130000px;}
.y134{bottom:221.970000px;}
.yf3{bottom:222.150000px;}
.y2b{bottom:223.590000px;}
.y65{bottom:227.730000px;}
.y8a{bottom:230.790000px;}
.yb9{bottom:231.690000px;}
.y22{bottom:232.770000px;}
.y133{bottom:236.010000px;}
.yf2{bottom:239.610000px;}
.y2a{bottom:241.230000px;}
.y64{bottom:245.370000px;}
.y103{bottom:246.630000px;}
.y89{bottom:248.430000px;}
.y132{bottom:250.230000px;}
.y21{bottom:250.410000px;}
.yb8{bottom:252.750000px;}
.yf1{bottom:257.250000px;}
.y29{bottom:258.870000px;}
.y63{bottom:263.010000px;}
.y131{bottom:264.270000px;}
.y88{bottom:266.070000px;}
.yb5{bottom:270.930000px;}
.yf0{bottom:274.890000px;}
.y28{bottom:276.330000px;}
.y130{bottom:278.310000px;}
.y62{bottom:280.470000px;}
.y87{bottom:283.575000px;}
.y20{bottom:288.255000px;}
.yef{bottom:292.395000px;}
.y27{bottom:294.015000px;}
.y61{bottom:298.155000px;}
.y86{bottom:301.215000px;}
.y12f{bottom:306.435000px;}
.yaf{bottom:306.975000px;}
.yee{bottom:310.035000px;}
.y102{bottom:315.075000px;}
.y60{bottom:315.795000px;}
.y85{bottom:318.855000px;}
.y12e{bottom:320.475000px;}
.yed{bottom:327.675000px;}
.y101{bottom:332.535000px;}
.y5f{bottom:333.255000px;}
.y12d{bottom:334.695000px;}
.y84{bottom:336.495000px;}
.yec{bottom:345.135000px;}
.y12c{bottom:348.735000px;}
.y100{bottom:350.175000px;}
.y5e{bottom:350.895000px;}
.y83{bottom:353.955000px;}
.yeb{bottom:362.775000px;}
.yff{bottom:367.815000px;}
.y5d{bottom:368.535000px;}
.y82{bottom:371.595000px;}
.y12b{bottom:376.815000px;}
.yea{bottom:380.415000px;}
.y1f{bottom:381.675000px;}
.yfe{bottom:385.455000px;}
.y5c{bottom:386.175000px;}
.y81{bottom:389.235000px;}
.y12a{bottom:390.855000px;}
.ye9{bottom:398.055000px;}
.yae{bottom:398.775000px;}
.yfd{bottom:402.915000px;}
.y5b{bottom:403.635000px;}
.y129{bottom:404.895000px;}
.y80{bottom:406.695000px;}
.y1e{bottom:408.315000px;}
.yad{bottom:415.155000px;}
.ye8{bottom:415.515000px;}
.y128{bottom:419.115000px;}
.yfc{bottom:420.555000px;}
.y5a{bottom:421.275000px;}
.y7f{bottom:424.335000px;}
.yac{bottom:431.355000px;}
.ye7{bottom:433.155000px;}
.yfb{bottom:438.195000px;}
.y59{bottom:438.915000px;}
.y7e{bottom:441.975000px;}
.y127{bottom:447.195000px;}
.yab{bottom:448.995000px;}
.ye6{bottom:450.795000px;}
.yfa{bottom:455.655000px;}
.y58{bottom:456.375000px;}
.y7d{bottom:459.435000px;}
.y126{bottom:461.235000px;}
.yaa{bottom:466.635000px;}
.ye5{bottom:468.255000px;}
.y57{bottom:474.015000px;}
.y125{bottom:475.275000px;}
.y1d{bottom:476.895000px;}
.y7c{bottom:477.075000px;}
.ya9{bottom:484.095000px;}
.ye4{bottom:485.895000px;}
.y124{bottom:489.315000px;}
.y56{bottom:491.655000px;}
.y1c{bottom:492.735000px;}
.yf9{bottom:493.455000px;}
.y7b{bottom:494.715000px;}
.ya8{bottom:501.735000px;}
.y123{bottom:503.355000px;}
.ye3{bottom:503.535000px;}
.y1b{bottom:508.575000px;}
.y55{bottom:509.115000px;}
.y7a{bottom:512.175000px;}
.y122{bottom:517.575000px;}
.ya7{bottom:519.375000px;}
.ye2{bottom:520.995000px;}
.y54{bottom:526.755000px;}
.y1a{bottom:528.915000px;}
.y79{bottom:529.815000px;}
.y121{bottom:531.615000px;}
.ya6{bottom:536.835000px;}
.ye1{bottom:538.635000px;}
.y53{bottom:544.395000px;}
.y19{bottom:544.755000px;}
.y120{bottom:545.655000px;}
.y78{bottom:547.455000px;}
.ya5{bottom:554.475000px;}
.ye0{bottom:556.275000px;}
.y11f{bottom:559.695000px;}
.y18{bottom:560.595000px;}
.y52{bottom:561.855000px;}
.y77{bottom:565.125000px;}
.ya4{bottom:569.445000px;}
.y11e{bottom:573.765000px;}
.ydf{bottom:573.945000px;}
.y51{bottom:579.525000px;}
.y17{bottom:580.785000px;}
.y76{bottom:582.585000px;}
.ya3{bottom:587.805000px;}
.yde{bottom:591.405000px;}
.y161{bottom:596.445000px;}
.y16{bottom:596.625000px;}
.y50{bottom:597.165000px;}
.y75{bottom:600.225000px;}
.y11d{bottom:602.025000px;}
.ya0{bottom:606.165000px;}
.ydd{bottom:609.045000px;}
.y160{bottom:610.485000px;}
.y15{bottom:612.465000px;}
.y4f{bottom:614.805000px;}
.y11c{bottom:616.065000px;}
.y74{bottom:617.865000px;}
.y15f{bottom:624.525000px;}
.ydc{bottom:626.685000px;}
.y14{bottom:628.305000px;}
.y4e{bottom:632.265000px;}
.y73{bottom:635.325000px;}
.y15e{bottom:638.565000px;}
.y97{bottom:641.985000px;}
.ydb{bottom:644.145000px;}
.y13{bottom:648.645000px;}
.y4d{bottom:649.905000px;}
.y11b{bottom:650.985000px;}
.y15d{bottom:652.785000px;}
.y72{bottom:652.965000px;}
.yda{bottom:661.785000px;}
.y12{bottom:664.485000px;}
.y9a{bottom:664.665000px;}
.y15c{bottom:666.825000px;}
.y4c{bottom:667.545000px;}
.y71{bottom:670.605000px;}
.yd9{bottom:679.425000px;}
.y11{bottom:680.325000px;}
.y15b{bottom:680.865000px;}
.y4b{bottom:685.005000px;}
.y70{bottom:688.065000px;}
.y15a{bottom:694.905000px;}
.yd8{bottom:696.885000px;}
.y4a{bottom:702.645000px;}
.y96{bottom:703.725000px;}
.y6f{bottom:705.705000px;}
.y10{bottom:706.965000px;}
.y159{bottom:708.945000px;}
.yd7{bottom:714.525000px;}
.y11a{bottom:719.025000px;}
.y95{bottom:720.105000px;}
.y49{bottom:720.285000px;}
.y158{bottom:722.985000px;}
.y6e{bottom:723.345000px;}
.yd6{bottom:732.165000px;}
.y119{bottom:734.865000px;}
.y94{bottom:736.845000px;}
.y157{bottom:737.205000px;}
.y48{bottom:737.745000px;}
.y6d{bottom:740.985000px;}
.yd5{bottom:749.625000px;}
.y118{bottom:750.705000px;}
.y156{bottom:751.245000px;}
.y93{bottom:754.665000px;}
.y47{bottom:755.385000px;}
.y155{bottom:765.285000px;}
.yd4{bottom:767.265000px;}
.y92{bottom:772.305000px;}
.y46{bottom:773.025000px;}
.yf{bottom:775.545000px;}
.y6c{bottom:777.885000px;}
.y154{bottom:779.325000px;}
.yd3{bottom:784.905000px;}
.y117{bottom:787.065000px;}
.y45{bottom:790.665000px;}
.ye{bottom:791.925000px;}
.y153{bottom:793.365000px;}
.yd2{bottom:802.545000px;}
.y152{bottom:807.405000px;}
.y44{bottom:808.125000px;}
.y91{bottom:810.105000px;}
.y151{bottom:821.625000px;}
.y43{bottom:825.765000px;}
.y6b{bottom:827.745000px;}
.y150{bottom:835.665000px;}
.yd1{bottom:840.345000px;}
.y42{bottom:843.405000px;}
.yd{bottom:843.483000px;}
.y14f{bottom:849.750000px;}
.y116{bottom:855.150000px;}
.y41{bottom:860.910000px;}
.y14e{bottom:863.790000px;}
.y115{bottom:870.990000px;}
.y14d{bottom:877.830000px;}
.y40{bottom:878.550000px;}
.y14c{bottom:891.870000px;}
.y3f{bottom:896.190000px;}
.y114{bottom:897.270000px;}
.y14b{bottom:905.910000px;}
.yd0{bottom:908.790000px;}
.yc{bottom:909.330000px;}
.y3e{bottom:913.650000px;}
.y14a{bottom:920.130000px;}
.y113{bottom:924.990000px;}
.ycf{bottom:926.250000px;}
.y3d{bottom:931.290000px;}
.yb{bottom:932.370000px;}
.y149{bottom:934.170000px;}
.yce{bottom:943.890000px;}
.y148{bottom:948.210000px;}
.y3c{bottom:948.930000px;}
.y112{bottom:949.830000px;}
.ya{bottom:961.710000px;}
.y147{bottom:962.250000px;}
.y3b{bottom:966.570000px;}
.y111{bottom:976.110000px;}
.y146{bottom:976.290000px;}
.ycd{bottom:978.630000px;}
.y3a{bottom:984.030000px;}
.y145{bottom:990.330000px;}
.ycc{bottom:992.310000px;}
.y39{bottom:1001.670000px;}
.y110{bottom:1003.830000px;}
.y144{bottom:1004.550000px;}
.y9{bottom:1005.270000px;}
.yc9{bottom:1010.490000px;}
.y143{bottom:1018.590000px;}
.y38{bottom:1019.310000px;}
.y10f{bottom:1019.670000px;}
.ycb{bottom:1028.850000px;}
.y142{bottom:1032.630000px;}
.y10e{bottom:1035.510000px;}
.y37{bottom:1036.770000px;}
.y8{bottom:1043.790000px;}
.y141{bottom:1046.670000px;}
.yc8{bottom:1047.210000px;}
.y10d{bottom:1051.350000px;}
.y36{bottom:1054.410000px;}
.y140{bottom:1060.710000px;}
.yc7{bottom:1065.570000px;}
.y10c{bottom:1067.190000px;}
.y35{bottom:1072.050000px;}
.y13f{bottom:1074.750000px;}
.y10b{bottom:1082.850000px;}
.y13e{bottom:1088.970000px;}
.y34{bottom:1089.510000px;}
.y10a{bottom:1098.690000px;}
.yc3{bottom:1101.570000px;}
.y13d{bottom:1103.010000px;}
.y33{bottom:1107.150000px;}
.y109{bottom:1114.530000px;}
.y13c{bottom:1117.050000px;}
.yc6{bottom:1119.750000px;}
.y32{bottom:1124.790000px;}
.y3{bottom:1127.310000px;}
.y13b{bottom:1131.120000px;}
.yc2{bottom:1138.140000px;}
.y108{bottom:1140.840000px;}
.y31{bottom:1142.280000px;}
.y13a{bottom:1145.160000px;}
.y2{bottom:1188.900000px;}
.y30{bottom:1198.980000px;}
.y1{bottom:1202.040000px;}
.h14{height:17.460000px;}
.h15{height:17.640000px;}
.h1c{height:17.676000px;}
.h19{height:20.160000px;}
.h12{height:21.960000px;}
.h3{height:31.896000px;}
.h13{height:35.100000px;}
.h11{height:35.280000px;}
.h17{height:35.316000px;}
.h1a{height:36.000000px;}
.h18{height:38.520000px;}
.h2{height:41.535703px;}
.h8{height:47.745352px;}
.h9{height:49.394180px;}
.he{height:50.597578px;}
.hb{height:53.446289px;}
.h5{height:53.709961px;}
.h1b{height:54.216000px;}
.h1d{height:54.360000px;}
.ha{height:55.291992px;}
.h10{height:57.960000px;}
.hd{height:59.147227px;}
.hf{height:61.189805px;}
.h1e{height:67.824844px;}
.h7{height:71.261719px;}
.h4{height:73.722656px;}
.hc{height:86.255508px;}
.h16{height:88.020000px;}
.h6{height:129.014648px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:72.900000px;}
.wb{width:74.340000px;}
.w4{width:87.516000px;}
.w9{width:89.820000px;}
.wa{width:91.476000px;}
.w6{width:97.056000px;}
.w5{width:110.700000px;}
.w8{width:112.716000px;}
.w2{width:765.510000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xf{left:24.834000px;}
.x3{left:59.580000px;}
.x7{left:68.039987px;}
.xa{left:76.679987px;}
.xb{left:86.579987px;}
.x18{left:95.075987px;}
.xc{left:113.615987px;}
.x19{left:122.075987px;}
.xe{left:148.536000px;}
.x12{left:173.730000px;}
.x10{left:260.130000px;}
.x13{left:264.270000px;}
.x4{left:330.735000px;}
.x14{left:356.475000px;}
.x11{left:357.915000px;}
.x6{left:452.955000px;}
.x8{left:461.414987px;}
.x9{left:488.444987px;}
.x15{left:567.105000px;}
.x16{left:657.645000px;}
.x1{left:688.110000px;}
.x2{left:692.610000px;}
.x17{left:749.850000px;}
.x5{left:818.250000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls16{letter-spacing:-0.714667pt;}
.ls7{letter-spacing:-0.352000pt;}
.ls3{letter-spacing:-0.259733pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls11{letter-spacing:-0.166400pt;}
.ls5{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.075733pt;}
.lsc{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.169600pt;}
.ls9{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.245867pt;}
.lse{letter-spacing:0.282133pt;}
.ls0{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.359040pt;}
.ls10{letter-spacing:0.640000pt;}
.ls15{letter-spacing:27.759360pt;}
.ls13{letter-spacing:27.866027pt;}
.lsf{letter-spacing:50.240000pt;}
.ls12{letter-spacing:51.546027pt;}
.lsa{letter-spacing:63.312640pt;}
.ws14{word-spacing:-53.120000pt;}
.ws4{word-spacing:-29.904000pt;}
.ws2{word-spacing:-25.216000pt;}
.ws13{word-spacing:-11.968533pt;}
.ws12{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.654400pt;}
.ws3{word-spacing:-10.848000pt;}
.ws10{word-spacing:-10.832000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.320000pt;}
.ws5{word-spacing:-10.208000pt;}
.ws15{word-spacing:-9.357867pt;}
.ws16{word-spacing:-8.718933pt;}
.ws1{word-spacing:-8.634987pt;}
.ws0{word-spacing:-8.129387pt;}
.wsd{word-spacing:-0.672000pt;}
.wsb{word-spacing:-0.032000pt;}
.ws8{word-spacing:0.000000pt;}
.wse{word-spacing:0.448000pt;}
.wsf{word-spacing:0.608000pt;}
.wsc{word-spacing:0.672000pt;}
.ws9{word-spacing:0.816000pt;}
.wsa{word-spacing:0.960000pt;}
._f{margin-left:-3.124799pt;}
._e{margin-left:-1.965334pt;}
._3{margin-left:-1.072000pt;}
._0{width:1.002129pt;}
._7{width:1.953614pt;}
._1{width:2.867887pt;}
._5{width:4.128534pt;}
._1d{width:5.026460pt;}
._c{width:5.949334pt;}
._6{width:6.880000pt;}
._8{width:8.208000pt;}
._19{width:9.441801pt;}
._d{width:10.630939pt;}
._2a{width:11.778564pt;}
._a{width:13.014931pt;}
._9{width:13.917334pt;}
._21{width:14.848873pt;}
._20{width:15.776640pt;}
._1a{width:16.679680pt;}
._17{width:17.582720pt;}
._1f{width:18.670621pt;}
._10{width:19.707732pt;}
._25{width:20.906577pt;}
._24{width:21.832320pt;}
._15{width:23.433284pt;}
._b{width:24.381868pt;}
._1b{width:25.349988pt;}
._2{width:26.282667pt;}
._27{width:27.303680pt;}
._13{width:28.738132pt;}
._16{width:29.642982pt;}
._11{width:30.807578pt;}
._12{width:31.901436pt;}
._26{width:32.847493pt;}
._28{width:38.087040pt;}
._23{width:40.530560pt;}
._4{width:42.330880pt;}
._18{width:45.207467pt;}
._1c{width:50.942080pt;}
._22{width:53.916800pt;}
._29{width:55.191680pt;}
._1e{width:59.547520pt;}
._14{width:1819.269333pt;}
.fs0{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:3.040000pt;}
.yc0{bottom:3.360000pt;}
.ybb{bottom:4.320000pt;}
.y9f{bottom:4.960000pt;}
.y4{bottom:8.826667pt;}
.ya2{bottom:10.720000pt;}
.y9b{bottom:10.880000pt;}
.yb7{bottom:10.920000pt;}
.yc5{bottom:11.520000pt;}
.yba{bottom:12.320000pt;}
.y99{bottom:13.120000pt;}
.ya1{bottom:18.560000pt;}
.y9c{bottom:18.720000pt;}
.yb6{bottom:18.760000pt;}
.ybf{bottom:19.040000pt;}
.y9e{bottom:20.960000pt;}
.yb2{bottom:26.560000pt;}
.yc4{bottom:27.066667pt;}
.yca{bottom:27.200000pt;}
.y98{bottom:28.800000pt;}
.yb0{bottom:34.240000pt;}
.yb1{bottom:42.080000pt;}
.yb3{bottom:49.920000pt;}
.y7{bottom:59.872000pt;}
.yb4{bottom:65.600000pt;}
.y6{bottom:73.952000pt;}
.y5{bottom:85.312000pt;}
.yc1{bottom:109.632000pt;}
.y90{bottom:111.392000pt;}
.yf8{bottom:119.232000pt;}
.y139{bottom:122.272000pt;}
.y6a{bottom:124.352000pt;}
.y8f{bottom:127.072000pt;}
.y107{bottom:132.832000pt;}
.yf7{bottom:134.906667pt;}
.y2f{bottom:136.186667pt;}
.y69{bottom:139.866667pt;}
.ybe{bottom:141.466667pt;}
.y8e{bottom:142.746667pt;}
.y26{bottom:144.346667pt;}
.y106{bottom:146.906667pt;}
.y138{bottom:147.386667pt;}
.yf6{bottom:150.426667pt;}
.y2e{bottom:151.866667pt;}
.y68{bottom:155.546667pt;}
.ybd{bottom:157.786667pt;}
.y8d{bottom:158.266667pt;}
.y137{bottom:159.866667pt;}
.y25{bottom:160.026667pt;}
.y105{bottom:160.986667pt;}
.yf5{bottom:166.106667pt;}
.y2d{bottom:167.546667pt;}
.y67{bottom:171.226667pt;}
.y136{bottom:172.346667pt;}
.y8c{bottom:173.946667pt;}
.ybc{bottom:174.106667pt;}
.y24{bottom:175.706667pt;}
.yf4{bottom:181.786667pt;}
.y2c{bottom:183.226667pt;}
.y104{bottom:184.186667pt;}
.y135{bottom:184.826667pt;}
.y66{bottom:186.906667pt;}
.y8b{bottom:189.626667pt;}
.y23{bottom:191.226667pt;}
.y134{bottom:197.306667pt;}
.yf3{bottom:197.466667pt;}
.y2b{bottom:198.746667pt;}
.y65{bottom:202.426667pt;}
.y8a{bottom:205.146667pt;}
.yb9{bottom:205.946667pt;}
.y22{bottom:206.906667pt;}
.y133{bottom:209.786667pt;}
.yf2{bottom:212.986667pt;}
.y2a{bottom:214.426667pt;}
.y64{bottom:218.106667pt;}
.y103{bottom:219.226667pt;}
.y89{bottom:220.826667pt;}
.y132{bottom:222.426667pt;}
.y21{bottom:222.586667pt;}
.yb8{bottom:224.666667pt;}
.yf1{bottom:228.666667pt;}
.y29{bottom:230.106667pt;}
.y63{bottom:233.786667pt;}
.y131{bottom:234.906667pt;}
.y88{bottom:236.506667pt;}
.yb5{bottom:240.826667pt;}
.yf0{bottom:244.346667pt;}
.y28{bottom:245.626667pt;}
.y130{bottom:247.386667pt;}
.y62{bottom:249.306667pt;}
.y87{bottom:252.066667pt;}
.y20{bottom:256.226667pt;}
.yef{bottom:259.906667pt;}
.y27{bottom:261.346667pt;}
.y61{bottom:265.026667pt;}
.y86{bottom:267.746667pt;}
.y12f{bottom:272.386667pt;}
.yaf{bottom:272.866667pt;}
.yee{bottom:275.586667pt;}
.y102{bottom:280.066667pt;}
.y60{bottom:280.706667pt;}
.y85{bottom:283.426667pt;}
.y12e{bottom:284.866667pt;}
.yed{bottom:291.266667pt;}
.y101{bottom:295.586667pt;}
.y5f{bottom:296.226667pt;}
.y12d{bottom:297.506667pt;}
.y84{bottom:299.106667pt;}
.yec{bottom:306.786667pt;}
.y12c{bottom:309.986667pt;}
.y100{bottom:311.266667pt;}
.y5e{bottom:311.906667pt;}
.y83{bottom:314.626667pt;}
.yeb{bottom:322.466667pt;}
.yff{bottom:326.946667pt;}
.y5d{bottom:327.586667pt;}
.y82{bottom:330.306667pt;}
.y12b{bottom:334.946667pt;}
.yea{bottom:338.146667pt;}
.y1f{bottom:339.266667pt;}
.yfe{bottom:342.626667pt;}
.y5c{bottom:343.266667pt;}
.y81{bottom:345.986667pt;}
.y12a{bottom:347.426667pt;}
.ye9{bottom:353.826667pt;}
.yae{bottom:354.466667pt;}
.yfd{bottom:358.146667pt;}
.y5b{bottom:358.786667pt;}
.y129{bottom:359.906667pt;}
.y80{bottom:361.506667pt;}
.y1e{bottom:362.946667pt;}
.yad{bottom:369.026667pt;}
.ye8{bottom:369.346667pt;}
.y128{bottom:372.546667pt;}
.yfc{bottom:373.826667pt;}
.y5a{bottom:374.466667pt;}
.y7f{bottom:377.186667pt;}
.yac{bottom:383.426667pt;}
.ye7{bottom:385.026667pt;}
.yfb{bottom:389.506667pt;}
.y59{bottom:390.146667pt;}
.y7e{bottom:392.866667pt;}
.y127{bottom:397.506667pt;}
.yab{bottom:399.106667pt;}
.ye6{bottom:400.706667pt;}
.yfa{bottom:405.026667pt;}
.y58{bottom:405.666667pt;}
.y7d{bottom:408.386667pt;}
.y126{bottom:409.986667pt;}
.yaa{bottom:414.786667pt;}
.ye5{bottom:416.226667pt;}
.y57{bottom:421.346667pt;}
.y125{bottom:422.466667pt;}
.y1d{bottom:423.906667pt;}
.y7c{bottom:424.066667pt;}
.ya9{bottom:430.306667pt;}
.ye4{bottom:431.906667pt;}
.y124{bottom:434.946667pt;}
.y56{bottom:437.026667pt;}
.y1c{bottom:437.986667pt;}
.yf9{bottom:438.626667pt;}
.y7b{bottom:439.746667pt;}
.ya8{bottom:445.986667pt;}
.y123{bottom:447.426667pt;}
.ye3{bottom:447.586667pt;}
.y1b{bottom:452.066667pt;}
.y55{bottom:452.546667pt;}
.y7a{bottom:455.266667pt;}
.y122{bottom:460.066667pt;}
.ya7{bottom:461.666667pt;}
.ye2{bottom:463.106667pt;}
.y54{bottom:468.226667pt;}
.y1a{bottom:470.146667pt;}
.y79{bottom:470.946667pt;}
.y121{bottom:472.546667pt;}
.ya6{bottom:477.186667pt;}
.ye1{bottom:478.786667pt;}
.y53{bottom:483.906667pt;}
.y19{bottom:484.226667pt;}
.y120{bottom:485.026667pt;}
.y78{bottom:486.626667pt;}
.ya5{bottom:492.866667pt;}
.ye0{bottom:494.466667pt;}
.y11f{bottom:497.506667pt;}
.y18{bottom:498.306667pt;}
.y52{bottom:499.426667pt;}
.y77{bottom:502.333333pt;}
.ya4{bottom:506.173333pt;}
.y11e{bottom:510.013333pt;}
.ydf{bottom:510.173333pt;}
.y51{bottom:515.133333pt;}
.y17{bottom:516.253333pt;}
.y76{bottom:517.853333pt;}
.ya3{bottom:522.493333pt;}
.yde{bottom:525.693333pt;}
.y161{bottom:530.173333pt;}
.y16{bottom:530.333333pt;}
.y50{bottom:530.813333pt;}
.y75{bottom:533.533333pt;}
.y11d{bottom:535.133333pt;}
.ya0{bottom:538.813333pt;}
.ydd{bottom:541.373333pt;}
.y160{bottom:542.653333pt;}
.y15{bottom:544.413333pt;}
.y4f{bottom:546.493333pt;}
.y11c{bottom:547.613333pt;}
.y74{bottom:549.213333pt;}
.y15f{bottom:555.133333pt;}
.ydc{bottom:557.053333pt;}
.y14{bottom:558.493333pt;}
.y4e{bottom:562.013333pt;}
.y73{bottom:564.733333pt;}
.y15e{bottom:567.613333pt;}
.y97{bottom:570.653333pt;}
.ydb{bottom:572.573333pt;}
.y13{bottom:576.573333pt;}
.y4d{bottom:577.693333pt;}
.y11b{bottom:578.653333pt;}
.y15d{bottom:580.253333pt;}
.y72{bottom:580.413333pt;}
.yda{bottom:588.253333pt;}
.y12{bottom:590.653333pt;}
.y9a{bottom:590.813333pt;}
.y15c{bottom:592.733333pt;}
.y4c{bottom:593.373333pt;}
.y71{bottom:596.093333pt;}
.yd9{bottom:603.933333pt;}
.y11{bottom:604.733333pt;}
.y15b{bottom:605.213333pt;}
.y4b{bottom:608.893333pt;}
.y70{bottom:611.613333pt;}
.y15a{bottom:617.693333pt;}
.yd8{bottom:619.453333pt;}
.y4a{bottom:624.573333pt;}
.y96{bottom:625.533333pt;}
.y6f{bottom:627.293333pt;}
.y10{bottom:628.413333pt;}
.y159{bottom:630.173333pt;}
.yd7{bottom:635.133333pt;}
.y11a{bottom:639.133333pt;}
.y95{bottom:640.093333pt;}
.y49{bottom:640.253333pt;}
.y158{bottom:642.653333pt;}
.y6e{bottom:642.973333pt;}
.yd6{bottom:650.813333pt;}
.y119{bottom:653.213333pt;}
.y94{bottom:654.973333pt;}
.y157{bottom:655.293333pt;}
.y48{bottom:655.773333pt;}
.y6d{bottom:658.653333pt;}
.yd5{bottom:666.333333pt;}
.y118{bottom:667.293333pt;}
.y156{bottom:667.773333pt;}
.y93{bottom:670.813333pt;}
.y47{bottom:671.453333pt;}
.y155{bottom:680.253333pt;}
.yd4{bottom:682.013333pt;}
.y92{bottom:686.493333pt;}
.y46{bottom:687.133333pt;}
.yf{bottom:689.373333pt;}
.y6c{bottom:691.453333pt;}
.y154{bottom:692.733333pt;}
.yd3{bottom:697.693333pt;}
.y117{bottom:699.613333pt;}
.y45{bottom:702.813333pt;}
.ye{bottom:703.933333pt;}
.y153{bottom:705.213333pt;}
.yd2{bottom:713.373333pt;}
.y152{bottom:717.693333pt;}
.y44{bottom:718.333333pt;}
.y91{bottom:720.093333pt;}
.y151{bottom:730.333333pt;}
.y43{bottom:734.013333pt;}
.y6b{bottom:735.773333pt;}
.y150{bottom:742.813333pt;}
.yd1{bottom:746.973333pt;}
.y42{bottom:749.693333pt;}
.yd{bottom:749.762667pt;}
.y14f{bottom:755.333333pt;}
.y116{bottom:760.133333pt;}
.y41{bottom:765.253333pt;}
.y14e{bottom:767.813333pt;}
.y115{bottom:774.213333pt;}
.y14d{bottom:780.293333pt;}
.y40{bottom:780.933333pt;}
.y14c{bottom:792.773333pt;}
.y3f{bottom:796.613333pt;}
.y114{bottom:797.573333pt;}
.y14b{bottom:805.253333pt;}
.yd0{bottom:807.813333pt;}
.yc{bottom:808.293333pt;}
.y3e{bottom:812.133333pt;}
.y14a{bottom:817.893333pt;}
.y113{bottom:822.213333pt;}
.ycf{bottom:823.333333pt;}
.y3d{bottom:827.813333pt;}
.yb{bottom:828.773333pt;}
.y149{bottom:830.373333pt;}
.yce{bottom:839.013333pt;}
.y148{bottom:842.853333pt;}
.y3c{bottom:843.493333pt;}
.y112{bottom:844.293333pt;}
.ya{bottom:854.853333pt;}
.y147{bottom:855.333333pt;}
.y3b{bottom:859.173333pt;}
.y111{bottom:867.653333pt;}
.y146{bottom:867.813333pt;}
.ycd{bottom:869.893333pt;}
.y3a{bottom:874.693333pt;}
.y145{bottom:880.293333pt;}
.ycc{bottom:882.053333pt;}
.y39{bottom:890.373333pt;}
.y110{bottom:892.293333pt;}
.y144{bottom:892.933333pt;}
.y9{bottom:893.573333pt;}
.yc9{bottom:898.213333pt;}
.y143{bottom:905.413333pt;}
.y38{bottom:906.053333pt;}
.y10f{bottom:906.373333pt;}
.ycb{bottom:914.533333pt;}
.y142{bottom:917.893333pt;}
.y10e{bottom:920.453333pt;}
.y37{bottom:921.573333pt;}
.y8{bottom:927.813333pt;}
.y141{bottom:930.373333pt;}
.yc8{bottom:930.853333pt;}
.y10d{bottom:934.533333pt;}
.y36{bottom:937.253333pt;}
.y140{bottom:942.853333pt;}
.yc7{bottom:947.173333pt;}
.y10c{bottom:948.613333pt;}
.y35{bottom:952.933333pt;}
.y13f{bottom:955.333333pt;}
.y10b{bottom:962.533333pt;}
.y13e{bottom:967.973333pt;}
.y34{bottom:968.453333pt;}
.y10a{bottom:976.613333pt;}
.yc3{bottom:979.173333pt;}
.y13d{bottom:980.453333pt;}
.y33{bottom:984.133333pt;}
.y109{bottom:990.693333pt;}
.y13c{bottom:992.933333pt;}
.yc6{bottom:995.333333pt;}
.y32{bottom:999.813333pt;}
.y3{bottom:1002.053333pt;}
.y13b{bottom:1005.440000pt;}
.yc2{bottom:1011.680000pt;}
.y108{bottom:1014.080000pt;}
.y31{bottom:1015.360000pt;}
.y13a{bottom:1017.920000pt;}
.y2{bottom:1056.800000pt;}
.y30{bottom:1065.760000pt;}
.y1{bottom:1068.480000pt;}
.h14{height:15.520000pt;}
.h15{height:15.680000pt;}
.h1c{height:15.712000pt;}
.h19{height:17.920000pt;}
.h12{height:19.520000pt;}
.h3{height:28.352000pt;}
.h13{height:31.200000pt;}
.h11{height:31.360000pt;}
.h17{height:31.392000pt;}
.h1a{height:32.000000pt;}
.h18{height:34.240000pt;}
.h2{height:36.920625pt;}
.h8{height:42.440312pt;}
.h9{height:43.905937pt;}
.he{height:44.975625pt;}
.hb{height:47.507812pt;}
.h5{height:47.742188pt;}
.h1b{height:48.192000pt;}
.h1d{height:48.320000pt;}
.ha{height:49.148438pt;}
.h10{height:51.520000pt;}
.hd{height:52.575312pt;}
.hf{height:54.390938pt;}
.h1e{height:60.288750pt;}
.h7{height:63.343750pt;}
.h4{height:65.531250pt;}
.hc{height:76.671562pt;}
.h16{height:78.240000pt;}
.h6{height:114.679688pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:64.800000pt;}
.wb{width:66.080000pt;}
.w4{width:77.792000pt;}
.w9{width:79.840000pt;}
.wa{width:81.312000pt;}
.w6{width:86.272000pt;}
.w5{width:98.400000pt;}
.w8{width:100.192000pt;}
.w2{width:680.453333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xf{left:22.074667pt;}
.x3{left:52.960000pt;}
.x7{left:60.479988pt;}
.xa{left:68.159988pt;}
.xb{left:76.959988pt;}
.x18{left:84.511988pt;}
.xc{left:100.991988pt;}
.x19{left:108.511988pt;}
.xe{left:132.032000pt;}
.x12{left:154.426667pt;}
.x10{left:231.226667pt;}
.x13{left:234.906667pt;}
.x4{left:293.986667pt;}
.x14{left:316.866667pt;}
.x11{left:318.146667pt;}
.x6{left:402.626667pt;}
.x8{left:410.146655pt;}
.x9{left:434.173322pt;}
.x15{left:504.093333pt;}
.x16{left:584.573333pt;}
.x1{left:611.653333pt;}
.x2{left:615.653333pt;}
.x17{left:666.533333pt;}
.x5{left:727.333333pt;}
}




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