
    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_5b2e1135164d4fbfe19fcafc.woff2')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_63b46ef95372efd2312b244d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_8c031fa05333546fb9581aea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ce7b6b304ab3f50051c0d95.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0e7438b0b7e2590f7b9e2fb2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937500;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_8fca20e8d0f99c94285e739d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;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_076b073a032359069077fc92.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4c928470397c9411599c5739.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020020;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_e3b40ebd34a454a5328d69f7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:7.350000px;}
.lsf{letter-spacing:-0.828000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.035700px;}
.ls5{letter-spacing:0.141300px;}
.ls3{letter-spacing:0.239400px;}
.ls6{letter-spacing:0.972000px;}
.ls10{letter-spacing:2.310000px;}
.ls11{letter-spacing:43.050300px;}
.ls12{letter-spacing:43.119000px;}
.ls15{letter-spacing:64.830300px;}
.ls1{letter-spacing:85.617300px;}
.ls9{letter-spacing:91.770300px;}
.ls2{letter-spacing:91.800300px;}
.ls14{letter-spacing:91.869000px;}
.ls7{letter-spacing:95.772300px;}
.ls8{letter-spacing:95.841000px;}
.lse{letter-spacing:106.365600px;}
.lsd{letter-spacing:106.434300px;}
.lsa{letter-spacing:110.556300px;}
.ls13{letter-spacing:112.617300px;}
.lsb{letter-spacing:118.800300px;}
.lsc{letter-spacing:118.869000px;}
.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;}
}
.ws7{word-spacing:-144.150000px;}
.ws5{word-spacing:-114.098100px;}
.ws0{word-spacing:-73.325700px;}
.wsa{word-spacing:-48.883800px;}
.ws1{word-spacing:-44.815800px;}
.ws3{word-spacing:-43.798800px;}
.wsf{word-spacing:-37.696800px;}
.ws19{word-spacing:-37.662900px;}
.ws1a{word-spacing:-27.526800px;}
.ws14{word-spacing:-27.492900px;}
.wse{word-spacing:-25.458900px;}
.ws4{word-spacing:-24.441900px;}
.ws16{word-spacing:-21.954450px;}
.wsc{word-spacing:-21.390900px;}
.ws17{word-spacing:-21.357000px;}
.ws8{word-spacing:-19.356900px;}
.wsb{word-spacing:-19.323000px;}
.ws11{word-spacing:-19.213950px;}
.ws12{word-spacing:-19.183500px;}
.ws15{word-spacing:-13.732950px;}
.ws13{word-spacing:-11.187000px;}
.ws10{word-spacing:-0.094650px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:1.272600px;}
.ws18{word-spacing:737.128500px;}
.ws9{word-spacing:1140.785850px;}
.wsd{word-spacing:1176.854250px;}
._9{margin-left:-23.043150px;}
._10{margin-left:-13.557150px;}
._e{margin-left:-11.998800px;}
._15{margin-left:-10.127550px;}
._3{margin-left:-9.084600px;}
._8{margin-left:-7.570500px;}
._5{margin-left:-5.840100px;}
._6{margin-left:-4.542300px;}
._2{margin-left:-3.244500px;}
._0{margin-left:-1.622250px;}
._1{width:1.622250px;}
._4{width:3.568950px;}
._7{width:5.219400px;}
._f{width:7.608150px;}
._17{width:22.401450px;}
._11{width:28.674000px;}
._b{width:29.951100px;}
._c{width:34.314300px;}
._d{width:37.270350px;}
._a{width:40.438350px;}
._16{width:387.477600px;}
._12{width:1174.151100px;}
._14{width:1209.104100px;}
._13{width:1210.403250px;}
.fc3{color:rgb(70,120,134);}
.fc1{color:rgb(119,124,135);}
.fc4{color:rgb(242,242,242);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(20,44,77);}
.fs16{font-size:49.500000px;}
.fs7{font-size:58.650000px;}
.fs17{font-size:67.650000px;}
.fs4{font-size:72.000000px;}
.fs14{font-size:72.150000px;}
.fs12{font-size:85.500000px;}
.fsd{font-size:85.650000px;}
.fs3{font-size:94.500000px;}
.fs2{font-size:94.650000px;}
.fs6{font-size:108.150000px;}
.fs13{font-size:112.650000px;}
.fse{font-size:121.650000px;}
.fs15{font-size:121.800000px;}
.fsa{font-size:144.150000px;}
.fsb{font-size:144.300000px;}
.fsf{font-size:166.650000px;}
.fs9{font-size:166.800000px;}
.fs11{font-size:193.650000px;}
.fs5{font-size:193.800000px;}
.fs1{font-size:198.300000px;}
.fsc{font-size:216.300000px;}
.fs18{font-size:238.800000px;}
.fs8{font-size:288.450000px;}
.fs0{font-size:324.450000px;}
.fs10{font-size:360.450000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:14.400000px;}
.ye9{bottom:20.550000px;}
.y59{bottom:30.412500px;}
.ya{bottom:30.525000px;}
.ya0{bottom:37.125000px;}
.yb6{bottom:38.737500px;}
.yb4{bottom:41.625000px;}
.y92{bottom:51.750000px;}
.yaf{bottom:52.875000px;}
.y58{bottom:60.825000px;}
.y95{bottom:63.000000px;}
.y90{bottom:66.375000px;}
.ye7{bottom:66.712500px;}
.ya4{bottom:72.562500px;}
.y9d{bottom:79.875000px;}
.y100{bottom:80.062500px;}
.ye2{bottom:81.075000px;}
.y9{bottom:89.775000px;}
.yc4{bottom:91.050000px;}
.y57{bottom:91.237500px;}
.y91{bottom:91.950000px;}
.y98{bottom:92.250000px;}
.y7f{bottom:92.370000px;}
.y81{bottom:92.400000px;}
.yb3{bottom:92.475000px;}
.y88{bottom:92.550000px;}
.y9f{bottom:92.655000px;}
.y9e{bottom:94.500000px;}
.y8e{bottom:95.625000px;}
.yb2{bottom:100.125000px;}
.y16{bottom:100.950000px;}
.yd4{bottom:101.662500px;}
.yfa{bottom:103.912500px;}
.ya1{bottom:103.950000px;}
.y8f{bottom:104.325000px;}
.y97{bottom:104.775000px;}
.yb5{bottom:104.850000px;}
.y86{bottom:104.880000px;}
.y8a{bottom:104.925000px;}
.y7b{bottom:105.037500px;}
.y9c{bottom:105.045000px;}
.ye1{bottom:111.487500px;}
.ya3{bottom:115.162500px;}
.y71{bottom:115.200000px;}
.yc3{bottom:116.962500px;}
.y31{bottom:119.625000px;}
.y56{bottom:121.650000px;}
.y8{bottom:123.600000px;}
.y9b{bottom:123.750000px;}
.y47{bottom:131.737500px;}
.yd3{bottom:133.237500px;}
.y70{bottom:141.112500px;}
.ye0{bottom:141.900000px;}
.ya2{bottom:143.325000px;}
.yf9{bottom:144.487500px;}
.y55{bottom:150.930000px;}
.y30{bottom:152.325000px;}
.y5e{bottom:154.545000px;}
.yc2{bottom:160.875000px;}
.y46{bottom:162.150000px;}
.y23{bottom:163.170000px;}
.yff{bottom:163.425000px;}
.y1a{bottom:168.975000px;}
.y62{bottom:169.155000px;}
.y3e{bottom:170.655000px;}
.ydf{bottom:172.305000px;}
.ya9{bottom:172.380000px;}
.y6f{bottom:176.025000px;}
.y7a{bottom:177.150000px;}
.y9a{bottom:179.145000px;}
.yb1{bottom:180.030000px;}
.ya7{bottom:180.075000px;}
.y84{bottom:180.105000px;}
.y7{bottom:181.050000px;}
.y54{bottom:181.350000px;}
.yd2{bottom:183.900000px;}
.y5d{bottom:184.950000px;}
.yf8{bottom:186.150000px;}
.yc1{bottom:186.795000px;}
.y89{bottom:192.375000px;}
.y44{bottom:192.570000px;}
.yfe{bottom:199.470000px;}
.y42{bottom:200.445000px;}
.y82{bottom:203.625000px;}
.y34{bottom:203.850000px;}
.y61{bottom:204.075000px;}
.y87{bottom:207.000000px;}
.y99{bottom:207.300000px;}
.yb0{bottom:208.200000px;}
.ya6{bottom:208.245000px;}
.y83{bottom:208.275000px;}
.y15{bottom:211.455000px;}
.y53{bottom:211.755000px;}
.yc0{bottom:212.700000px;}
.y79{bottom:214.320000px;}
.ya8{bottom:214.875000px;}
.y5c{bottom:215.370000px;}
.yd1{bottom:215.475000px;}
.yde{bottom:215.850000px;}
.y6{bottom:215.970000px;}
.y6e{bottom:219.945000px;}
.y43{bottom:222.975000px;}
.yf7{bottom:225.600000px;}
.y41{bottom:226.350000px;}
.y3a{bottom:233.670000px;}
.yfd{bottom:235.500000px;}
.y85{bottom:236.250000px;}
.y33{bottom:236.505000px;}
.y60{bottom:237.900000px;}
.y8d{bottom:242.070000px;}
.y52{bottom:242.205000px;}
.y5b{bottom:245.775000px;}
.y6d{bottom:246.975000px;}
.yd0{bottom:247.005000px;}
.ya5{bottom:247.500000px;}
.y78{bottom:250.380000px;}
.y14{bottom:255.405000px;}
.yf6{bottom:256.020000px;}
.ybf{bottom:256.650000px;}
.y19{bottom:256.875000px;}
.y39{bottom:266.325000px;}
.y32{bottom:269.175000px;}
.y22{bottom:269.475000px;}
.y8c{bottom:271.395000px;}
.y51{bottom:272.625000px;}
.y5f{bottom:272.820000px;}
.y5a{bottom:276.195000px;}
.y5{bottom:277.695000px;}
.y6c{bottom:280.800000px;}
.yfc{bottom:281.100000px;}
.y77{bottom:286.425000px;}
.yf5{bottom:287.550000px;}
.y13{bottom:289.200000px;}
.y2c{bottom:291.120000px;}
.ycf{bottom:296.595000px;}
.yd8{bottom:298.095000px;}
.y8b{bottom:299.550000px;}
.ybe{bottom:300.600000px;}
.yae{bottom:301.650000px;}
.y45{bottom:301.770000px;}
.y40{bottom:301.995000px;}
.y50{bottom:303.045000px;}
.y96{bottom:304.875000px;}
.yf4{bottom:317.955000px;}
.y4{bottom:319.380000px;}
.y80{bottom:319.500000px;}
.y4d{bottom:320.475000px;}
.y37{bottom:321.195000px;}
.y21{bottom:321.300000px;}
.y12{bottom:321.870000px;}
.y3d{bottom:324.630000px;}
.y6b{bottom:324.705000px;}
.ybd{bottom:326.505000px;}
.yd7{bottom:328.500000px;}
.yad{bottom:329.820000px;}
.yc9{bottom:336.630000px;}
.y2b{bottom:342.945000px;}
.yce{bottom:346.125000px;}
.yf3{bottom:348.375000px;}
.ybc{bottom:352.395000px;}
.y36{bottom:353.850000px;}
.y11{bottom:355.650000px;}
.y6a{bottom:356.250000px;}
.y3c{bottom:357.300000px;}
.yac{bottom:359.100000px;}
.y4f{bottom:363.225000px;}
.y7e{bottom:363.375000px;}
.yfb{bottom:364.380000px;}
.yaa{bottom:365.850000px;}
.yd6{bottom:368.025000px;}
.y20{bottom:373.125000px;}
.y76{bottom:374.280000px;}
.ycd{bottom:377.700000px;}
.yf2{bottom:378.780000px;}
.yc8{bottom:382.845000px;}
.y35{bottom:386.520000px;}
.y69{bottom:386.700000px;}
.yab{bottom:387.255000px;}
.y10{bottom:389.445000px;}
.y3b{bottom:389.970000px;}
.y2a{bottom:394.755000px;}
.ybb{bottom:396.345000px;}
.ye6{bottom:397.530000px;}
.yf1{bottom:409.200000px;}
.ycc{bottom:410.370000px;}
.y75{bottom:411.495000px;}
.y68{bottom:417.120000px;}
.yf{bottom:418.755000px;}
.y3{bottom:421.995000px;}
.y18{bottom:423.150000px;}
.ye8{bottom:423.345000px;}
.y24{bottom:423.375000px;}
.y1f{bottom:424.950000px;}
.ye5{bottom:427.950000px;}
.yc7{bottom:430.125000px;}
.yba{bottom:440.295000px;}
.ydd{bottom:440.775000px;}
.y2f{bottom:444.945000px;}
.y67{bottom:447.525000px;}
.yee{bottom:453.450000px;}
.ye4{bottom:458.400000px;}
.ycb{bottom:459.945000px;}
.y48{bottom:463.125000px;}
.y74{bottom:463.275000px;}
.ye{bottom:463.800000px;}
.y63{bottom:471.150000px;}
.ydc{bottom:471.225000px;}
.y1e{bottom:476.775000px;}
.y2e{bottom:477.630000px;}
.y38{bottom:478.530000px;}
.yc6{bottom:478.575000px;}
.y66{bottom:479.070000px;}
.yf0{bottom:481.320000px;}
.yb9{bottom:485.325000px;}
.y72{bottom:486.120000px;}
.yed{bottom:487.575000px;}
.yd{bottom:491.970000px;}
.ye3{bottom:497.280000px;}
.y4c{bottom:497.370000px;}
.y29{bottom:498.420000px;}
.y2{bottom:508.725000px;}
.y17{bottom:509.880000px;}
.yca{bottom:511.755000px;}
.ydb{bottom:512.280000px;}
.y73{bottom:513.975000px;}
.yc5{bottom:514.620000px;}
.y93{bottom:517.500000px;}
.yb8{bottom:518.025000px;}
.y94{bottom:520.080000px;}
.yc{bottom:521.250000px;}
.y65{bottom:521.880000px;}
.yef{bottom:523.005000px;}
.y4a{bottom:530.070000px;}
.yda{bottom:544.995000px;}
.y28{bottom:550.245000px;}
.yec{bottom:558.630000px;}
.yd9{bottom:577.650000px;}
.y1d{bottom:580.425000px;}
.y49{bottom:582.225000px;}
.yd5{bottom:583.470000px;}
.yb{bottom:584.550000px;}
.y2d{bottom:585.075000px;}
.yea{bottom:587.475000px;}
.y64{bottom:590.475000px;}
.y7d{bottom:590.850000px;}
.y1{bottom:596.625000px;}
.yb7{bottom:597.420000px;}
.y4e{bottom:597.675000px;}
.y3f{bottom:598.320000px;}
.y27{bottom:602.070000px;}
.yeb{bottom:604.800000px;}
.y1c{bottom:632.250000px;}
.y7c{bottom:646.050000px;}
.y26{bottom:653.880000px;}
.y1b{bottom:684.075000px;}
.y25{bottom:705.720000px;}
.h24{height:49.234131px;}
.h2b{height:56.584131px;}
.h8{height:58.334985px;}
.h29{height:58.632202px;}
.h5{height:62.402344px;}
.h18{height:62.532349px;}
.h1c{height:79.999585px;}
.h22{height:81.903076px;}
.h1d{height:82.033081px;}
.h15{height:85.040771px;}
.h10{height:85.189966px;}
.h20{height:93.733521px;}
.h4{height:93.992432px;}
.h3{height:94.141626px;}
.h7{height:107.569116px;}
.hf{height:110.737573px;}
.h17{height:112.044946px;}
.h19{height:120.996606px;}
.h1a{height:121.145801px;}
.h11{height:124.560571px;}
.hb{height:143.375757px;}
.hd{height:147.598901px;}
.hc{height:147.752490px;}
.h12{height:165.754907px;}
.h2c{height:170.637231px;}
.ha{height:170.790820px;}
.h14{height:192.609888px;}
.h27{height:195.750000px;}
.h2{height:197.234912px;}
.h6{height:198.436816px;}
.h1b{height:202.500000px;}
.he{height:215.138232px;}
.h16{height:221.475146px;}
.h23{height:227.250000px;}
.h1f{height:228.375000px;}
.h2d{height:244.513477px;}
.h9{height:286.900708px;}
.h1{height:322.707349px;}
.h26{height:339.750000px;}
.h28{height:342.000000px;}
.h13{height:358.513989px;}
.h25{height:403.875000px;}
.h1e{height:405.000000px;}
.h21{height:582.750000px;}
.h2a{height:756.000000px;}
.h0{height:810.000000px;}
.w4{width:39.375000px;}
.w7{width:45.000000px;}
.w5{width:58.500000px;}
.w8{width:82.125000px;}
.w2{width:96.750000px;}
.w9{width:124.875000px;}
.w3{width:154.125000px;}
.w6{width:185.625000px;}
.wa{width:205.875000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3d{left:11.775000px;}
.x55{left:41.212479px;}
.x1e{left:43.912479px;}
.x52{left:46.162479px;}
.x1{left:54.712479px;}
.x56{left:56.962479px;}
.xf{left:58.612479px;}
.x3c{left:68.212479px;}
.x4b{left:69.862479px;}
.x3f{left:75.862479px;}
.xa{left:77.737479px;}
.xe{left:81.374979px;}
.x9{left:84.599979px;}
.x3{left:88.499979px;}
.xd{left:90.262479px;}
.x4c{left:91.462479px;}
.x30{left:93.937479px;}
.x1f{left:95.587479px;}
.x17{left:98.549979px;}
.xb{left:102.337479px;}
.x16{left:105.374979px;}
.x4{left:108.749979px;}
.x12{left:118.162479px;}
.x49{left:122.475000px;}
.x39{left:135.787479px;}
.x57{left:149.287479px;}
.x7{left:162.524979px;}
.x19{left:164.474979px;}
.x15{left:170.954979px;}
.x3a{left:176.324979px;}
.x58{left:210.074979px;}
.x3e{left:214.875000px;}
.xc{left:215.894979px;}
.x2b{left:246.374979px;}
.x23{left:256.694979px;}
.x22{left:258.374979px;}
.x53{left:284.519979px;}
.x14{left:302.969979px;}
.x2a{left:330.299979px;}
.x4f{left:354.449979px;}
.x50{left:355.454979px;}
.x10{left:363.119979px;}
.x18{left:377.024979px;}
.x21{left:380.999979px;}
.x2f{left:387.524979px;}
.x1c{left:388.844979px;}
.x32{left:402.194979px;}
.x31{left:429.224979px;}
.x42{left:430.875000px;}
.x3b{left:472.754979px;}
.x11{left:485.849979px;}
.x44{left:488.250000px;}
.x13{left:500.444979px;}
.x43{left:532.125000px;}
.x4d{left:554.324979px;}
.x4a{left:556.124979px;}
.x1a{left:559.649979px;}
.x6{left:574.004979px;}
.x8{left:575.729979px;}
.x1b{left:585.569979px;}
.x1d{left:605.969979px;}
.x2{left:609.029979px;}
.x24{left:626.699979px;}
.x25{left:673.244979px;}
.x5{left:699.974979px;}
.x34{left:756.944979px;}
.x47{left:777.375000px;}
.x33{left:781.154979px;}
.x48{left:789.074979px;}
.x35{left:790.724979px;}
.x20{left:795.329979px;}
.x2d{left:810.074979px;}
.x5c{left:828.374979px;}
.x2c{left:836.819979px;}
.x45{left:901.125000px;}
.x27{left:935.099979px;}
.x28{left:955.049979px;}
.x46{left:982.125000px;}
.x4e{left:992.894979px;}
.x54{left:1009.769979px;}
.x26{left:1015.049979px;}
.x29{left:1024.574979px;}
.x59{left:1103.474979px;}
.x37{left:1111.694979px;}
.x51{left:1119.629979px;}
.x5a{left:1135.274979px;}
.x38{left:1145.444979px;}
.x5b{left:1174.154979px;}
.x41{left:1183.874979px;}
.x36{left:1187.654979px;}
.x2e{left:1189.724979px;}
.x40{left:1376.654979px;}
@media print{
.v1{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:6.533333pt;}
.lsf{letter-spacing:-0.736000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.031733pt;}
.ls5{letter-spacing:0.125600pt;}
.ls3{letter-spacing:0.212800pt;}
.ls6{letter-spacing:0.864000pt;}
.ls10{letter-spacing:2.053333pt;}
.ls11{letter-spacing:38.266933pt;}
.ls12{letter-spacing:38.328000pt;}
.ls15{letter-spacing:57.626933pt;}
.ls1{letter-spacing:76.104267pt;}
.ls9{letter-spacing:81.573600pt;}
.ls2{letter-spacing:81.600267pt;}
.ls14{letter-spacing:81.661333pt;}
.ls7{letter-spacing:85.130933pt;}
.ls8{letter-spacing:85.192000pt;}
.lse{letter-spacing:94.547200pt;}
.lsd{letter-spacing:94.608267pt;}
.lsa{letter-spacing:98.272267pt;}
.ls13{letter-spacing:100.104267pt;}
.lsb{letter-spacing:105.600267pt;}
.lsc{letter-spacing:105.661333pt;}
.ws7{word-spacing:-128.133333pt;}
.ws5{word-spacing:-101.420533pt;}
.ws0{word-spacing:-65.178400pt;}
.wsa{word-spacing:-43.452267pt;}
.ws1{word-spacing:-39.836267pt;}
.ws3{word-spacing:-38.932267pt;}
.wsf{word-spacing:-33.508267pt;}
.ws19{word-spacing:-33.478133pt;}
.ws1a{word-spacing:-24.468267pt;}
.ws14{word-spacing:-24.438133pt;}
.wse{word-spacing:-22.630133pt;}
.ws4{word-spacing:-21.726133pt;}
.ws16{word-spacing:-19.515067pt;}
.wsc{word-spacing:-19.014133pt;}
.ws17{word-spacing:-18.984000pt;}
.ws8{word-spacing:-17.206133pt;}
.wsb{word-spacing:-17.176000pt;}
.ws11{word-spacing:-17.079067pt;}
.ws12{word-spacing:-17.052000pt;}
.ws15{word-spacing:-12.207067pt;}
.ws13{word-spacing:-9.944000pt;}
.ws10{word-spacing:-0.084133pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:1.131200pt;}
.ws18{word-spacing:655.225333pt;}
.ws9{word-spacing:1014.031867pt;}
.wsd{word-spacing:1046.092667pt;}
._9{margin-left:-20.482800pt;}
._10{margin-left:-12.050800pt;}
._e{margin-left:-10.665600pt;}
._15{margin-left:-9.002267pt;}
._3{margin-left:-8.075200pt;}
._8{margin-left:-6.729333pt;}
._5{margin-left:-5.191200pt;}
._6{margin-left:-4.037600pt;}
._2{margin-left:-2.884000pt;}
._0{margin-left:-1.442000pt;}
._1{width:1.442000pt;}
._4{width:3.172400pt;}
._7{width:4.639467pt;}
._f{width:6.762800pt;}
._17{width:19.912400pt;}
._11{width:25.488000pt;}
._b{width:26.623200pt;}
._c{width:30.501600pt;}
._d{width:33.129200pt;}
._a{width:35.945200pt;}
._16{width:344.424533pt;}
._12{width:1043.689867pt;}
._14{width:1074.759200pt;}
._13{width:1075.914000pt;}
.fs16{font-size:44.000000pt;}
.fs7{font-size:52.133333pt;}
.fs17{font-size:60.133333pt;}
.fs4{font-size:64.000000pt;}
.fs14{font-size:64.133333pt;}
.fs12{font-size:76.000000pt;}
.fsd{font-size:76.133333pt;}
.fs3{font-size:84.000000pt;}
.fs2{font-size:84.133333pt;}
.fs6{font-size:96.133333pt;}
.fs13{font-size:100.133333pt;}
.fse{font-size:108.133333pt;}
.fs15{font-size:108.266667pt;}
.fsa{font-size:128.133333pt;}
.fsb{font-size:128.266667pt;}
.fsf{font-size:148.133333pt;}
.fs9{font-size:148.266667pt;}
.fs11{font-size:172.133333pt;}
.fs5{font-size:172.266667pt;}
.fs1{font-size:176.266667pt;}
.fsc{font-size:192.266667pt;}
.fs18{font-size:212.266667pt;}
.fs8{font-size:256.400000pt;}
.fs0{font-size:288.400000pt;}
.fs10{font-size:320.400000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:12.800000pt;}
.ye9{bottom:18.266667pt;}
.y59{bottom:27.033333pt;}
.ya{bottom:27.133333pt;}
.ya0{bottom:33.000000pt;}
.yb6{bottom:34.433333pt;}
.yb4{bottom:37.000000pt;}
.y92{bottom:46.000000pt;}
.yaf{bottom:47.000000pt;}
.y58{bottom:54.066667pt;}
.y95{bottom:56.000000pt;}
.y90{bottom:59.000000pt;}
.ye7{bottom:59.300000pt;}
.ya4{bottom:64.500000pt;}
.y9d{bottom:71.000000pt;}
.y100{bottom:71.166667pt;}
.ye2{bottom:72.066667pt;}
.y9{bottom:79.800000pt;}
.yc4{bottom:80.933333pt;}
.y57{bottom:81.100000pt;}
.y91{bottom:81.733333pt;}
.y98{bottom:82.000000pt;}
.y7f{bottom:82.106667pt;}
.y81{bottom:82.133333pt;}
.yb3{bottom:82.200000pt;}
.y88{bottom:82.266667pt;}
.y9f{bottom:82.360000pt;}
.y9e{bottom:84.000000pt;}
.y8e{bottom:85.000000pt;}
.yb2{bottom:89.000000pt;}
.y16{bottom:89.733333pt;}
.yd4{bottom:90.366667pt;}
.yfa{bottom:92.366667pt;}
.ya1{bottom:92.400000pt;}
.y8f{bottom:92.733333pt;}
.y97{bottom:93.133333pt;}
.yb5{bottom:93.200000pt;}
.y86{bottom:93.226667pt;}
.y8a{bottom:93.266667pt;}
.y7b{bottom:93.366667pt;}
.y9c{bottom:93.373333pt;}
.ye1{bottom:99.100000pt;}
.ya3{bottom:102.366667pt;}
.y71{bottom:102.400000pt;}
.yc3{bottom:103.966667pt;}
.y31{bottom:106.333333pt;}
.y56{bottom:108.133333pt;}
.y8{bottom:109.866667pt;}
.y9b{bottom:110.000000pt;}
.y47{bottom:117.100000pt;}
.yd3{bottom:118.433333pt;}
.y70{bottom:125.433333pt;}
.ye0{bottom:126.133333pt;}
.ya2{bottom:127.400000pt;}
.yf9{bottom:128.433333pt;}
.y55{bottom:134.160000pt;}
.y30{bottom:135.400000pt;}
.y5e{bottom:137.373333pt;}
.yc2{bottom:143.000000pt;}
.y46{bottom:144.133333pt;}
.y23{bottom:145.040000pt;}
.yff{bottom:145.266667pt;}
.y1a{bottom:150.200000pt;}
.y62{bottom:150.360000pt;}
.y3e{bottom:151.693333pt;}
.ydf{bottom:153.160000pt;}
.ya9{bottom:153.226667pt;}
.y6f{bottom:156.466667pt;}
.y7a{bottom:157.466667pt;}
.y9a{bottom:159.240000pt;}
.yb1{bottom:160.026667pt;}
.ya7{bottom:160.066667pt;}
.y84{bottom:160.093333pt;}
.y7{bottom:160.933333pt;}
.y54{bottom:161.200000pt;}
.yd2{bottom:163.466667pt;}
.y5d{bottom:164.400000pt;}
.yf8{bottom:165.466667pt;}
.yc1{bottom:166.040000pt;}
.y89{bottom:171.000000pt;}
.y44{bottom:171.173333pt;}
.yfe{bottom:177.306667pt;}
.y42{bottom:178.173333pt;}
.y82{bottom:181.000000pt;}
.y34{bottom:181.200000pt;}
.y61{bottom:181.400000pt;}
.y87{bottom:184.000000pt;}
.y99{bottom:184.266667pt;}
.yb0{bottom:185.066667pt;}
.ya6{bottom:185.106667pt;}
.y83{bottom:185.133333pt;}
.y15{bottom:187.960000pt;}
.y53{bottom:188.226667pt;}
.yc0{bottom:189.066667pt;}
.y79{bottom:190.506667pt;}
.ya8{bottom:191.000000pt;}
.y5c{bottom:191.440000pt;}
.yd1{bottom:191.533333pt;}
.yde{bottom:191.866667pt;}
.y6{bottom:191.973333pt;}
.y6e{bottom:195.506667pt;}
.y43{bottom:198.200000pt;}
.yf7{bottom:200.533333pt;}
.y41{bottom:201.200000pt;}
.y3a{bottom:207.706667pt;}
.yfd{bottom:209.333333pt;}
.y85{bottom:210.000000pt;}
.y33{bottom:210.226667pt;}
.y60{bottom:211.466667pt;}
.y8d{bottom:215.173333pt;}
.y52{bottom:215.293333pt;}
.y5b{bottom:218.466667pt;}
.y6d{bottom:219.533333pt;}
.yd0{bottom:219.560000pt;}
.ya5{bottom:220.000000pt;}
.y78{bottom:222.560000pt;}
.y14{bottom:227.026667pt;}
.yf6{bottom:227.573333pt;}
.ybf{bottom:228.133333pt;}
.y19{bottom:228.333333pt;}
.y39{bottom:236.733333pt;}
.y32{bottom:239.266667pt;}
.y22{bottom:239.533333pt;}
.y8c{bottom:241.240000pt;}
.y51{bottom:242.333333pt;}
.y5f{bottom:242.506667pt;}
.y5a{bottom:245.506667pt;}
.y5{bottom:246.840000pt;}
.y6c{bottom:249.600000pt;}
.yfc{bottom:249.866667pt;}
.y77{bottom:254.600000pt;}
.yf5{bottom:255.600000pt;}
.y13{bottom:257.066667pt;}
.y2c{bottom:258.773333pt;}
.ycf{bottom:263.640000pt;}
.yd8{bottom:264.973333pt;}
.y8b{bottom:266.266667pt;}
.ybe{bottom:267.200000pt;}
.yae{bottom:268.133333pt;}
.y45{bottom:268.240000pt;}
.y40{bottom:268.440000pt;}
.y50{bottom:269.373333pt;}
.y96{bottom:271.000000pt;}
.yf4{bottom:282.626667pt;}
.y4{bottom:283.893333pt;}
.y80{bottom:284.000000pt;}
.y4d{bottom:284.866667pt;}
.y37{bottom:285.506667pt;}
.y21{bottom:285.600000pt;}
.y12{bottom:286.106667pt;}
.y3d{bottom:288.560000pt;}
.y6b{bottom:288.626667pt;}
.ybd{bottom:290.226667pt;}
.yd7{bottom:292.000000pt;}
.yad{bottom:293.173333pt;}
.yc9{bottom:299.226667pt;}
.y2b{bottom:304.840000pt;}
.yce{bottom:307.666667pt;}
.yf3{bottom:309.666667pt;}
.ybc{bottom:313.240000pt;}
.y36{bottom:314.533333pt;}
.y11{bottom:316.133333pt;}
.y6a{bottom:316.666667pt;}
.y3c{bottom:317.600000pt;}
.yac{bottom:319.200000pt;}
.y4f{bottom:322.866667pt;}
.y7e{bottom:323.000000pt;}
.yfb{bottom:323.893333pt;}
.yaa{bottom:325.200000pt;}
.yd6{bottom:327.133333pt;}
.y20{bottom:331.666667pt;}
.y76{bottom:332.693333pt;}
.ycd{bottom:335.733333pt;}
.yf2{bottom:336.693333pt;}
.yc8{bottom:340.306667pt;}
.y35{bottom:343.573333pt;}
.y69{bottom:343.733333pt;}
.yab{bottom:344.226667pt;}
.y10{bottom:346.173333pt;}
.y3b{bottom:346.640000pt;}
.y2a{bottom:350.893333pt;}
.ybb{bottom:352.306667pt;}
.ye6{bottom:353.360000pt;}
.yf1{bottom:363.733333pt;}
.ycc{bottom:364.773333pt;}
.y75{bottom:365.773333pt;}
.y68{bottom:370.773333pt;}
.yf{bottom:372.226667pt;}
.y3{bottom:375.106667pt;}
.y18{bottom:376.133333pt;}
.ye8{bottom:376.306667pt;}
.y24{bottom:376.333333pt;}
.y1f{bottom:377.733333pt;}
.ye5{bottom:380.400000pt;}
.yc7{bottom:382.333333pt;}
.yba{bottom:391.373333pt;}
.ydd{bottom:391.800000pt;}
.y2f{bottom:395.506667pt;}
.y67{bottom:397.800000pt;}
.yee{bottom:403.066667pt;}
.ye4{bottom:407.466667pt;}
.ycb{bottom:408.840000pt;}
.y48{bottom:411.666667pt;}
.y74{bottom:411.800000pt;}
.ye{bottom:412.266667pt;}
.y63{bottom:418.800000pt;}
.ydc{bottom:418.866667pt;}
.y1e{bottom:423.800000pt;}
.y2e{bottom:424.560000pt;}
.y38{bottom:425.360000pt;}
.yc6{bottom:425.400000pt;}
.y66{bottom:425.840000pt;}
.yf0{bottom:427.840000pt;}
.yb9{bottom:431.400000pt;}
.y72{bottom:432.106667pt;}
.yed{bottom:433.400000pt;}
.yd{bottom:437.306667pt;}
.ye3{bottom:442.026667pt;}
.y4c{bottom:442.106667pt;}
.y29{bottom:443.040000pt;}
.y2{bottom:452.200000pt;}
.y17{bottom:453.226667pt;}
.yca{bottom:454.893333pt;}
.ydb{bottom:455.360000pt;}
.y73{bottom:456.866667pt;}
.yc5{bottom:457.440000pt;}
.y93{bottom:460.000000pt;}
.yb8{bottom:460.466667pt;}
.y94{bottom:462.293333pt;}
.yc{bottom:463.333333pt;}
.y65{bottom:463.893333pt;}
.yef{bottom:464.893333pt;}
.y4a{bottom:471.173333pt;}
.yda{bottom:484.440000pt;}
.y28{bottom:489.106667pt;}
.yec{bottom:496.560000pt;}
.yd9{bottom:513.466667pt;}
.y1d{bottom:515.933333pt;}
.y49{bottom:517.533333pt;}
.yd5{bottom:518.640000pt;}
.yb{bottom:519.600000pt;}
.y2d{bottom:520.066667pt;}
.yea{bottom:522.200000pt;}
.y64{bottom:524.866667pt;}
.y7d{bottom:525.200000pt;}
.y1{bottom:530.333333pt;}
.yb7{bottom:531.040000pt;}
.y4e{bottom:531.266667pt;}
.y3f{bottom:531.840000pt;}
.y27{bottom:535.173333pt;}
.yeb{bottom:537.600000pt;}
.y1c{bottom:562.000000pt;}
.y7c{bottom:574.266667pt;}
.y26{bottom:581.226667pt;}
.y1b{bottom:608.066667pt;}
.y25{bottom:627.306667pt;}
.h24{height:43.763672pt;}
.h2b{height:50.297005pt;}
.h8{height:51.853320pt;}
.h29{height:52.117513pt;}
.h5{height:55.468750pt;}
.h18{height:55.584310pt;}
.h1c{height:71.110742pt;}
.h22{height:72.802734pt;}
.h1d{height:72.918294pt;}
.h15{height:75.591797pt;}
.h10{height:75.724414pt;}
.h20{height:83.318685pt;}
.h4{height:83.548828pt;}
.h3{height:83.681445pt;}
.h7{height:95.616992pt;}
.hf{height:98.433398pt;}
.h17{height:99.595508pt;}
.h19{height:107.552539pt;}
.h1a{height:107.685156pt;}
.h11{height:110.720508pt;}
.hb{height:127.445117pt;}
.hd{height:131.199023pt;}
.hc{height:131.335547pt;}
.h12{height:147.337695pt;}
.h2c{height:151.677539pt;}
.ha{height:151.814063pt;}
.h14{height:171.208789pt;}
.h27{height:174.000000pt;}
.h2{height:175.319922pt;}
.h6{height:176.388281pt;}
.h1b{height:180.000000pt;}
.he{height:191.233984pt;}
.h16{height:196.866797pt;}
.h23{height:202.000000pt;}
.h1f{height:203.000000pt;}
.h2d{height:217.345312pt;}
.h9{height:255.022852pt;}
.h1{height:286.850977pt;}
.h26{height:302.000000pt;}
.h28{height:304.000000pt;}
.h13{height:318.679102pt;}
.h25{height:359.000000pt;}
.h1e{height:360.000000pt;}
.h21{height:518.000000pt;}
.h2a{height:672.000000pt;}
.h0{height:720.000000pt;}
.w4{width:35.000000pt;}
.w7{width:40.000000pt;}
.w5{width:52.000000pt;}
.w8{width:73.000000pt;}
.w2{width:86.000000pt;}
.w9{width:111.000000pt;}
.w3{width:137.000000pt;}
.w6{width:165.000000pt;}
.wa{width:183.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:10.466667pt;}
.x55{left:36.633314pt;}
.x1e{left:39.033314pt;}
.x52{left:41.033314pt;}
.x1{left:48.633314pt;}
.x56{left:50.633314pt;}
.xf{left:52.099981pt;}
.x3c{left:60.633314pt;}
.x4b{left:62.099981pt;}
.x3f{left:67.433314pt;}
.xa{left:69.099981pt;}
.xe{left:72.333314pt;}
.x9{left:75.199981pt;}
.x3{left:78.666648pt;}
.xd{left:80.233314pt;}
.x4c{left:81.299981pt;}
.x30{left:83.499981pt;}
.x1f{left:84.966648pt;}
.x17{left:87.599981pt;}
.xb{left:90.966648pt;}
.x16{left:93.666648pt;}
.x4{left:96.666648pt;}
.x12{left:105.033314pt;}
.x49{left:108.866667pt;}
.x39{left:120.699981pt;}
.x57{left:132.699981pt;}
.x7{left:144.466648pt;}
.x19{left:146.199981pt;}
.x15{left:151.959981pt;}
.x3a{left:156.733314pt;}
.x58{left:186.733314pt;}
.x3e{left:191.000000pt;}
.xc{left:191.906648pt;}
.x2b{left:218.999981pt;}
.x23{left:228.173314pt;}
.x22{left:229.666648pt;}
.x53{left:252.906648pt;}
.x14{left:269.306648pt;}
.x2a{left:293.599981pt;}
.x4f{left:315.066648pt;}
.x50{left:315.959981pt;}
.x10{left:322.773314pt;}
.x18{left:335.133314pt;}
.x21{left:338.666648pt;}
.x2f{left:344.466648pt;}
.x1c{left:345.639981pt;}
.x32{left:357.506648pt;}
.x31{left:381.533314pt;}
.x42{left:383.000000pt;}
.x3b{left:420.226648pt;}
.x11{left:431.866648pt;}
.x44{left:434.000000pt;}
.x13{left:444.839981pt;}
.x43{left:473.000000pt;}
.x4d{left:492.733314pt;}
.x4a{left:494.333314pt;}
.x1a{left:497.466648pt;}
.x6{left:510.226648pt;}
.x8{left:511.759981pt;}
.x1b{left:520.506648pt;}
.x1d{left:538.639981pt;}
.x2{left:541.359981pt;}
.x24{left:557.066648pt;}
.x25{left:598.439981pt;}
.x5{left:622.199981pt;}
.x34{left:672.839981pt;}
.x47{left:691.000000pt;}
.x33{left:694.359981pt;}
.x48{left:701.399981pt;}
.x35{left:702.866648pt;}
.x20{left:706.959981pt;}
.x2d{left:720.066648pt;}
.x5c{left:736.333314pt;}
.x2c{left:743.839981pt;}
.x45{left:801.000000pt;}
.x27{left:831.199981pt;}
.x28{left:848.933314pt;}
.x46{left:873.000000pt;}
.x4e{left:882.573314pt;}
.x54{left:897.573314pt;}
.x26{left:902.266648pt;}
.x29{left:910.733314pt;}
.x59{left:980.866648pt;}
.x37{left:988.173314pt;}
.x51{left:995.226648pt;}
.x5a{left:1009.133314pt;}
.x38{left:1018.173314pt;}
.x5b{left:1043.693314pt;}
.x41{left:1052.333314pt;}
.x36{left:1055.693314pt;}
.x2e{left:1057.533314pt;}
.x40{left:1223.693314pt;}
}




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