
    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_0093b26205a8778740305ac9.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a4a37a38c4f091b087a365cb.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_61e4b4a29d6ae19e675db098.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.981934;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_348794e73632cb41ffbe7e84.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_f0da83614d493d9e3b84bf23.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls17{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls22{letter-spacing:-0.326400px;}
.ls8{letter-spacing:-0.272400px;}
.ls1a{letter-spacing:-0.247200px;}
.ls1b{letter-spacing:-0.240600px;}
.ls1c{letter-spacing:-0.172200px;}
.ls5{letter-spacing:-0.132600px;}
.lsb{letter-spacing:-0.115800px;}
.ls18{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.078600px;}
.ls20{letter-spacing:-0.069600px;}
.ls9{letter-spacing:-0.064800px;}
.lsc{letter-spacing:-0.058320px;}
.ls1d{letter-spacing:-0.041040px;}
.ls25{letter-spacing:-0.038160px;}
.ls33{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.023760px;}
.ls4{letter-spacing:0.038880px;}
.lsd{letter-spacing:0.060600px;}
.lsa{letter-spacing:0.066000px;}
.ls34{letter-spacing:0.100800px;}
.ls13{letter-spacing:0.140400px;}
.ls7{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.ls19{letter-spacing:0.175200px;}
.ls29{letter-spacing:0.179280px;}
.ls2f{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.186600px;}
.ls26{letter-spacing:0.306000px;}
.lse{letter-spacing:0.393600px;}
.ls28{letter-spacing:0.433440px;}
.ls16{letter-spacing:0.479520px;}
.ls2{letter-spacing:0.617760px;}
.ls30{letter-spacing:0.660000px;}
.ls11{letter-spacing:0.780000px;}
.ls31{letter-spacing:0.900000px;}
.ls1f{letter-spacing:1.026000px;}
.ls15{letter-spacing:2.106720px;}
.ls12{letter-spacing:5.706720px;}
.ls14{letter-spacing:6.654240px;}
.ls2e{letter-spacing:8.094240px;}
.ls2c{letter-spacing:12.186720px;}
.ls2b{letter-spacing:13.854240px;}
.ls2d{letter-spacing:15.294240px;}
.ls2a{letter-spacing:17.454240px;}
.ls24{letter-spacing:17.946720px;}
.lsf{letter-spacing:21.546720px;}
.ls32{letter-spacing:21.708000px;}
.ls1{letter-spacing:38.106720px;}
.ls27{letter-spacing:42.570720px;}
.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:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws17{word-spacing:-14.165760px;}
.ws9{word-spacing:-13.899360px;}
.ws16{word-spacing:-13.811760px;}
.ws13{word-spacing:-13.692360px;}
.ws18{word-spacing:-13.685040px;}
.wsd{word-spacing:-13.680960px;}
.ws1a{word-spacing:-13.606560px;}
.ws14{word-spacing:-13.529520px;}
.ws4{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.467600px;}
.ws11{word-spacing:-13.464720px;}
.ws8{word-spacing:-13.447440px;}
.wsa{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.436160px;}
.wsc{word-spacing:-13.398360px;}
.ws7{word-spacing:-13.389960px;}
.ws10{word-spacing:-13.333560px;}
.wsf{word-spacing:-13.265160px;}
.wse{word-spacing:-13.258560px;}
.ws1b{word-spacing:-12.204000px;}
.ws19{word-spacing:-12.186000px;}
.ws5{word-spacing:-8.786880px;}
.ws6{word-spacing:-8.514480px;}
.wsb{word-spacing:0.000000px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._27{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._23{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._26{margin-left:-145.290240px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._24{margin-left:-110.367360px;}
._25{margin-left:-109.224000px;}
._1d{margin-left:-102.529440px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.492560px;}
._1a{margin-left:-31.530240px;}
._2a{margin-left:-4.412160px;}
._28{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._29{width:1.317240px;}
._2b{width:3.103200px;}
._2c{width:4.789080px;}
._30{width:6.013920px;}
._2d{width:7.826040px;}
._2e{width:8.844480px;}
._2f{width:10.352040px;}
._33{width:11.373360px;}
._32{width:12.404640px;}
._31{width:14.570040px;}
._36{width:16.044840px;}
._34{width:17.569440px;}
._35{width:18.645120px;}
._3a{width:23.798400px;}
._39{width:24.895800px;}
._38{width:29.070240px;}
._37{width:30.178800px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:3.960000px;}
.y68{bottom:6.480000px;}
.y6f{bottom:6.654000px;}
.y6c{bottom:6.660000px;}
.y6a{bottom:38.334000px;}
.y73{bottom:38.340000px;}
.y6{bottom:61.416000px;}
.y126{bottom:87.876000px;}
.ybd{bottom:90.756000px;}
.y66{bottom:91.296000px;}
.y125{bottom:94.356000px;}
.y31{bottom:94.896000px;}
.y70{bottom:102.636000px;}
.y65{bottom:112.356000px;}
.ybc{bottom:113.256000px;}
.y124{bottom:115.416000px;}
.y30{bottom:115.956000px;}
.yfe{bottom:117.936000px;}
.y9b{bottom:121.896000px;}
.y69{bottom:123.696000px;}
.y64{bottom:133.416000px;}
.ybb{bottom:135.756000px;}
.y123{bottom:136.476000px;}
.y2f{bottom:137.016000px;}
.yfd{bottom:138.996000px;}
.y9a{bottom:142.956000px;}
.y6e{bottom:144.756000px;}
.y63{bottom:154.470000px;}
.y122{bottom:157.530000px;}
.y2e{bottom:158.070000px;}
.yba{bottom:158.250000px;}
.yfc{bottom:160.050000px;}
.y99{bottom:164.010000px;}
.y6d{bottom:165.810000px;}
.y62{bottom:175.530000px;}
.yeb{bottom:176.970000px;}
.y121{bottom:178.590000px;}
.y2d{bottom:179.130000px;}
.yb9{bottom:180.750000px;}
.yfb{bottom:181.110000px;}
.y98{bottom:185.070000px;}
.y6b{bottom:186.870000px;}
.y61{bottom:196.590000px;}
.yea{bottom:198.030000px;}
.y120{bottom:199.650000px;}
.y2c{bottom:200.190000px;}
.yfa{bottom:202.170000px;}
.yb8{bottom:203.250000px;}
.y97{bottom:206.130000px;}
.y67{bottom:209.550000px;}
.y60{bottom:217.650000px;}
.ye9{bottom:219.090000px;}
.y11f{bottom:220.710000px;}
.y2b{bottom:221.250000px;}
.yf9{bottom:223.230000px;}
.yb7{bottom:225.750000px;}
.y96{bottom:227.190000px;}
.y5f{bottom:238.710000px;}
.ye8{bottom:240.150000px;}
.yf8{bottom:240.330000px;}
.y11e{bottom:241.770000px;}
.y2a{bottom:242.310000px;}
.y95{bottom:248.250000px;}
.y5e{bottom:259.770000px;}
.ye7{bottom:261.210000px;}
.y11d{bottom:262.830000px;}
.y29{bottom:263.370000px;}
.y94{bottom:269.310000px;}
.yb5{bottom:272.190000px;}
.y5d{bottom:280.830000px;}
.ye6{bottom:282.270000px;}
.y11c{bottom:283.890000px;}
.y28{bottom:284.430000px;}
.y93{bottom:290.370000px;}
.y5c{bottom:301.890000px;}
.ye5{bottom:303.330000px;}
.yb4{bottom:304.050000px;}
.y11b{bottom:304.950000px;}
.y27{bottom:305.490000px;}
.y92{bottom:306.210000px;}
.y5b{bottom:322.950000px;}
.ye4{bottom:324.390000px;}
.yb3{bottom:325.110000px;}
.y11a{bottom:326.010000px;}
.y26{bottom:326.550000px;}
.y5a{bottom:344.055000px;}
.ye3{bottom:345.495000px;}
.yb2{bottom:346.215000px;}
.y119{bottom:347.115000px;}
.y25{bottom:347.655000px;}
.y91{bottom:357.735000px;}
.y59{bottom:365.115000px;}
.ye2{bottom:366.555000px;}
.yb1{bottom:367.275000px;}
.y118{bottom:368.175000px;}
.y24{bottom:368.715000px;}
.y58{bottom:386.175000px;}
.ye1{bottom:387.615000px;}
.yb0{bottom:388.335000px;}
.y117{bottom:389.235000px;}
.y23{bottom:389.775000px;}
.y90{bottom:406.695000px;}
.y57{bottom:407.235000px;}
.ye0{bottom:408.675000px;}
.yaf{bottom:409.395000px;}
.y116{bottom:410.295000px;}
.y22{bottom:410.835000px;}
.ydf{bottom:424.515000px;}
.y56{bottom:428.295000px;}
.yae{bottom:430.455000px;}
.y115{bottom:431.355000px;}
.y21{bottom:431.895000px;}
.yde{bottom:448.095000px;}
.y55{bottom:449.355000px;}
.yad{bottom:451.515000px;}
.y114{bottom:452.415000px;}
.y20{bottom:452.955000px;}
.y8f{bottom:455.655000px;}
.yac{bottom:467.355000px;}
.y54{bottom:470.415000px;}
.ydd{bottom:470.595000px;}
.y113{bottom:473.475000px;}
.y1f{bottom:474.015000px;}
.yab{bottom:490.935000px;}
.y53{bottom:491.475000px;}
.ydc{bottom:493.095000px;}
.y112{bottom:494.535000px;}
.y1e{bottom:495.075000px;}
.y8e{bottom:504.615000px;}
.y52{bottom:512.535000px;}
.yaa{bottom:513.435000px;}
.ydb{bottom:515.595000px;}
.y1d{bottom:516.135000px;}
.y51{bottom:533.595000px;}
.ya9{bottom:535.935000px;}
.y111{bottom:536.655000px;}
.y1c{bottom:537.015000px;}
.yf7{bottom:539.355000px;}
.yda{bottom:539.715000px;}
.y50{bottom:554.655000px;}
.y8d{bottom:555.195000px;}
.y110{bottom:557.715000px;}
.y1b{bottom:558.075000px;}
.ya8{bottom:558.435000px;}
.yf6{bottom:560.415000px;}
.yd9{bottom:571.395000px;}
.y4f{bottom:575.715000px;}
.y10f{bottom:578.775000px;}
.y1a{bottom:579.135000px;}
.yf5{bottom:581.475000px;}
.ya7{bottom:582.555000px;}
.yd8{bottom:592.455000px;}
.y4e{bottom:596.805000px;}
.y10e{bottom:599.865000px;}
.y19{bottom:600.225000px;}
.yf4{bottom:602.565000px;}
.yd7{bottom:613.545000px;}
.ya6{bottom:614.265000px;}
.y8c{bottom:614.805000px;}
.y4d{bottom:617.865000px;}
.y10d{bottom:620.925000px;}
.y18{bottom:621.285000px;}
.yf3{bottom:623.625000px;}
.yd6{bottom:634.605000px;}
.ya5{bottom:635.325000px;}
.y8b{bottom:635.865000px;}
.y4c{bottom:638.925000px;}
.y10c{bottom:641.985000px;}
.yf2{bottom:644.685000px;}
.yd5{bottom:655.665000px;}
.ya4{bottom:656.385000px;}
.y8a{bottom:656.925000px;}
.y4b{bottom:659.805000px;}
.y10b{bottom:663.045000px;}
.yf1{bottom:665.745000px;}
.y17{bottom:665.925000px;}
.yd4{bottom:676.725000px;}
.ya3{bottom:677.445000px;}
.y89{bottom:677.985000px;}
.y4a{bottom:680.865000px;}
.y10a{bottom:684.105000px;}
.yf0{bottom:686.805000px;}
.y16{bottom:695.805000px;}
.yd3{bottom:697.785000px;}
.ya2{bottom:698.505000px;}
.y88{bottom:699.045000px;}
.y49{bottom:701.925000px;}
.y109{bottom:705.165000px;}
.yef{bottom:707.865000px;}
.y15{bottom:716.865000px;}
.yd2{bottom:718.845000px;}
.ya1{bottom:719.565000px;}
.y87{bottom:720.105000px;}
.y48{bottom:722.985000px;}
.y108{bottom:726.225000px;}
.yee{bottom:728.925000px;}
.yd1{bottom:734.685000px;}
.y14{bottom:737.925000px;}
.ya0{bottom:740.625000px;}
.y86{bottom:741.165000px;}
.y47{bottom:744.045000px;}
.y107{bottom:747.285000px;}
.yed{bottom:749.985000px;}
.y13{bottom:758.985000px;}
.yd0{bottom:759.885000px;}
.y9f{bottom:761.685000px;}
.y85{bottom:762.225000px;}
.y46{bottom:765.105000px;}
.yec{bottom:767.085000px;}
.y106{bottom:768.345000px;}
.y12{bottom:780.045000px;}
.y9e{bottom:782.745000px;}
.y84{bottom:783.285000px;}
.y45{bottom:786.165000px;}
.y105{bottom:789.405000px;}
.ycf{bottom:791.745000px;}
.y11{bottom:801.105000px;}
.y9d{bottom:803.805000px;}
.y83{bottom:804.345000px;}
.y44{bottom:807.225000px;}
.y104{bottom:810.285000px;}
.yce{bottom:812.805000px;}
.y9c{bottom:820.905000px;}
.y10{bottom:822.165000px;}
.y82{bottom:825.405000px;}
.y43{bottom:828.285000px;}
.y103{bottom:831.345000px;}
.ycd{bottom:833.865000px;}
.yf{bottom:843.225000px;}
.y81{bottom:846.465000px;}
.y42{bottom:849.345000px;}
.y102{bottom:852.405000px;}
.ycc{bottom:854.925000px;}
.ye{bottom:864.330000px;}
.y80{bottom:867.570000px;}
.y41{bottom:870.450000px;}
.y101{bottom:873.510000px;}
.ycb{bottom:876.030000px;}
.yd{bottom:885.390000px;}
.y7f{bottom:888.630000px;}
.y40{bottom:891.510000px;}
.y100{bottom:894.570000px;}
.yca{bottom:897.090000px;}
.yc{bottom:908.610000px;}
.y7e{bottom:909.690000px;}
.yff{bottom:911.670000px;}
.y3f{bottom:912.570000px;}
.yc9{bottom:918.150000px;}
.y7d{bottom:930.750000px;}
.y3e{bottom:933.630000px;}
.yb{bottom:934.890000px;}
.yc8{bottom:939.210000px;}
.y7c{bottom:951.810000px;}
.y3d{bottom:954.690000px;}
.ya{bottom:955.950000px;}
.yc7{bottom:960.270000px;}
.y9{bottom:971.790000px;}
.y7b{bottom:972.870000px;}
.y3c{bottom:975.750000px;}
.yc6{bottom:976.110000px;}
.y8{bottom:992.850000px;}
.y7a{bottom:993.930000px;}
.y3b{bottom:996.810000px;}
.yc5{bottom:999.690000px;}
.y79{bottom:1014.990000px;}
.y3a{bottom:1017.870000px;}
.y7{bottom:1018.050000px;}
.yc4{bottom:1022.190000px;}
.y77{bottom:1030.830000px;}
.y39{bottom:1038.930000px;}
.yc3{bottom:1044.690000px;}
.y78{bottom:1053.330000px;}
.y5{bottom:1058.190000px;}
.y38{bottom:1059.990000px;}
.yc2{bottom:1067.190000px;}
.y72{bottom:1074.390000px;}
.y37{bottom:1081.050000px;}
.yc1{bottom:1089.690000px;}
.y4{bottom:1090.410000px;}
.y76{bottom:1095.450000px;}
.y36{bottom:1102.110000px;}
.yc0{bottom:1112.190000px;}
.y75{bottom:1116.510000px;}
.y3{bottom:1122.630000px;}
.y35{bottom:1123.170000px;}
.ybf{bottom:1134.720000px;}
.y74{bottom:1137.600000px;}
.y34{bottom:1144.260000px;}
.y2{bottom:1154.700000px;}
.ybe{bottom:1157.220000px;}
.y71{bottom:1158.660000px;}
.y33{bottom:1165.320000px;}
.y1{bottom:1188.720000px;}
.y32{bottom:1193.220000px;}
.h9{height:20.880000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.h12{height:22.500000px;}
.h15{height:22.536000px;}
.h13{height:23.580000px;}
.h11{height:23.616000px;}
.h14{height:23.760000px;}
.h6{height:38.671172px;}
.he{height:43.560000px;}
.h17{height:48.029766px;}
.h10{height:48.960000px;}
.hf{height:51.516000px;}
.h7{height:59.439023px;}
.h16{height:59.551172px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h8{height:67.824844px;}
.ha{height:84.240000px;}
.hc{height:84.276000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:74.340000px;}
.wf{width:74.376000px;}
.wd{width:74.556000px;}
.w1b{width:74.700000px;}
.wc{width:75.060000px;}
.wa{width:77.760000px;}
.w9{width:77.796000px;}
.w13{width:84.996000px;}
.w1c{width:85.140000px;}
.w19{width:85.320000px;}
.w10{width:90.360000px;}
.w8{width:90.900000px;}
.w15{width:95.616000px;}
.w14{width:95.760000px;}
.w6{width:100.440000px;}
.w17{width:102.456000px;}
.w12{width:106.380000px;}
.w5{width:108.216000px;}
.w1d{width:148.536000px;}
.w18{width:163.290000px;}
.w11{width:201.990000px;}
.w3{width:208.110000px;}
.wb{width:276.510000px;}
.w4{width:284.970000px;}
.w16{width:318.990000px;}
.w1a{width:382.755000px;}
.w7{width:456.015000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x21{left:-4.860000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x6{left:53.999987px;}
.x27{left:75.239987px;}
.x7{left:78.479987px;}
.x2b{left:80.999987px;}
.x8{left:86.039987px;}
.x9{left:95.796000px;}
.x1b{left:101.016000px;}
.xe{left:108.035987px;}
.x20{left:111.636000px;}
.x15{left:113.976000px;}
.x5{left:156.449987px;}
.x3{left:272.189987px;}
.xb{left:303.915000px;}
.x2a{left:348.554987px;}
.x2{left:350.534987px;}
.x13{left:352.514987px;}
.x14{left:365.654987px;}
.x16{left:390.495000px;}
.x1c{left:409.395000px;}
.x4{left:419.114987px;}
.x22{left:430.635000px;}
.x17{left:465.555000px;}
.x1{left:479.264987px;}
.x24{left:483.765000px;}
.x1d{left:494.385000px;}
.x23{left:533.085000px;}
.x18{left:540.105000px;}
.xf{left:551.445000px;}
.x25{left:558.465000px;}
.xc{left:588.885000px;}
.x1e{left:590.145000px;}
.x19{left:614.445000px;}
.x10{left:642.345000px;}
.x26{left:643.605000px;}
.x1f{left:685.770000px;}
.x1a{left:688.830000px;}
.xd{left:697.110000px;}
.x11{left:720.150000px;}
.x28{left:739.769987px;}
.x12{left:742.829987px;}
.x29{left:774.509987px;}
.x2c{left:838.409987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls17{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls22{letter-spacing:-0.290133pt;}
.ls8{letter-spacing:-0.242133pt;}
.ls1a{letter-spacing:-0.219733pt;}
.ls1b{letter-spacing:-0.213867pt;}
.ls1c{letter-spacing:-0.153067pt;}
.ls5{letter-spacing:-0.117867pt;}
.lsb{letter-spacing:-0.102933pt;}
.ls18{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.069867pt;}
.ls20{letter-spacing:-0.061867pt;}
.ls9{letter-spacing:-0.057600pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls1d{letter-spacing:-0.036480pt;}
.ls25{letter-spacing:-0.033920pt;}
.ls33{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.021120pt;}
.ls4{letter-spacing:0.034560pt;}
.lsd{letter-spacing:0.053867pt;}
.lsa{letter-spacing:0.058667pt;}
.ls34{letter-spacing:0.089600pt;}
.ls13{letter-spacing:0.124800pt;}
.ls7{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.ls19{letter-spacing:0.155733pt;}
.ls29{letter-spacing:0.159360pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.165867pt;}
.ls26{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.349867pt;}
.ls28{letter-spacing:0.385280pt;}
.ls16{letter-spacing:0.426240pt;}
.ls2{letter-spacing:0.549120pt;}
.ls30{letter-spacing:0.586667pt;}
.ls11{letter-spacing:0.693333pt;}
.ls31{letter-spacing:0.800000pt;}
.ls1f{letter-spacing:0.912000pt;}
.ls15{letter-spacing:1.872640pt;}
.ls12{letter-spacing:5.072640pt;}
.ls14{letter-spacing:5.914880pt;}
.ls2e{letter-spacing:7.194880pt;}
.ls2c{letter-spacing:10.832640pt;}
.ls2b{letter-spacing:12.314880pt;}
.ls2d{letter-spacing:13.594880pt;}
.ls2a{letter-spacing:15.514880pt;}
.ls24{letter-spacing:15.952640pt;}
.lsf{letter-spacing:19.152640pt;}
.ls32{letter-spacing:19.296000pt;}
.ls1{letter-spacing:33.872640pt;}
.ls27{letter-spacing:37.840640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.591787pt;}
.ws9{word-spacing:-12.354987pt;}
.ws16{word-spacing:-12.277120pt;}
.ws13{word-spacing:-12.170987pt;}
.ws18{word-spacing:-12.164480pt;}
.wsd{word-spacing:-12.160853pt;}
.ws1a{word-spacing:-12.094720pt;}
.ws14{word-spacing:-12.026240pt;}
.ws4{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.971200pt;}
.ws11{word-spacing:-11.968640pt;}
.ws8{word-spacing:-11.953280pt;}
.wsa{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.943253pt;}
.wsc{word-spacing:-11.909653pt;}
.ws7{word-spacing:-11.902187pt;}
.ws10{word-spacing:-11.852053pt;}
.wsf{word-spacing:-11.791253pt;}
.wse{word-spacing:-11.785387pt;}
.ws1b{word-spacing:-10.848000pt;}
.ws19{word-spacing:-10.832000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws6{word-spacing:-7.568427pt;}
.wsb{word-spacing:0.000000pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._27{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._23{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._26{margin-left:-129.146880pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._24{margin-left:-98.104320pt;}
._25{margin-left:-97.088000pt;}
._1d{margin-left:-91.137280pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.993387pt;}
._1a{margin-left:-28.026880pt;}
._2a{margin-left:-3.921920pt;}
._28{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._29{width:1.170880pt;}
._2b{width:2.758400pt;}
._2c{width:4.256960pt;}
._30{width:5.345707pt;}
._2d{width:6.956480pt;}
._2e{width:7.861760pt;}
._2f{width:9.201813pt;}
._33{width:10.109653pt;}
._32{width:11.026347pt;}
._31{width:12.951147pt;}
._36{width:14.262080pt;}
._34{width:15.617280pt;}
._35{width:16.573440pt;}
._3a{width:21.154133pt;}
._39{width:22.129600pt;}
._38{width:25.840213pt;}
._37{width:26.825600pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:3.520000pt;}
.y68{bottom:5.760000pt;}
.y6f{bottom:5.914667pt;}
.y6c{bottom:5.920000pt;}
.y6a{bottom:34.074667pt;}
.y73{bottom:34.080000pt;}
.y6{bottom:54.592000pt;}
.y126{bottom:78.112000pt;}
.ybd{bottom:80.672000pt;}
.y66{bottom:81.152000pt;}
.y125{bottom:83.872000pt;}
.y31{bottom:84.352000pt;}
.y70{bottom:91.232000pt;}
.y65{bottom:99.872000pt;}
.ybc{bottom:100.672000pt;}
.y124{bottom:102.592000pt;}
.y30{bottom:103.072000pt;}
.yfe{bottom:104.832000pt;}
.y9b{bottom:108.352000pt;}
.y69{bottom:109.952000pt;}
.y64{bottom:118.592000pt;}
.ybb{bottom:120.672000pt;}
.y123{bottom:121.312000pt;}
.y2f{bottom:121.792000pt;}
.yfd{bottom:123.552000pt;}
.y9a{bottom:127.072000pt;}
.y6e{bottom:128.672000pt;}
.y63{bottom:137.306667pt;}
.y122{bottom:140.026667pt;}
.y2e{bottom:140.506667pt;}
.yba{bottom:140.666667pt;}
.yfc{bottom:142.266667pt;}
.y99{bottom:145.786667pt;}
.y6d{bottom:147.386667pt;}
.y62{bottom:156.026667pt;}
.yeb{bottom:157.306667pt;}
.y121{bottom:158.746667pt;}
.y2d{bottom:159.226667pt;}
.yb9{bottom:160.666667pt;}
.yfb{bottom:160.986667pt;}
.y98{bottom:164.506667pt;}
.y6b{bottom:166.106667pt;}
.y61{bottom:174.746667pt;}
.yea{bottom:176.026667pt;}
.y120{bottom:177.466667pt;}
.y2c{bottom:177.946667pt;}
.yfa{bottom:179.706667pt;}
.yb8{bottom:180.666667pt;}
.y97{bottom:183.226667pt;}
.y67{bottom:186.266667pt;}
.y60{bottom:193.466667pt;}
.ye9{bottom:194.746667pt;}
.y11f{bottom:196.186667pt;}
.y2b{bottom:196.666667pt;}
.yf9{bottom:198.426667pt;}
.yb7{bottom:200.666667pt;}
.y96{bottom:201.946667pt;}
.y5f{bottom:212.186667pt;}
.ye8{bottom:213.466667pt;}
.yf8{bottom:213.626667pt;}
.y11e{bottom:214.906667pt;}
.y2a{bottom:215.386667pt;}
.y95{bottom:220.666667pt;}
.y5e{bottom:230.906667pt;}
.ye7{bottom:232.186667pt;}
.y11d{bottom:233.626667pt;}
.y29{bottom:234.106667pt;}
.y94{bottom:239.386667pt;}
.yb5{bottom:241.946667pt;}
.y5d{bottom:249.626667pt;}
.ye6{bottom:250.906667pt;}
.y11c{bottom:252.346667pt;}
.y28{bottom:252.826667pt;}
.y93{bottom:258.106667pt;}
.y5c{bottom:268.346667pt;}
.ye5{bottom:269.626667pt;}
.yb4{bottom:270.266667pt;}
.y11b{bottom:271.066667pt;}
.y27{bottom:271.546667pt;}
.y92{bottom:272.186667pt;}
.y5b{bottom:287.066667pt;}
.ye4{bottom:288.346667pt;}
.yb3{bottom:288.986667pt;}
.y11a{bottom:289.786667pt;}
.y26{bottom:290.266667pt;}
.y5a{bottom:305.826667pt;}
.ye3{bottom:307.106667pt;}
.yb2{bottom:307.746667pt;}
.y119{bottom:308.546667pt;}
.y25{bottom:309.026667pt;}
.y91{bottom:317.986667pt;}
.y59{bottom:324.546667pt;}
.ye2{bottom:325.826667pt;}
.yb1{bottom:326.466667pt;}
.y118{bottom:327.266667pt;}
.y24{bottom:327.746667pt;}
.y58{bottom:343.266667pt;}
.ye1{bottom:344.546667pt;}
.yb0{bottom:345.186667pt;}
.y117{bottom:345.986667pt;}
.y23{bottom:346.466667pt;}
.y90{bottom:361.506667pt;}
.y57{bottom:361.986667pt;}
.ye0{bottom:363.266667pt;}
.yaf{bottom:363.906667pt;}
.y116{bottom:364.706667pt;}
.y22{bottom:365.186667pt;}
.ydf{bottom:377.346667pt;}
.y56{bottom:380.706667pt;}
.yae{bottom:382.626667pt;}
.y115{bottom:383.426667pt;}
.y21{bottom:383.906667pt;}
.yde{bottom:398.306667pt;}
.y55{bottom:399.426667pt;}
.yad{bottom:401.346667pt;}
.y114{bottom:402.146667pt;}
.y20{bottom:402.626667pt;}
.y8f{bottom:405.026667pt;}
.yac{bottom:415.426667pt;}
.y54{bottom:418.146667pt;}
.ydd{bottom:418.306667pt;}
.y113{bottom:420.866667pt;}
.y1f{bottom:421.346667pt;}
.yab{bottom:436.386667pt;}
.y53{bottom:436.866667pt;}
.ydc{bottom:438.306667pt;}
.y112{bottom:439.586667pt;}
.y1e{bottom:440.066667pt;}
.y8e{bottom:448.546667pt;}
.y52{bottom:455.586667pt;}
.yaa{bottom:456.386667pt;}
.ydb{bottom:458.306667pt;}
.y1d{bottom:458.786667pt;}
.y51{bottom:474.306667pt;}
.ya9{bottom:476.386667pt;}
.y111{bottom:477.026667pt;}
.y1c{bottom:477.346667pt;}
.yf7{bottom:479.426667pt;}
.yda{bottom:479.746667pt;}
.y50{bottom:493.026667pt;}
.y8d{bottom:493.506667pt;}
.y110{bottom:495.746667pt;}
.y1b{bottom:496.066667pt;}
.ya8{bottom:496.386667pt;}
.yf6{bottom:498.146667pt;}
.yd9{bottom:507.906667pt;}
.y4f{bottom:511.746667pt;}
.y10f{bottom:514.466667pt;}
.y1a{bottom:514.786667pt;}
.yf5{bottom:516.866667pt;}
.ya7{bottom:517.826667pt;}
.yd8{bottom:526.626667pt;}
.y4e{bottom:530.493333pt;}
.y10e{bottom:533.213333pt;}
.y19{bottom:533.533333pt;}
.yf4{bottom:535.613333pt;}
.yd7{bottom:545.373333pt;}
.ya6{bottom:546.013333pt;}
.y8c{bottom:546.493333pt;}
.y4d{bottom:549.213333pt;}
.y10d{bottom:551.933333pt;}
.y18{bottom:552.253333pt;}
.yf3{bottom:554.333333pt;}
.yd6{bottom:564.093333pt;}
.ya5{bottom:564.733333pt;}
.y8b{bottom:565.213333pt;}
.y4c{bottom:567.933333pt;}
.y10c{bottom:570.653333pt;}
.yf2{bottom:573.053333pt;}
.yd5{bottom:582.813333pt;}
.ya4{bottom:583.453333pt;}
.y8a{bottom:583.933333pt;}
.y4b{bottom:586.493333pt;}
.y10b{bottom:589.373333pt;}
.yf1{bottom:591.773333pt;}
.y17{bottom:591.933333pt;}
.yd4{bottom:601.533333pt;}
.ya3{bottom:602.173333pt;}
.y89{bottom:602.653333pt;}
.y4a{bottom:605.213333pt;}
.y10a{bottom:608.093333pt;}
.yf0{bottom:610.493333pt;}
.y16{bottom:618.493333pt;}
.yd3{bottom:620.253333pt;}
.ya2{bottom:620.893333pt;}
.y88{bottom:621.373333pt;}
.y49{bottom:623.933333pt;}
.y109{bottom:626.813333pt;}
.yef{bottom:629.213333pt;}
.y15{bottom:637.213333pt;}
.yd2{bottom:638.973333pt;}
.ya1{bottom:639.613333pt;}
.y87{bottom:640.093333pt;}
.y48{bottom:642.653333pt;}
.y108{bottom:645.533333pt;}
.yee{bottom:647.933333pt;}
.yd1{bottom:653.053333pt;}
.y14{bottom:655.933333pt;}
.ya0{bottom:658.333333pt;}
.y86{bottom:658.813333pt;}
.y47{bottom:661.373333pt;}
.y107{bottom:664.253333pt;}
.yed{bottom:666.653333pt;}
.y13{bottom:674.653333pt;}
.yd0{bottom:675.453333pt;}
.y9f{bottom:677.053333pt;}
.y85{bottom:677.533333pt;}
.y46{bottom:680.093333pt;}
.yec{bottom:681.853333pt;}
.y106{bottom:682.973333pt;}
.y12{bottom:693.373333pt;}
.y9e{bottom:695.773333pt;}
.y84{bottom:696.253333pt;}
.y45{bottom:698.813333pt;}
.y105{bottom:701.693333pt;}
.ycf{bottom:703.773333pt;}
.y11{bottom:712.093333pt;}
.y9d{bottom:714.493333pt;}
.y83{bottom:714.973333pt;}
.y44{bottom:717.533333pt;}
.y104{bottom:720.253333pt;}
.yce{bottom:722.493333pt;}
.y9c{bottom:729.693333pt;}
.y10{bottom:730.813333pt;}
.y82{bottom:733.693333pt;}
.y43{bottom:736.253333pt;}
.y103{bottom:738.973333pt;}
.ycd{bottom:741.213333pt;}
.yf{bottom:749.533333pt;}
.y81{bottom:752.413333pt;}
.y42{bottom:754.973333pt;}
.y102{bottom:757.693333pt;}
.ycc{bottom:759.933333pt;}
.ye{bottom:768.293333pt;}
.y80{bottom:771.173333pt;}
.y41{bottom:773.733333pt;}
.y101{bottom:776.453333pt;}
.ycb{bottom:778.693333pt;}
.yd{bottom:787.013333pt;}
.y7f{bottom:789.893333pt;}
.y40{bottom:792.453333pt;}
.y100{bottom:795.173333pt;}
.yca{bottom:797.413333pt;}
.yc{bottom:807.653333pt;}
.y7e{bottom:808.613333pt;}
.yff{bottom:810.373333pt;}
.y3f{bottom:811.173333pt;}
.yc9{bottom:816.133333pt;}
.y7d{bottom:827.333333pt;}
.y3e{bottom:829.893333pt;}
.yb{bottom:831.013333pt;}
.yc8{bottom:834.853333pt;}
.y7c{bottom:846.053333pt;}
.y3d{bottom:848.613333pt;}
.ya{bottom:849.733333pt;}
.yc7{bottom:853.573333pt;}
.y9{bottom:863.813333pt;}
.y7b{bottom:864.773333pt;}
.y3c{bottom:867.333333pt;}
.yc6{bottom:867.653333pt;}
.y8{bottom:882.533333pt;}
.y7a{bottom:883.493333pt;}
.y3b{bottom:886.053333pt;}
.yc5{bottom:888.613333pt;}
.y79{bottom:902.213333pt;}
.y3a{bottom:904.773333pt;}
.y7{bottom:904.933333pt;}
.yc4{bottom:908.613333pt;}
.y77{bottom:916.293333pt;}
.y39{bottom:923.493333pt;}
.yc3{bottom:928.613333pt;}
.y78{bottom:936.293333pt;}
.y5{bottom:940.613333pt;}
.y38{bottom:942.213333pt;}
.yc2{bottom:948.613333pt;}
.y72{bottom:955.013333pt;}
.y37{bottom:960.933333pt;}
.yc1{bottom:968.613333pt;}
.y4{bottom:969.253333pt;}
.y76{bottom:973.733333pt;}
.y36{bottom:979.653333pt;}
.yc0{bottom:988.613333pt;}
.y75{bottom:992.453333pt;}
.y3{bottom:997.893333pt;}
.y35{bottom:998.373333pt;}
.ybf{bottom:1008.640000pt;}
.y74{bottom:1011.200000pt;}
.y34{bottom:1017.120000pt;}
.y2{bottom:1026.400000pt;}
.ybe{bottom:1028.640000pt;}
.y71{bottom:1029.920000pt;}
.y33{bottom:1035.840000pt;}
.y1{bottom:1056.640000pt;}
.y32{bottom:1060.640000pt;}
.h9{height:18.560000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.h12{height:20.000000pt;}
.h15{height:20.032000pt;}
.h13{height:20.960000pt;}
.h11{height:20.992000pt;}
.h14{height:21.120000pt;}
.h6{height:34.374375pt;}
.he{height:38.720000pt;}
.h17{height:42.693125pt;}
.h10{height:43.520000pt;}
.hf{height:45.792000pt;}
.h7{height:52.834688pt;}
.h16{height:52.934375pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h8{height:60.288750pt;}
.ha{height:74.880000pt;}
.hc{height:74.912000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:66.080000pt;}
.wf{width:66.112000pt;}
.wd{width:66.272000pt;}
.w1b{width:66.400000pt;}
.wc{width:66.720000pt;}
.wa{width:69.120000pt;}
.w9{width:69.152000pt;}
.w13{width:75.552000pt;}
.w1c{width:75.680000pt;}
.w19{width:75.840000pt;}
.w10{width:80.320000pt;}
.w8{width:80.800000pt;}
.w15{width:84.992000pt;}
.w14{width:85.120000pt;}
.w6{width:89.280000pt;}
.w17{width:91.072000pt;}
.w12{width:94.560000pt;}
.w5{width:96.192000pt;}
.w1d{width:132.032000pt;}
.w18{width:145.146667pt;}
.w11{width:179.546667pt;}
.w3{width:184.986667pt;}
.wb{width:245.786667pt;}
.w4{width:253.306667pt;}
.w16{width:283.546667pt;}
.w1a{width:340.226667pt;}
.w7{width:405.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x21{left:-4.320000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x6{left:47.999988pt;}
.x27{left:66.879988pt;}
.x7{left:69.759988pt;}
.x2b{left:71.999988pt;}
.x8{left:76.479988pt;}
.x9{left:85.152000pt;}
.x1b{left:89.792000pt;}
.xe{left:96.031988pt;}
.x20{left:99.232000pt;}
.x15{left:101.312000pt;}
.x5{left:139.066655pt;}
.x3{left:241.946655pt;}
.xb{left:270.146667pt;}
.x2a{left:309.826655pt;}
.x2{left:311.586655pt;}
.x13{left:313.346655pt;}
.x14{left:325.026655pt;}
.x16{left:347.106667pt;}
.x1c{left:363.906667pt;}
.x4{left:372.546655pt;}
.x22{left:382.786667pt;}
.x17{left:413.826667pt;}
.x1{left:426.013322pt;}
.x24{left:430.013333pt;}
.x1d{left:439.453333pt;}
.x23{left:473.853333pt;}
.x18{left:480.093333pt;}
.xf{left:490.173333pt;}
.x25{left:496.413333pt;}
.xc{left:523.453333pt;}
.x1e{left:524.573333pt;}
.x19{left:546.173333pt;}
.x10{left:570.973333pt;}
.x26{left:572.093333pt;}
.x1f{left:609.573333pt;}
.x1a{left:612.293333pt;}
.xd{left:619.653333pt;}
.x11{left:640.133333pt;}
.x28{left:657.573322pt;}
.x12{left:660.293322pt;}
.x29{left:688.453322pt;}
.x2c{left:745.253322pt;}
}




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