
    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_ef2a197fbb0e9ec82fd45229.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909180;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_c20479a8430ab840ea20583f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_17e66db317083e61c8157f46.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_14a6f1608d0658c87b7fbd5f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2bea4336bc477c18912ac337.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bd5755586460b54e1837b81c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2de572c41114d3bd01961400.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_1bdd0bde25278d58959fb913.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')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;}
.m4{transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220930,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223958,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372550,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,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);}
.v0{vertical-align:0.000000px;}
.ls27{letter-spacing:-1.428000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls28{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.597600px;}
.ls1f{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.270600px;}
.ls20{letter-spacing:-0.262200px;}
.ls5{letter-spacing:-0.240000px;}
.ls23{letter-spacing:-0.151800px;}
.ls26{letter-spacing:-0.148800px;}
.ls24{letter-spacing:-0.109800px;}
.lsb{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.094800px;}
.ls1b{letter-spacing:-0.046800px;}
.ls2{letter-spacing:-0.036000px;}
.ls9{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.012960px;}
.ls1c{letter-spacing:0.038880px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.209400px;}
.ls6{letter-spacing:0.328200px;}
.ls3{letter-spacing:0.357000px;}
.ls14{letter-spacing:0.364800px;}
.ls8{letter-spacing:0.366000px;}
.ls19{letter-spacing:0.708000px;}
.ls10{letter-spacing:1.440000px;}
.ls15{letter-spacing:2.465280px;}
.ls13{letter-spacing:5.904000px;}
.ls16{letter-spacing:6.065280px;}
.lse{letter-spacing:8.460000px;}
.ls12{letter-spacing:10.224000px;}
.ls11{letter-spacing:10.944000px;}
.ls17{letter-spacing:13.492800px;}
.lsa{letter-spacing:14.220000px;}
.lsc{letter-spacing:14.940000px;}
.lsd{letter-spacing:15.660000px;}
.lsf{letter-spacing:19.260000px;}
.ls25{letter-spacing:19.980000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.280000px;}
.ws10{word-spacing:-16.992000px;}
.ws14{word-spacing:-16.297800px;}
.ws13{word-spacing:-16.254600px;}
.wsa{word-spacing:-13.513200px;}
.ws12{word-spacing:-13.512000px;}
.ws9{word-spacing:-13.504200px;}
.ws0{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.356600px;}
.wsc{word-spacing:-13.353600px;}
.wse{word-spacing:-13.186080px;}
.ws16{word-spacing:-13.160160px;}
.ws8{word-spacing:-13.147200px;}
.wsd{word-spacing:-13.100400px;}
.wsb{word-spacing:-13.040400px;}
.ws17{word-spacing:-12.998400px;}
.ws1{word-spacing:-12.060000px;}
.ws18{word-spacing:-11.719200px;}
.ws2{word-spacing:-10.612800px;}
.ws6{word-spacing:-10.342200px;}
.ws7{word-spacing:-9.092400px;}
.ws4{word-spacing:-7.920000px;}
.ws3{word-spacing:-7.884000px;}
.ws5{word-spacing:0.000000px;}
._24{margin-left:-11.201280px;}
._15{margin-left:-3.100080px;}
._2{margin-left:-1.278000px;}
._1{width:1.128000px;}
._a{width:2.291040px;}
._d{width:4.110720px;}
._16{width:5.592720px;}
._7{width:6.812640px;}
._e{width:7.888320px;}
._6{width:9.322560px;}
._12{width:10.465440px;}
._9{width:11.832480px;}
._8{width:14.245200px;}
._14{width:16.202400px;}
._10{width:17.270640px;}
._11{width:18.286560px;}
._13{width:19.840320px;}
._1a{width:21.490080px;}
._21{width:22.620240px;}
._b{width:24.083280px;}
._c{width:25.173840px;}
._1e{width:26.707680px;}
._1c{width:27.826560px;}
._1f{width:29.033520px;}
._1d{width:30.035520px;}
._19{width:31.082640px;}
._f{width:36.334080px;}
._23{width:38.106480px;}
._1b{width:39.570960px;}
._20{width:42.074640px;}
._17{width:46.898280px;}
._22{width:56.107440px;}
._0{width:75.000000px;}
._3{width:181.620000px;}
._4{width:194.469840px;}
._5{width:202.852800px;}
._18{width:1056.007200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs8{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y54{bottom:18.000000px;}
.y53{bottom:38.700000px;}
.y8{bottom:56.520000px;}
.y52{bottom:57.420000px;}
.y51{bottom:68.040000px;}
.y7{bottom:70.596000px;}
.y50{bottom:78.480000px;}
.y6{bottom:84.636000px;}
.y4f{bottom:89.100000px;}
.y4e{bottom:106.740000px;}
.yc3{bottom:119.376000px;}
.y40{bottom:120.096000px;}
.y91{bottom:120.636000px;}
.yf6{bottom:125.496000px;}
.yc2{bottom:137.016000px;}
.y3f{bottom:137.736000px;}
.y90{bottom:138.276000px;}
.yf5{bottom:142.956000px;}
.yc1{bottom:154.650000px;}
.y3e{bottom:155.190000px;}
.y8f{bottom:155.730000px;}
.y4d{bottom:159.660000px;}
.yf4{bottom:160.590000px;}
.yc0{bottom:172.110000px;}
.y3d{bottom:172.830000px;}
.y8e{bottom:173.370000px;}
.y4c{bottom:173.700000px;}
.yf3{bottom:178.230000px;}
.y4b{bottom:187.740000px;}
.ybf{bottom:189.750000px;}
.y3c{bottom:190.470000px;}
.y8d{bottom:191.010000px;}
.yf2{bottom:195.690000px;}
.y4a{bottom:201.780000px;}
.ybe{bottom:207.390000px;}
.y3b{bottom:207.930000px;}
.y8c{bottom:208.470000px;}
.yf1{bottom:213.330000px;}
.y49{bottom:215.820000px;}
.ybd{bottom:225.030000px;}
.y3a{bottom:225.930000px;}
.y8b{bottom:226.110000px;}
.y48{bottom:230.085000px;}
.yf0{bottom:230.970000px;}
.ybc{bottom:242.490000px;}
.y8a{bottom:243.750000px;}
.y47{bottom:244.125000px;}
.y39{bottom:245.010000px;}
.yef{bottom:248.610000px;}
.y46{bottom:258.165000px;}
.ybb{bottom:260.130000px;}
.y89{bottom:261.210000px;}
.y38{bottom:262.470000px;}
.yee{bottom:266.070000px;}
.y45{bottom:272.205000px;}
.yba{bottom:277.770000px;}
.y88{bottom:278.850000px;}
.y37{bottom:280.110000px;}
.yed{bottom:283.710000px;}
.y44{bottom:286.245000px;}
.yb9{bottom:295.230000px;}
.y87{bottom:296.490000px;}
.y36{bottom:297.750000px;}
.y43{bottom:300.285000px;}
.yec{bottom:301.350000px;}
.yb8{bottom:312.870000px;}
.y86{bottom:314.130000px;}
.y42{bottom:314.685000px;}
.y35{bottom:315.210000px;}
.yeb{bottom:318.810000px;}
.yb7{bottom:330.510000px;}
.y85{bottom:331.590000px;}
.y34{bottom:332.850000px;}
.yea{bottom:336.495000px;}
.yb6{bottom:348.015000px;}
.y84{bottom:349.275000px;}
.y33{bottom:350.535000px;}
.ye9{bottom:354.135000px;}
.yb5{bottom:365.655000px;}
.y83{bottom:366.915000px;}
.y32{bottom:368.175000px;}
.ye8{bottom:371.595000px;}
.yb4{bottom:383.295000px;}
.y82{bottom:384.375000px;}
.y31{bottom:385.635000px;}
.ye7{bottom:389.235000px;}
.yb3{bottom:400.755000px;}
.y81{bottom:402.015000px;}
.y30{bottom:403.275000px;}
.ye6{bottom:406.875000px;}
.yb2{bottom:418.395000px;}
.y80{bottom:419.655000px;}
.y2f{bottom:420.915000px;}
.ye5{bottom:427.035000px;}
.yb1{bottom:436.035000px;}
.y7f{bottom:437.115000px;}
.y2e{bottom:438.375000px;}
.ye4{bottom:444.495000px;}
.yb0{bottom:453.675000px;}
.y7e{bottom:454.755000px;}
.y2d{bottom:456.015000px;}
.ye3{bottom:464.655000px;}
.yaf{bottom:471.135000px;}
.y7d{bottom:472.395000px;}
.y2c{bottom:473.655000px;}
.ye2{bottom:482.295000px;}
.yae{bottom:488.775000px;}
.y7c{bottom:490.035000px;}
.y2b{bottom:491.115000px;}
.ye1{bottom:502.455000px;}
.yad{bottom:506.415000px;}
.y7b{bottom:507.495000px;}
.y2a{bottom:508.755000px;}
.ye0{bottom:520.095000px;}
.yac{bottom:523.695000px;}
.y7a{bottom:525.135000px;}
.y29{bottom:526.395000px;}
.ydf{bottom:537.555000px;}
.yab{bottom:542.595000px;}
.y79{bottom:542.775000px;}
.y28{bottom:543.855000px;}
.yde{bottom:555.195000px;}
.yaa{bottom:560.055000px;}
.y78{bottom:560.235000px;}
.y27{bottom:563.655000px;}
.ydd{bottom:572.835000px;}
.y77{bottom:577.875000px;}
.ya9{bottom:578.775000px;}
.y26{bottom:581.295000px;}
.ydc{bottom:590.295000px;}
.y76{bottom:595.515000px;}
.ya8{bottom:597.675000px;}
.y25{bottom:598.935000px;}
.ydb{bottom:607.965000px;}
.y75{bottom:613.005000px;}
.ya7{bottom:615.345000px;}
.y24{bottom:616.605000px;}
.yda{bottom:625.605000px;}
.y74{bottom:630.645000px;}
.ya6{bottom:632.985000px;}
.y23{bottom:634.065000px;}
.yd9{bottom:643.065000px;}
.y73{bottom:648.285000px;}
.ya5{bottom:650.445000px;}
.y22{bottom:651.705000px;}
.y41{bottom:652.965000px;}
.yd8{bottom:660.705000px;}
.y72{bottom:665.745000px;}
.y21{bottom:669.345000px;}
.ya4{bottom:670.605000px;}
.yd7{bottom:678.345000px;}
.y71{bottom:683.385000px;}
.y20{bottom:686.985000px;}
.ya3{bottom:688.245000px;}
.yd6{bottom:695.985000px;}
.y70{bottom:701.025000px;}
.y1f{bottom:704.445000px;}
.ya2{bottom:705.885000px;}
.yd5{bottom:713.445000px;}
.y6f{bottom:718.665000px;}
.y1e{bottom:722.085000px;}
.ya1{bottom:723.345000px;}
.yd4{bottom:731.085000px;}
.y6e{bottom:736.125000px;}
.y1d{bottom:739.725000px;}
.ya0{bottom:740.985000px;}
.yd3{bottom:748.725000px;}
.y6d{bottom:753.765000px;}
.y1c{bottom:757.185000px;}
.y9f{bottom:761.145000px;}
.yd2{bottom:766.185000px;}
.y6c{bottom:771.405000px;}
.y1b{bottom:774.825000px;}
.y9e{bottom:778.785000px;}
.yd1{bottom:783.825000px;}
.y6b{bottom:788.865000px;}
.y1a{bottom:792.465000px;}
.y9d{bottom:796.245000px;}
.yd0{bottom:801.465000px;}
.y6a{bottom:806.505000px;}
.y19{bottom:809.925000px;}
.y9c{bottom:816.405000px;}
.ycf{bottom:818.925000px;}
.y69{bottom:824.145000px;}
.y18{bottom:827.565000px;}
.y9b{bottom:834.045000px;}
.yce{bottom:836.565000px;}
.y68{bottom:841.605000px;}
.y17{bottom:845.205000px;}
.y9a{bottom:851.685000px;}
.ycd{bottom:854.205000px;}
.y67{bottom:859.245000px;}
.y16{bottom:862.845000px;}
.y99{bottom:869.145000px;}
.ycc{bottom:871.710000px;}
.y66{bottom:876.930000px;}
.y15{bottom:880.350000px;}
.y98{bottom:889.350000px;}
.y65{bottom:894.570000px;}
.y14{bottom:897.990000px;}
.y97{bottom:906.990000px;}
.y64{bottom:912.030000px;}
.y13{bottom:915.630000px;}
.y96{bottom:924.630000px;}
.y63{bottom:929.670000px;}
.y12{bottom:933.090000px;}
.y95{bottom:942.090000px;}
.y62{bottom:947.310000px;}
.y11{bottom:950.730000px;}
.ycb{bottom:959.730000px;}
.y94{bottom:962.250000px;}
.y61{bottom:964.770000px;}
.y10{bottom:968.370000px;}
.yca{bottom:977.370000px;}
.y93{bottom:979.890000px;}
.y60{bottom:982.410000px;}
.yf{bottom:986.190000px;}
.yc9{bottom:994.830000px;}
.y92{bottom:997.530000px;}
.y5f{bottom:1000.050000px;}
.ye{bottom:1005.270000px;}
.yc8{bottom:1012.470000px;}
.y5e{bottom:1017.510000px;}
.yf7{bottom:1017.690000px;}
.yd{bottom:1023.090000px;}
.yc7{bottom:1032.630000px;}
.y5d{bottom:1035.150000px;}
.yc{bottom:1042.530000px;}
.yc6{bottom:1050.270000px;}
.y5c{bottom:1052.790000px;}
.yb{bottom:1062.510000px;}
.yc5{bottom:1067.730000px;}
.y5b{bottom:1070.430000px;}
.ya{bottom:1085.370000px;}
.y5a{bottom:1087.890000px;}
.yc4{bottom:1103.010000px;}
.y59{bottom:1105.530000px;}
.y9{bottom:1108.230000px;}
.y58{bottom:1123.170000px;}
.y5{bottom:1133.250000px;}
.y57{bottom:1140.660000px;}
.y4{bottom:1147.500000px;}
.y3{bottom:1162.980000px;}
.y56{bottom:1178.100000px;}
.y2{bottom:1178.460000px;}
.y1{bottom:1193.940000px;}
.y55{bottom:1197.540000px;}
.ha{height:30.480469px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.he{height:41.726953px;}
.h2{height:45.720703px;}
.h9{height:50.273438px;}
.h7{height:50.597578px;}
.hd{height:50.800781px;}
.hc{height:52.417969px;}
.h6{height:56.084062px;}
.hb{height:58.819922px;}
.h5{height:65.837812px;}
.h8{height:327.450000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:208.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.035987px;}
.xa{left:113.616000px;}
.x2{left:116.135987px;}
.x38{left:120.095987px;}
.x1e{left:129.275987px;}
.xb{left:134.994000px;}
.xc{left:149.615987px;}
.x2c{left:154.109987px;}
.xd{left:158.969987px;}
.x9{left:161.129987px;}
.x2d{left:165.269987px;}
.x4{left:173.369987px;}
.x24{left:205.229987px;}
.x41{left:206.849987px;}
.x25{left:218.009987px;}
.xe{left:220.529987px;}
.xf{left:230.249987px;}
.x42{left:233.129987px;}
.x26{left:240.869987px;}
.x43{left:243.929987px;}
.x2e{left:247.169987px;}
.x7{left:250.409987px;}
.x27{left:253.649987px;}
.x2f{left:258.329987px;}
.x10{left:277.229987px;}
.x11{left:287.174987px;}
.x30{left:290.594987px;}
.x28{left:301.934987px;}
.x5{left:307.694987px;}
.x44{left:308.954987px;}
.x29{left:314.354987px;}
.x45{left:319.934987px;}
.x12{left:324.254987px;}
.x13{left:334.154987px;}
.x8{left:336.494987px;}
.x2a{left:344.954987px;}
.x31{left:350.894987px;}
.x14{left:354.854987px;}
.x2b{left:357.734987px;}
.x32{left:361.874987px;}
.x15{left:364.034987px;}
.x6{left:391.574987px;}
.x33{left:396.074987px;}
.x16{left:401.834987px;}
.x34{left:407.054987px;}
.x3{left:448.274987px;}
.x17{left:458.354987px;}
.x35{left:460.334987px;}
.x18{left:468.284987px;}
.x19{left:496.364987px;}
.x1a{left:505.544987px;}
.x36{left:513.644987px;}
.x39{left:521.564987px;}
.x37{left:524.804987px;}
.x3a{left:532.544987px;}
.x1d{left:541.364987px;}
.x1b{left:552.884987px;}
.x1c{left:562.244987px;}
.x3b{left:615.344987px;}
.x3c{left:626.504987px;}
.x1f{left:654.944987px;}
.x3d{left:661.829987px;}
.x20{left:671.909987px;}
.x3e{left:673.169987px;}
.x3f{left:746.609987px;}
.x21{left:747.869987px;}
.x40{left:757.589987px;}
.x22{left:764.429987px;}
.x23{left:788.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls27{letter-spacing:-1.269333pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls28{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.531200pt;}
.ls1f{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.240533pt;}
.ls20{letter-spacing:-0.233067pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls23{letter-spacing:-0.134933pt;}
.ls26{letter-spacing:-0.132267pt;}
.ls24{letter-spacing:-0.097600pt;}
.lsb{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.084267pt;}
.ls1b{letter-spacing:-0.041600pt;}
.ls2{letter-spacing:-0.032000pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.011520pt;}
.ls1c{letter-spacing:0.034560pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.186133pt;}
.ls6{letter-spacing:0.291733pt;}
.ls3{letter-spacing:0.317333pt;}
.ls14{letter-spacing:0.324267pt;}
.ls8{letter-spacing:0.325333pt;}
.ls19{letter-spacing:0.629333pt;}
.ls10{letter-spacing:1.280000pt;}
.ls15{letter-spacing:2.191360pt;}
.ls13{letter-spacing:5.248000pt;}
.ls16{letter-spacing:5.391360pt;}
.lse{letter-spacing:7.520000pt;}
.ls12{letter-spacing:9.088000pt;}
.ls11{letter-spacing:9.728000pt;}
.ls17{letter-spacing:11.993600pt;}
.lsa{letter-spacing:12.640000pt;}
.lsc{letter-spacing:13.280000pt;}
.lsd{letter-spacing:13.920000pt;}
.lsf{letter-spacing:17.120000pt;}
.ls25{letter-spacing:17.760000pt;}
.wsf{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.360000pt;}
.ws10{word-spacing:-15.104000pt;}
.ws14{word-spacing:-14.486933pt;}
.ws13{word-spacing:-14.448533pt;}
.wsa{word-spacing:-12.011733pt;}
.ws12{word-spacing:-12.010667pt;}
.ws9{word-spacing:-12.003733pt;}
.ws0{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.872533pt;}
.wsc{word-spacing:-11.869867pt;}
.wse{word-spacing:-11.720960pt;}
.ws16{word-spacing:-11.697920pt;}
.ws8{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.644800pt;}
.wsb{word-spacing:-11.591467pt;}
.ws17{word-spacing:-11.554133pt;}
.ws1{word-spacing:-10.720000pt;}
.ws18{word-spacing:-10.417067pt;}
.ws2{word-spacing:-9.433600pt;}
.ws6{word-spacing:-9.193067pt;}
.ws7{word-spacing:-8.082133pt;}
.ws4{word-spacing:-7.040000pt;}
.ws3{word-spacing:-7.008000pt;}
.ws5{word-spacing:0.000000pt;}
._24{margin-left:-9.956693pt;}
._15{margin-left:-2.755627pt;}
._2{margin-left:-1.136000pt;}
._1{width:1.002667pt;}
._a{width:2.036480pt;}
._d{width:3.653973pt;}
._16{width:4.971307pt;}
._7{width:6.055680pt;}
._e{width:7.011840pt;}
._6{width:8.286720pt;}
._12{width:9.302613pt;}
._9{width:10.517760pt;}
._8{width:12.662400pt;}
._14{width:14.402133pt;}
._10{width:15.351680pt;}
._11{width:16.254720pt;}
._13{width:17.635840pt;}
._1a{width:19.102293pt;}
._21{width:20.106880pt;}
._b{width:21.407360pt;}
._c{width:22.376747pt;}
._1e{width:23.740160pt;}
._1c{width:24.734720pt;}
._1f{width:25.807573pt;}
._1d{width:26.698240pt;}
._19{width:27.629013pt;}
._f{width:32.296960pt;}
._23{width:33.872427pt;}
._1b{width:35.174187pt;}
._20{width:37.399680pt;}
._17{width:41.687360pt;}
._22{width:49.873280pt;}
._0{width:66.666667pt;}
._3{width:161.440000pt;}
._4{width:172.862080pt;}
._5{width:180.313600pt;}
._18{width:938.673067pt;}
.fs6{font-size:32.000000pt;}
.fs8{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:16.000000pt;}
.y53{bottom:34.400000pt;}
.y8{bottom:50.240000pt;}
.y52{bottom:51.040000pt;}
.y51{bottom:60.480000pt;}
.y7{bottom:62.752000pt;}
.y50{bottom:69.760000pt;}
.y6{bottom:75.232000pt;}
.y4f{bottom:79.200000pt;}
.y4e{bottom:94.880000pt;}
.yc3{bottom:106.112000pt;}
.y40{bottom:106.752000pt;}
.y91{bottom:107.232000pt;}
.yf6{bottom:111.552000pt;}
.yc2{bottom:121.792000pt;}
.y3f{bottom:122.432000pt;}
.y90{bottom:122.912000pt;}
.yf5{bottom:127.072000pt;}
.yc1{bottom:137.466667pt;}
.y3e{bottom:137.946667pt;}
.y8f{bottom:138.426667pt;}
.y4d{bottom:141.920000pt;}
.yf4{bottom:142.746667pt;}
.yc0{bottom:152.986667pt;}
.y3d{bottom:153.626667pt;}
.y8e{bottom:154.106667pt;}
.y4c{bottom:154.400000pt;}
.yf3{bottom:158.426667pt;}
.y4b{bottom:166.880000pt;}
.ybf{bottom:168.666667pt;}
.y3c{bottom:169.306667pt;}
.y8d{bottom:169.786667pt;}
.yf2{bottom:173.946667pt;}
.y4a{bottom:179.360000pt;}
.ybe{bottom:184.346667pt;}
.y3b{bottom:184.826667pt;}
.y8c{bottom:185.306667pt;}
.yf1{bottom:189.626667pt;}
.y49{bottom:191.840000pt;}
.ybd{bottom:200.026667pt;}
.y3a{bottom:200.826667pt;}
.y8b{bottom:200.986667pt;}
.y48{bottom:204.520000pt;}
.yf0{bottom:205.306667pt;}
.ybc{bottom:215.546667pt;}
.y8a{bottom:216.666667pt;}
.y47{bottom:217.000000pt;}
.y39{bottom:217.786667pt;}
.yef{bottom:220.986667pt;}
.y46{bottom:229.480000pt;}
.ybb{bottom:231.226667pt;}
.y89{bottom:232.186667pt;}
.y38{bottom:233.306667pt;}
.yee{bottom:236.506667pt;}
.y45{bottom:241.960000pt;}
.yba{bottom:246.906667pt;}
.y88{bottom:247.866667pt;}
.y37{bottom:248.986667pt;}
.yed{bottom:252.186667pt;}
.y44{bottom:254.440000pt;}
.yb9{bottom:262.426667pt;}
.y87{bottom:263.546667pt;}
.y36{bottom:264.666667pt;}
.y43{bottom:266.920000pt;}
.yec{bottom:267.866667pt;}
.yb8{bottom:278.106667pt;}
.y86{bottom:279.226667pt;}
.y42{bottom:279.720000pt;}
.y35{bottom:280.186667pt;}
.yeb{bottom:283.386667pt;}
.yb7{bottom:293.786667pt;}
.y85{bottom:294.746667pt;}
.y34{bottom:295.866667pt;}
.yea{bottom:299.106667pt;}
.yb6{bottom:309.346667pt;}
.y84{bottom:310.466667pt;}
.y33{bottom:311.586667pt;}
.ye9{bottom:314.786667pt;}
.yb5{bottom:325.026667pt;}
.y83{bottom:326.146667pt;}
.y32{bottom:327.266667pt;}
.ye8{bottom:330.306667pt;}
.yb4{bottom:340.706667pt;}
.y82{bottom:341.666667pt;}
.y31{bottom:342.786667pt;}
.ye7{bottom:345.986667pt;}
.yb3{bottom:356.226667pt;}
.y81{bottom:357.346667pt;}
.y30{bottom:358.466667pt;}
.ye6{bottom:361.666667pt;}
.yb2{bottom:371.906667pt;}
.y80{bottom:373.026667pt;}
.y2f{bottom:374.146667pt;}
.ye5{bottom:379.586667pt;}
.yb1{bottom:387.586667pt;}
.y7f{bottom:388.546667pt;}
.y2e{bottom:389.666667pt;}
.ye4{bottom:395.106667pt;}
.yb0{bottom:403.266667pt;}
.y7e{bottom:404.226667pt;}
.y2d{bottom:405.346667pt;}
.ye3{bottom:413.026667pt;}
.yaf{bottom:418.786667pt;}
.y7d{bottom:419.906667pt;}
.y2c{bottom:421.026667pt;}
.ye2{bottom:428.706667pt;}
.yae{bottom:434.466667pt;}
.y7c{bottom:435.586667pt;}
.y2b{bottom:436.546667pt;}
.ye1{bottom:446.626667pt;}
.yad{bottom:450.146667pt;}
.y7b{bottom:451.106667pt;}
.y2a{bottom:452.226667pt;}
.ye0{bottom:462.306667pt;}
.yac{bottom:465.506667pt;}
.y7a{bottom:466.786667pt;}
.y29{bottom:467.906667pt;}
.ydf{bottom:477.826667pt;}
.yab{bottom:482.306667pt;}
.y79{bottom:482.466667pt;}
.y28{bottom:483.426667pt;}
.yde{bottom:493.506667pt;}
.yaa{bottom:497.826667pt;}
.y78{bottom:497.986667pt;}
.y27{bottom:501.026667pt;}
.ydd{bottom:509.186667pt;}
.y77{bottom:513.666667pt;}
.ya9{bottom:514.466667pt;}
.y26{bottom:516.706667pt;}
.ydc{bottom:524.706667pt;}
.y76{bottom:529.346667pt;}
.ya8{bottom:531.266667pt;}
.y25{bottom:532.386667pt;}
.ydb{bottom:540.413333pt;}
.y75{bottom:544.893333pt;}
.ya7{bottom:546.973333pt;}
.y24{bottom:548.093333pt;}
.yda{bottom:556.093333pt;}
.y74{bottom:560.573333pt;}
.ya6{bottom:562.653333pt;}
.y23{bottom:563.613333pt;}
.yd9{bottom:571.613333pt;}
.y73{bottom:576.253333pt;}
.ya5{bottom:578.173333pt;}
.y22{bottom:579.293333pt;}
.y41{bottom:580.413333pt;}
.yd8{bottom:587.293333pt;}
.y72{bottom:591.773333pt;}
.y21{bottom:594.973333pt;}
.ya4{bottom:596.093333pt;}
.yd7{bottom:602.973333pt;}
.y71{bottom:607.453333pt;}
.y20{bottom:610.653333pt;}
.ya3{bottom:611.773333pt;}
.yd6{bottom:618.653333pt;}
.y70{bottom:623.133333pt;}
.y1f{bottom:626.173333pt;}
.ya2{bottom:627.453333pt;}
.yd5{bottom:634.173333pt;}
.y6f{bottom:638.813333pt;}
.y1e{bottom:641.853333pt;}
.ya1{bottom:642.973333pt;}
.yd4{bottom:649.853333pt;}
.y6e{bottom:654.333333pt;}
.y1d{bottom:657.533333pt;}
.ya0{bottom:658.653333pt;}
.yd3{bottom:665.533333pt;}
.y6d{bottom:670.013333pt;}
.y1c{bottom:673.053333pt;}
.y9f{bottom:676.573333pt;}
.yd2{bottom:681.053333pt;}
.y6c{bottom:685.693333pt;}
.y1b{bottom:688.733333pt;}
.y9e{bottom:692.253333pt;}
.yd1{bottom:696.733333pt;}
.y6b{bottom:701.213333pt;}
.y1a{bottom:704.413333pt;}
.y9d{bottom:707.773333pt;}
.yd0{bottom:712.413333pt;}
.y6a{bottom:716.893333pt;}
.y19{bottom:719.933333pt;}
.y9c{bottom:725.693333pt;}
.ycf{bottom:727.933333pt;}
.y69{bottom:732.573333pt;}
.y18{bottom:735.613333pt;}
.y9b{bottom:741.373333pt;}
.yce{bottom:743.613333pt;}
.y68{bottom:748.093333pt;}
.y17{bottom:751.293333pt;}
.y9a{bottom:757.053333pt;}
.ycd{bottom:759.293333pt;}
.y67{bottom:763.773333pt;}
.y16{bottom:766.973333pt;}
.y99{bottom:772.573333pt;}
.ycc{bottom:774.853333pt;}
.y66{bottom:779.493333pt;}
.y15{bottom:782.533333pt;}
.y98{bottom:790.533333pt;}
.y65{bottom:795.173333pt;}
.y14{bottom:798.213333pt;}
.y97{bottom:806.213333pt;}
.y64{bottom:810.693333pt;}
.y13{bottom:813.893333pt;}
.y96{bottom:821.893333pt;}
.y63{bottom:826.373333pt;}
.y12{bottom:829.413333pt;}
.y95{bottom:837.413333pt;}
.y62{bottom:842.053333pt;}
.y11{bottom:845.093333pt;}
.ycb{bottom:853.093333pt;}
.y94{bottom:855.333333pt;}
.y61{bottom:857.573333pt;}
.y10{bottom:860.773333pt;}
.yca{bottom:868.773333pt;}
.y93{bottom:871.013333pt;}
.y60{bottom:873.253333pt;}
.yf{bottom:876.613333pt;}
.yc9{bottom:884.293333pt;}
.y92{bottom:886.693333pt;}
.y5f{bottom:888.933333pt;}
.ye{bottom:893.573333pt;}
.yc8{bottom:899.973333pt;}
.y5e{bottom:904.453333pt;}
.yf7{bottom:904.613333pt;}
.yd{bottom:909.413333pt;}
.yc7{bottom:917.893333pt;}
.y5d{bottom:920.133333pt;}
.yc{bottom:926.693333pt;}
.yc6{bottom:933.573333pt;}
.y5c{bottom:935.813333pt;}
.yb{bottom:944.453333pt;}
.yc5{bottom:949.093333pt;}
.y5b{bottom:951.493333pt;}
.ya{bottom:964.773333pt;}
.y5a{bottom:967.013333pt;}
.yc4{bottom:980.453333pt;}
.y59{bottom:982.693333pt;}
.y9{bottom:985.093333pt;}
.y58{bottom:998.373333pt;}
.y5{bottom:1007.333333pt;}
.y57{bottom:1013.920000pt;}
.y4{bottom:1020.000000pt;}
.y3{bottom:1033.760000pt;}
.y56{bottom:1047.200000pt;}
.y2{bottom:1047.520000pt;}
.y1{bottom:1061.280000pt;}
.y55{bottom:1064.480000pt;}
.ha{height:27.093750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.he{height:37.090625pt;}
.h2{height:40.640625pt;}
.h9{height:44.687500pt;}
.h7{height:44.975625pt;}
.hd{height:45.156250pt;}
.hc{height:46.593750pt;}
.h6{height:49.852500pt;}
.hb{height:52.284375pt;}
.h5{height:58.522500pt;}
.h8{height:291.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.986667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.031988pt;}
.xa{left:100.992000pt;}
.x2{left:103.231988pt;}
.x38{left:106.751988pt;}
.x1e{left:114.911988pt;}
.xb{left:119.994667pt;}
.xc{left:132.991988pt;}
.x2c{left:136.986655pt;}
.xd{left:141.306655pt;}
.x9{left:143.226655pt;}
.x2d{left:146.906655pt;}
.x4{left:154.106655pt;}
.x24{left:182.426655pt;}
.x41{left:183.866655pt;}
.x25{left:193.786655pt;}
.xe{left:196.026655pt;}
.xf{left:204.666655pt;}
.x42{left:207.226655pt;}
.x26{left:214.106655pt;}
.x43{left:216.826655pt;}
.x2e{left:219.706655pt;}
.x7{left:222.586655pt;}
.x27{left:225.466655pt;}
.x2f{left:229.626655pt;}
.x10{left:246.426655pt;}
.x11{left:255.266655pt;}
.x30{left:258.306655pt;}
.x28{left:268.386655pt;}
.x5{left:273.506655pt;}
.x44{left:274.626655pt;}
.x29{left:279.426655pt;}
.x45{left:284.386655pt;}
.x12{left:288.226655pt;}
.x13{left:297.026655pt;}
.x8{left:299.106655pt;}
.x2a{left:306.626655pt;}
.x31{left:311.906655pt;}
.x14{left:315.426655pt;}
.x2b{left:317.986655pt;}
.x32{left:321.666655pt;}
.x15{left:323.586655pt;}
.x6{left:348.066655pt;}
.x33{left:352.066655pt;}
.x16{left:357.186655pt;}
.x34{left:361.826655pt;}
.x3{left:398.466655pt;}
.x17{left:407.426655pt;}
.x35{left:409.186655pt;}
.x18{left:416.253322pt;}
.x19{left:441.213322pt;}
.x1a{left:449.373322pt;}
.x36{left:456.573322pt;}
.x39{left:463.613322pt;}
.x37{left:466.493322pt;}
.x3a{left:473.373322pt;}
.x1d{left:481.213322pt;}
.x1b{left:491.453322pt;}
.x1c{left:499.773322pt;}
.x3b{left:546.973322pt;}
.x3c{left:556.893322pt;}
.x1f{left:582.173322pt;}
.x3d{left:588.293322pt;}
.x20{left:597.253322pt;}
.x3e{left:598.373322pt;}
.x3f{left:663.653322pt;}
.x21{left:664.773322pt;}
.x40{left:673.413322pt;}
.x22{left:679.493322pt;}
.x23{left:700.933322pt;}
}




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