
    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_0392f84c7dddf375aa9ac867.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_9db492274d3d20b480c808f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854004;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_974e7619e3f13ca4fec406cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722168;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_06952d3b2c7ce9ed0fd98b25.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722168;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_5ad189b37a58e274b8a07206.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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-3.780000px;}
.lsb{letter-spacing:-1.428000px;}
.ls10{letter-spacing:-0.304800px;}
.ls4{letter-spacing:-0.224400px;}
.ls12{letter-spacing:-0.083400px;}
.lsa{letter-spacing:-0.011520px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls3{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.059040px;}
.ls18{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.178800px;}
.lsf{letter-spacing:0.181200px;}
.ls15{letter-spacing:0.181440px;}
.ls7{letter-spacing:0.216600px;}
.ls9{letter-spacing:0.252000px;}
.lsd{letter-spacing:0.301200px;}
.ls19{letter-spacing:0.901440px;}
.ls16{letter-spacing:52.229280px;}
.ls14{letter-spacing:56.549280px;}
.ls5{letter-spacing:88.949280px;}
.ls11{letter-spacing:118.421280px;}
.ls6{letter-spacing:119.141280px;}
.lsc{letter-spacing:121.301280px;}
.ls2{letter-spacing:122.069280px;}
.ls0{letter-spacing:845.741280px;}
.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;}
}
.wse{word-spacing:-120.294000px;}
.wsd{word-spacing:-84.418800px;}
.ws3{word-spacing:-32.398560px;}
.wsf{word-spacing:-32.344560px;}
.ws9{word-spacing:-22.961760px;}
.ws5{word-spacing:-22.877160px;}
.ws6{word-spacing:-22.660560px;}
.wsb{word-spacing:-22.355760px;}
.ws1{word-spacing:-17.818560px;}
.ws7{word-spacing:-17.807040px;}
.wsc{word-spacing:-17.735160px;}
.ws4{word-spacing:-17.594160px;}
.ws8{word-spacing:-16.390560px;}
.ws2{word-spacing:-16.075440px;}
.ws10{word-spacing:-14.526000px;}
.wsa{word-spacing:-14.038560px;}
.ws0{word-spacing:0.000000px;}
._3{margin-left:-11.448000px;}
._c{margin-left:-9.432000px;}
._0{margin-left:-7.992000px;}
._b{margin-left:-6.768000px;}
._4{margin-left:-5.616000px;}
._d{margin-left:-4.248000px;}
._1{margin-left:-3.240000px;}
._2{margin-left:-2.160000px;}
._a{margin-left:-1.026000px;}
._9{width:1.188000px;}
._f{width:2.877840px;}
._5{width:3.967920px;}
._6{width:5.290560px;}
._10{width:6.517440px;}
._7{width:7.963680px;}
._8{width:9.555600px;}
._e{width:10.840560px;}
._37{width:12.173520px;}
._15{width:13.214160px;}
._14{width:14.613120px;}
._2b{width:16.096320px;}
._1d{width:17.470080px;}
._2e{width:19.056240px;}
._1c{width:20.203200px;}
._2a{width:21.369600px;}
._29{width:22.668480px;}
._25{width:24.436800px;}
._2d{width:25.684560px;}
._23{width:26.727120px;}
._24{width:28.098000px;}
._2c{width:29.130240px;}
._1a{width:31.199040px;}
._1b{width:32.497920px;}
._28{width:33.649920px;}
._11{width:35.637120px;}
._33{width:37.098000px;}
._32{width:38.782800px;}
._31{width:40.055760px;}
._38{width:42.089040px;}
._18{width:43.618320px;}
._19{width:44.918640px;}
._36{width:46.018800px;}
._1f{width:47.386320px;}
._1e{width:48.525120px;}
._3a{width:50.209920px;}
._39{width:51.302160px;}
._3f{width:52.323840px;}
._41{width:56.767680px;}
._40{width:57.867840px;}
._2f{width:59.549760px;}
._30{width:61.007040px;}
._16{width:62.358480px;}
._17{width:63.374160px;}
._21{width:66.682080px;}
._20{width:67.739760px;}
._22{width:68.784000px;}
._26{width:71.763360px;}
._27{width:73.127760px;}
._3b{width:74.135760px;}
._12{width:88.032960px;}
._13{width:89.084880px;}
._34{width:101.016000px;}
._35{width:102.288960px;}
._3d{width:234.976320px;}
._3c{width:236.121840px;}
._3e{width:237.858000px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,26,23);}
.fc2{color:rgb(75,129,114);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fsb{font-size:69.822393px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:120.240000px;}
.fs9{font-size:144.000000px;}
.fs2{font-size:167.760000px;}
.fs3{font-size:216.000000px;}
.fs7{font-size:432.000000px;}
.y16{bottom:-28.980000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.539985px;}
.y15{bottom:3.420000px;}
.y17{bottom:7.740000px;}
.y14{bottom:20.880000px;}
.y18{bottom:43.200000px;}
.y13{bottom:46.440000px;}
.y2{bottom:48.780015px;}
.y4{bottom:109.620000px;}
.y19{bottom:129.420000px;}
.y45{bottom:148.860000px;}
.y44{bottom:154.080000px;}
.y43{bottom:166.860000px;}
.yfb{bottom:167.220000px;}
.y6c{bottom:172.080000px;}
.y117{bottom:181.650000px;}
.y42{bottom:184.890000px;}
.y6b{bottom:190.110000px;}
.y116{bottom:197.850000px;}
.y41{bottom:202.890000px;}
.ycb{bottom:208.110000px;}
.y40{bottom:220.890000px;}
.yca{bottom:221.250000px;}
.y115{bottom:224.850000px;}
.y6a{bottom:226.110000px;}
.y3f{bottom:238.890000px;}
.y69{bottom:239.250000px;}
.yec{bottom:240.150000px;}
.y8a{bottom:244.110000px;}
.yc9{bottom:246.090000px;}
.y3e{bottom:256.890000px;}
.y10c{bottom:257.250000px;}
.yeb{bottom:261.570000px;}
.y3d{bottom:262.110000px;}
.yc8{bottom:267.510000px;}
.y3c{bottom:274.890000px;}
.y89{bottom:275.250000px;}
.y114{bottom:276.510000px;}
.yea{bottom:282.990000px;}
.yc7{bottom:288.930000px;}
.ye4{bottom:291.450000px;}
.y3b{bottom:292.890000px;}
.y75{bottom:294.510000px;}
.y10b{bottom:296.310000px;}
.y3a{bottom:298.110000px;}
.y74{bottom:300.450000px;}
.ye9{bottom:304.410000px;}
.y113{bottom:309.810000px;}
.yc6{bottom:310.350000px;}
.y39{bottom:311.250000px;}
.ye3{bottom:312.690000px;}
.y68{bottom:313.410000px;}
.y10a{bottom:317.730000px;}
.y88{bottom:324.210000px;}
.ye8{bottom:325.650000px;}
.y87{bottom:330.150000px;}
.y12{bottom:331.230000px;}
.yc5{bottom:331.590000px;}
.y67{bottom:334.830000px;}
.y109{bottom:338.970000px;}
.ya8{bottom:339.150000px;}
.y112{bottom:343.110000px;}
.ye1{bottom:346.170000px;}
.ye7{bottom:347.070000px;}
.ye2{bottom:352.110000px;}
.yc4{bottom:353.010000px;}
.y66{bottom:356.250000px;}
.y38{bottom:359.850000px;}
.ya7{bottom:360.570000px;}
.ye0{bottom:367.410000px;}
.ye6{bottom:368.490000px;}
.yc3{bottom:374.430000px;}
.y108{bottom:376.410000px;}
.y111{bottom:376.590000px;}
.y65{bottom:377.490000px;}
.y37{bottom:381.270000px;}
.ya6{bottom:381.990000px;}
.ydf{bottom:388.830000px;}
.yc2{bottom:395.850000px;}
.ye5{bottom:398.370000px;}
.y64{bottom:398.910000px;}
.y36{bottom:402.690000px;}
.ya5{bottom:403.230000px;}
.y110{bottom:409.890000px;}
.yde{bottom:410.250000px;}
.y62{bottom:420.375000px;}
.yc1{bottom:424.515000px;}
.ya4{bottom:424.695000px;}
.y63{bottom:426.315000px;}
.ydd{bottom:431.715000px;}
.y34{bottom:436.035000px;}
.y107{bottom:438.375000px;}
.y61{bottom:441.795000px;}
.y35{bottom:441.975000px;}
.y10f{bottom:443.415000px;}
.ya3{bottom:446.115000px;}
.ydc{bottom:452.955000px;}
.y33{bottom:457.455000px;}
.yc0{bottom:462.315000px;}
.y60{bottom:463.035000px;}
.ya2{bottom:467.535000px;}
.y105{bottom:471.675000px;}
.ydb{bottom:474.375000px;}
.y10e{bottom:476.715000px;}
.y106{bottom:477.615000px;}
.y31{bottom:478.875000px;}
.y5f{bottom:484.455000px;}
.y32{bottom:484.815000px;}
.ya1{bottom:488.775000px;}
.y104{bottom:493.095000px;}
.ybf{bottom:495.795000px;}
.y30{bottom:500.115000px;}
.y11{bottom:505.155000px;}
.y5e{bottom:505.875000px;}
.y10d{bottom:506.415000px;}
.ya0{bottom:510.195000px;}
.y103{bottom:514.515000px;}
.ybe{bottom:517.215000px;}
.y2f{bottom:521.535000px;}
.y5d{bottom:527.295000px;}
.y9f{bottom:531.615000px;}
.y102{bottom:535.755000px;}
.y10{bottom:538.455000px;}
.y2e{bottom:542.955000px;}
.y5b{bottom:548.535000px;}
.yfa{bottom:550.335000px;}
.y9e{bottom:553.035000px;}
.y5c{bottom:554.475000px;}
.y101{bottom:557.175000px;}
.ybd{bottom:559.875000px;}
.y2d{bottom:564.375000px;}
.y59{bottom:569.955000px;}
.yf9{bottom:571.755000px;}
.yf{bottom:571.935000px;}
.y9d{bottom:574.275000px;}
.y5a{bottom:575.895000px;}
.y100{bottom:578.595000px;}
.ybc{bottom:581.295000px;}
.y2c{bottom:585.615000px;}
.y58{bottom:591.375000px;}
.yf8{bottom:592.995000px;}
.y9c{bottom:595.695000px;}
.yff{bottom:599.835000px;}
.ybb{bottom:602.535000px;}
.ye{bottom:605.235000px;}
.y57{bottom:612.615000px;}
.yf7{bottom:614.415000px;}
.y9b{bottom:617.115000px;}
.y2a{bottom:619.095000px;}
.yfe{bottom:621.255000px;}
.yba{bottom:623.955000px;}
.y2b{bottom:625.035000px;}
.y56{bottom:634.035000px;}
.yf6{bottom:635.835000px;}
.y9a{bottom:638.355000px;}
.y29{bottom:640.335000px;}
.yd{bottom:642.675000px;}
.yda{bottom:645.375000px;}
.y55{bottom:655.455000px;}
.yf5{bottom:657.255000px;}
.yb8{bottom:657.435000px;}
.y99{bottom:659.775000px;}
.y28{bottom:661.755000px;}
.yb9{bottom:663.405000px;}
.yd9{bottom:666.825000px;}
.yfd{bottom:676.005000px;}
.y54{bottom:676.905000px;}
.yf4{bottom:678.525000px;}
.yb7{bottom:678.705000px;}
.y98{bottom:681.225000px;}
.yc{bottom:681.405000px;}
.yfc{bottom:681.945000px;}
.y27{bottom:683.205000px;}
.yd8{bottom:688.065000px;}
.yb6{bottom:700.125000px;}
.y97{bottom:702.645000px;}
.y26{bottom:704.625000px;}
.yd7{bottom:709.485000px;}
.y53{bottom:710.205000px;}
.yf3{bottom:712.005000px;}
.y73{bottom:716.145000px;}
.yb5{bottom:721.545000px;}
.y96{bottom:723.885000px;}
.y25{bottom:725.865000px;}
.yb{bottom:728.925000px;}
.yd6{bottom:730.905000px;}
.y52{bottom:731.625000px;}
.yf2{bottom:733.245000px;}
.y86{bottom:739.545000px;}
.yb4{bottom:742.785000px;}
.y95{bottom:745.305000px;}
.y24{bottom:747.285000px;}
.yd5{bottom:752.325000px;}
.y51{bottom:753.045000px;}
.yf1{bottom:754.665000px;}
.y85{bottom:760.785000px;}
.ya{bottom:763.845000px;}
.yb3{bottom:764.205000px;}
.y94{bottom:766.725000px;}
.y23{bottom:768.705000px;}
.yd4{bottom:773.565000px;}
.y50{bottom:774.285000px;}
.yf0{bottom:776.085000px;}
.y84{bottom:782.205000px;}
.y93{bottom:788.145000px;}
.y22{bottom:790.125000px;}
.y4f{bottom:795.705000px;}
.yef{bottom:797.505000px;}
.yb2{bottom:797.685000px;}
.yd3{bottom:802.365000px;}
.y83{bottom:803.625000px;}
.y91{bottom:809.385000px;}
.y21{bottom:811.365000px;}
.y92{bottom:815.325000px;}
.y4e{bottom:817.125000px;}
.yb1{bottom:818.925000px;}
.y82{bottom:825.045000px;}
.y9{bottom:828.645000px;}
.y90{bottom:830.805000px;}
.y20{bottom:832.785000px;}
.y4d{bottom:838.365000px;}
.yd2{bottom:840.165000px;}
.yb0{bottom:840.345000px;}
.y81{bottom:846.285000px;}
.yee{bottom:852.225000px;}
.y1f{bottom:854.205000px;}
.y72{bottom:854.565000px;}
.y4c{bottom:859.785000px;}
.yaf{bottom:861.765000px;}
.y8f{bottom:864.105000px;}
.y7f{bottom:867.705000px;}
.yd0{bottom:873.465000px;}
.y80{bottom:873.645000px;}
.yd1{bottom:879.405000px;}
.y4b{bottom:881.205000px;}
.y8e{bottom:885.525000px;}
.y1e{bottom:887.505000px;}
.y7e{bottom:889.125000px;}
.ycf{bottom:894.885000px;}
.yae{bottom:895.065000px;}
.y8{bottom:899.385000px;}
.y4a{bottom:902.625000px;}
.y8d{bottom:906.990000px;}
.y7d{bottom:910.590000px;}
.y71{bottom:916.350000px;}
.yad{bottom:916.530000px;}
.y1d{bottom:921.030000px;}
.y8c{bottom:928.410000px;}
.y7{bottom:930.390000px;}
.y7c{bottom:931.830000px;}
.yce{bottom:937.770000px;}
.yac{bottom:937.950000px;}
.y49{bottom:939.930000px;}
.y70{bottom:949.650000px;}
.y1c{bottom:950.730000px;}
.y7a{bottom:953.250000px;}
.ycd{bottom:959.010000px;}
.y7b{bottom:959.190000px;}
.y6f{bottom:971.070000px;}
.y79{bottom:974.670000px;}
.ycc{bottom:980.430000px;}
.yab{bottom:980.610000px;}
.y6{bottom:980.790000px;}
.y6e{bottom:992.490000px;}
.y1b{bottom:993.930000px;}
.y78{bottom:995.910000px;}
.y8b{bottom:998.430000px;}
.y48{bottom:1001.850000px;}
.yaa{bottom:1002.030000px;}
.y6d{bottom:1013.910000px;}
.y77{bottom:1017.330000px;}
.ya9{bottom:1023.450000px;}
.y5{bottom:1031.190000px;}
.y47{bottom:1035.150000px;}
.y1a{bottom:1037.130000px;}
.yed{bottom:1041.090000px;}
.y76{bottom:1052.070000px;}
.y46{bottom:1056.570000px;}
.y3{bottom:1076.370000px;}
.h3{height:31.236328px;}
.he{height:33.735234px;}
.hb{height:46.854492px;}
.h12{height:47.254219px;}
.h11{height:51.852305px;}
.hf{height:55.987031px;}
.h4{height:57.474844px;}
.h10{height:60.583199px;}
.h7{height:62.472656px;}
.h13{height:73.093008px;}
.ha{height:76.320000px;}
.hc{height:85.860000px;}
.h2{height:91.980000px;}
.h8{height:104.329336px;}
.hd{height:124.945312px;}
.h5{height:145.561289px;}
.h6{height:187.417969px;}
.h9{height:374.835938px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:661.425000px;}
.w2{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:10.259973px;}
.x2{left:108.035987px;}
.x17{left:111.095987px;}
.x18{left:112.715987px;}
.x27{left:114.155987px;}
.x26{left:116.135987px;}
.xc{left:117.755973px;}
.x8{left:128.916000px;}
.x12{left:156.089973px;}
.x13{left:161.129987px;}
.x4{left:172.469987px;}
.x5{left:174.089987px;}
.x35{left:180.389987px;}
.x7{left:202.529987px;}
.x36{left:204.689973px;}
.xb{left:205.959000px;}
.x3d{left:207.029987px;}
.x37{left:212.789987px;}
.x9{left:223.959000px;}
.x3b{left:251.849973px;}
.xa{left:257.079000px;}
.x14{left:259.049973px;}
.x3c{left:262.289987px;}
.x15{left:264.269987px;}
.xd{left:266.609987px;}
.xe{left:275.069973px;}
.xf{left:278.354987px;}
.x1f{left:299.234973px;}
.x20{left:304.094987px;}
.x28{left:315.074973px;}
.x16{left:324.074987px;}
.x6{left:340.274987px;}
.x1d{left:364.034973px;}
.x1e{left:369.074987px;}
.x2f{left:375.734987px;}
.x30{left:383.294987px;}
.x29{left:427.754987px;}
.x11{left:437.654987px;}
.x3a{left:442.334973px;}
.x21{left:443.774973px;}
.x3{left:446.474987px;}
.x1b{left:449.894973px;}
.x1c{left:455.114987px;}
.x19{left:462.524973px;}
.x2a{left:464.144987px;}
.x1a{left:468.104987px;}
.x2b{left:470.264987px;}
.x34{left:502.484973px;}
.x2d{left:510.044987px;}
.x10{left:511.124987px;}
.x22{left:528.404973px;}
.x23{left:533.444987px;}
.x24{left:620.024973px;}
.x25{left:628.664987px;}
.x2c{left:669.929987px;}
.x2e{left:707.729987px;}
.x31{left:712.949987px;}
.x32{left:762.809973px;}
.x33{left:771.629987px;}
.x39{left:776.489973px;}
.x38{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-3.360000pt;}
.lsb{letter-spacing:-1.269333pt;}
.ls10{letter-spacing:-0.270933pt;}
.ls4{letter-spacing:-0.199467pt;}
.ls12{letter-spacing:-0.074133pt;}
.lsa{letter-spacing:-0.010240pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls3{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.052480pt;}
.ls18{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.158933pt;}
.lsf{letter-spacing:0.161067pt;}
.ls15{letter-spacing:0.161280pt;}
.ls7{letter-spacing:0.192533pt;}
.ls9{letter-spacing:0.224000pt;}
.lsd{letter-spacing:0.267733pt;}
.ls19{letter-spacing:0.801280pt;}
.ls16{letter-spacing:46.426027pt;}
.ls14{letter-spacing:50.266027pt;}
.ls5{letter-spacing:79.066027pt;}
.ls11{letter-spacing:105.263360pt;}
.ls6{letter-spacing:105.903360pt;}
.lsc{letter-spacing:107.823360pt;}
.ls2{letter-spacing:108.506027pt;}
.ls0{letter-spacing:751.770027pt;}
.wse{word-spacing:-106.928000pt;}
.wsd{word-spacing:-75.038933pt;}
.ws3{word-spacing:-28.798720pt;}
.wsf{word-spacing:-28.750720pt;}
.ws9{word-spacing:-20.410453pt;}
.ws5{word-spacing:-20.335253pt;}
.ws6{word-spacing:-20.142720pt;}
.wsb{word-spacing:-19.871787pt;}
.ws1{word-spacing:-15.838720pt;}
.ws7{word-spacing:-15.828480pt;}
.wsc{word-spacing:-15.764587pt;}
.ws4{word-spacing:-15.639253pt;}
.ws8{word-spacing:-14.569387pt;}
.ws2{word-spacing:-14.289280pt;}
.ws10{word-spacing:-12.912000pt;}
.wsa{word-spacing:-12.478720pt;}
.ws0{word-spacing:0.000000pt;}
._3{margin-left:-10.176000pt;}
._c{margin-left:-8.384000pt;}
._0{margin-left:-7.104000pt;}
._b{margin-left:-6.016000pt;}
._4{margin-left:-4.992000pt;}
._d{margin-left:-3.776000pt;}
._1{margin-left:-2.880000pt;}
._2{margin-left:-1.920000pt;}
._a{margin-left:-0.912000pt;}
._9{width:1.056000pt;}
._f{width:2.558080pt;}
._5{width:3.527040pt;}
._6{width:4.702720pt;}
._10{width:5.793280pt;}
._7{width:7.078827pt;}
._8{width:8.493867pt;}
._e{width:9.636053pt;}
._37{width:10.820907pt;}
._15{width:11.745920pt;}
._14{width:12.989440pt;}
._2b{width:14.307840pt;}
._1d{width:15.528960pt;}
._2e{width:16.938880pt;}
._1c{width:17.958400pt;}
._2a{width:18.995200pt;}
._29{width:20.149760pt;}
._25{width:21.721600pt;}
._2d{width:22.830720pt;}
._23{width:23.757440pt;}
._24{width:24.976000pt;}
._2c{width:25.893547pt;}
._1a{width:27.732480pt;}
._1b{width:28.887040pt;}
._28{width:29.911040pt;}
._11{width:31.677440pt;}
._33{width:32.976000pt;}
._32{width:34.473600pt;}
._31{width:35.605120pt;}
._38{width:37.412480pt;}
._18{width:38.771840pt;}
._19{width:39.927680pt;}
._36{width:40.905600pt;}
._1f{width:42.121173pt;}
._1e{width:43.133440pt;}
._3a{width:44.631040pt;}
._39{width:45.601920pt;}
._3f{width:46.510080pt;}
._41{width:50.460160pt;}
._40{width:51.438080pt;}
._2f{width:52.933120pt;}
._30{width:54.228480pt;}
._16{width:55.429760pt;}
._17{width:56.332587pt;}
._21{width:59.272960pt;}
._20{width:60.213120pt;}
._22{width:61.141333pt;}
._26{width:63.789653pt;}
._27{width:65.002453pt;}
._3b{width:65.898453pt;}
._12{width:78.251520pt;}
._13{width:79.186560pt;}
._34{width:89.792000pt;}
._35{width:90.923520pt;}
._3d{width:208.867840pt;}
._3c{width:209.886080pt;}
._3e{width:211.429333pt;}
.fs0{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fsb{font-size:62.064349pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:106.880000pt;}
.fs9{font-size:128.000000pt;}
.fs2{font-size:149.120000pt;}
.fs3{font-size:192.000000pt;}
.fs7{font-size:384.000000pt;}
.y16{bottom:-25.760000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.479987pt;}
.y15{bottom:3.040000pt;}
.y17{bottom:6.880000pt;}
.y14{bottom:18.560000pt;}
.y18{bottom:38.400000pt;}
.y13{bottom:41.280000pt;}
.y2{bottom:43.360013pt;}
.y4{bottom:97.440000pt;}
.y19{bottom:115.040000pt;}
.y45{bottom:132.320000pt;}
.y44{bottom:136.960000pt;}
.y43{bottom:148.320000pt;}
.yfb{bottom:148.640000pt;}
.y6c{bottom:152.960000pt;}
.y117{bottom:161.466667pt;}
.y42{bottom:164.346667pt;}
.y6b{bottom:168.986667pt;}
.y116{bottom:175.866667pt;}
.y41{bottom:180.346667pt;}
.ycb{bottom:184.986667pt;}
.y40{bottom:196.346667pt;}
.yca{bottom:196.666667pt;}
.y115{bottom:199.866667pt;}
.y6a{bottom:200.986667pt;}
.y3f{bottom:212.346667pt;}
.y69{bottom:212.666667pt;}
.yec{bottom:213.466667pt;}
.y8a{bottom:216.986667pt;}
.yc9{bottom:218.746667pt;}
.y3e{bottom:228.346667pt;}
.y10c{bottom:228.666667pt;}
.yeb{bottom:232.506667pt;}
.y3d{bottom:232.986667pt;}
.yc8{bottom:237.786667pt;}
.y3c{bottom:244.346667pt;}
.y89{bottom:244.666667pt;}
.y114{bottom:245.786667pt;}
.yea{bottom:251.546667pt;}
.yc7{bottom:256.826667pt;}
.ye4{bottom:259.066667pt;}
.y3b{bottom:260.346667pt;}
.y75{bottom:261.786667pt;}
.y10b{bottom:263.386667pt;}
.y3a{bottom:264.986667pt;}
.y74{bottom:267.066667pt;}
.ye9{bottom:270.586667pt;}
.y113{bottom:275.386667pt;}
.yc6{bottom:275.866667pt;}
.y39{bottom:276.666667pt;}
.ye3{bottom:277.946667pt;}
.y68{bottom:278.586667pt;}
.y10a{bottom:282.426667pt;}
.y88{bottom:288.186667pt;}
.ye8{bottom:289.466667pt;}
.y87{bottom:293.466667pt;}
.y12{bottom:294.426667pt;}
.yc5{bottom:294.746667pt;}
.y67{bottom:297.626667pt;}
.y109{bottom:301.306667pt;}
.ya8{bottom:301.466667pt;}
.y112{bottom:304.986667pt;}
.ye1{bottom:307.706667pt;}
.ye7{bottom:308.506667pt;}
.ye2{bottom:312.986667pt;}
.yc4{bottom:313.786667pt;}
.y66{bottom:316.666667pt;}
.y38{bottom:319.866667pt;}
.ya7{bottom:320.506667pt;}
.ye0{bottom:326.586667pt;}
.ye6{bottom:327.546667pt;}
.yc3{bottom:332.826667pt;}
.y108{bottom:334.586667pt;}
.y111{bottom:334.746667pt;}
.y65{bottom:335.546667pt;}
.y37{bottom:338.906667pt;}
.ya6{bottom:339.546667pt;}
.ydf{bottom:345.626667pt;}
.yc2{bottom:351.866667pt;}
.ye5{bottom:354.106667pt;}
.y64{bottom:354.586667pt;}
.y36{bottom:357.946667pt;}
.ya5{bottom:358.426667pt;}
.y110{bottom:364.346667pt;}
.yde{bottom:364.666667pt;}
.y62{bottom:373.666667pt;}
.yc1{bottom:377.346667pt;}
.ya4{bottom:377.506667pt;}
.y63{bottom:378.946667pt;}
.ydd{bottom:383.746667pt;}
.y34{bottom:387.586667pt;}
.y107{bottom:389.666667pt;}
.y61{bottom:392.706667pt;}
.y35{bottom:392.866667pt;}
.y10f{bottom:394.146667pt;}
.ya3{bottom:396.546667pt;}
.ydc{bottom:402.626667pt;}
.y33{bottom:406.626667pt;}
.yc0{bottom:410.946667pt;}
.y60{bottom:411.586667pt;}
.ya2{bottom:415.586667pt;}
.y105{bottom:419.266667pt;}
.ydb{bottom:421.666667pt;}
.y10e{bottom:423.746667pt;}
.y106{bottom:424.546667pt;}
.y31{bottom:425.666667pt;}
.y5f{bottom:430.626667pt;}
.y32{bottom:430.946667pt;}
.ya1{bottom:434.466667pt;}
.y104{bottom:438.306667pt;}
.ybf{bottom:440.706667pt;}
.y30{bottom:444.546667pt;}
.y11{bottom:449.026667pt;}
.y5e{bottom:449.666667pt;}
.y10d{bottom:450.146667pt;}
.ya0{bottom:453.506667pt;}
.y103{bottom:457.346667pt;}
.ybe{bottom:459.746667pt;}
.y2f{bottom:463.586667pt;}
.y5d{bottom:468.706667pt;}
.y9f{bottom:472.546667pt;}
.y102{bottom:476.226667pt;}
.y10{bottom:478.626667pt;}
.y2e{bottom:482.626667pt;}
.y5b{bottom:487.586667pt;}
.yfa{bottom:489.186667pt;}
.y9e{bottom:491.586667pt;}
.y5c{bottom:492.866667pt;}
.y101{bottom:495.266667pt;}
.ybd{bottom:497.666667pt;}
.y2d{bottom:501.666667pt;}
.y59{bottom:506.626667pt;}
.yf9{bottom:508.226667pt;}
.yf{bottom:508.386667pt;}
.y9d{bottom:510.466667pt;}
.y5a{bottom:511.906667pt;}
.y100{bottom:514.306667pt;}
.ybc{bottom:516.706667pt;}
.y2c{bottom:520.546667pt;}
.y58{bottom:525.666667pt;}
.yf8{bottom:527.106667pt;}
.y9c{bottom:529.506667pt;}
.yff{bottom:533.186667pt;}
.ybb{bottom:535.586667pt;}
.ye{bottom:537.986667pt;}
.y57{bottom:544.546667pt;}
.yf7{bottom:546.146667pt;}
.y9b{bottom:548.546667pt;}
.y2a{bottom:550.306667pt;}
.yfe{bottom:552.226667pt;}
.yba{bottom:554.626667pt;}
.y2b{bottom:555.586667pt;}
.y56{bottom:563.586667pt;}
.yf6{bottom:565.186667pt;}
.y9a{bottom:567.426667pt;}
.y29{bottom:569.186667pt;}
.yd{bottom:571.266667pt;}
.yda{bottom:573.666667pt;}
.y55{bottom:582.626667pt;}
.yf5{bottom:584.226667pt;}
.yb8{bottom:584.386667pt;}
.y99{bottom:586.466667pt;}
.y28{bottom:588.226667pt;}
.yb9{bottom:589.693333pt;}
.yd9{bottom:592.733333pt;}
.yfd{bottom:600.893333pt;}
.y54{bottom:601.693333pt;}
.yf4{bottom:603.133333pt;}
.yb7{bottom:603.293333pt;}
.y98{bottom:605.533333pt;}
.yc{bottom:605.693333pt;}
.yfc{bottom:606.173333pt;}
.y27{bottom:607.293333pt;}
.yd8{bottom:611.613333pt;}
.yb6{bottom:622.333333pt;}
.y97{bottom:624.573333pt;}
.y26{bottom:626.333333pt;}
.yd7{bottom:630.653333pt;}
.y53{bottom:631.293333pt;}
.yf3{bottom:632.893333pt;}
.y73{bottom:636.573333pt;}
.yb5{bottom:641.373333pt;}
.y96{bottom:643.453333pt;}
.y25{bottom:645.213333pt;}
.yb{bottom:647.933333pt;}
.yd6{bottom:649.693333pt;}
.y52{bottom:650.333333pt;}
.yf2{bottom:651.773333pt;}
.y86{bottom:657.373333pt;}
.yb4{bottom:660.253333pt;}
.y95{bottom:662.493333pt;}
.y24{bottom:664.253333pt;}
.yd5{bottom:668.733333pt;}
.y51{bottom:669.373333pt;}
.yf1{bottom:670.813333pt;}
.y85{bottom:676.253333pt;}
.ya{bottom:678.973333pt;}
.yb3{bottom:679.293333pt;}
.y94{bottom:681.533333pt;}
.y23{bottom:683.293333pt;}
.yd4{bottom:687.613333pt;}
.y50{bottom:688.253333pt;}
.yf0{bottom:689.853333pt;}
.y84{bottom:695.293333pt;}
.y93{bottom:700.573333pt;}
.y22{bottom:702.333333pt;}
.y4f{bottom:707.293333pt;}
.yef{bottom:708.893333pt;}
.yb2{bottom:709.053333pt;}
.yd3{bottom:713.213333pt;}
.y83{bottom:714.333333pt;}
.y91{bottom:719.453333pt;}
.y21{bottom:721.213333pt;}
.y92{bottom:724.733333pt;}
.y4e{bottom:726.333333pt;}
.yb1{bottom:727.933333pt;}
.y82{bottom:733.373333pt;}
.y9{bottom:736.573333pt;}
.y90{bottom:738.493333pt;}
.y20{bottom:740.253333pt;}
.y4d{bottom:745.213333pt;}
.yd2{bottom:746.813333pt;}
.yb0{bottom:746.973333pt;}
.y81{bottom:752.253333pt;}
.yee{bottom:757.533333pt;}
.y1f{bottom:759.293333pt;}
.y72{bottom:759.613333pt;}
.y4c{bottom:764.253333pt;}
.yaf{bottom:766.013333pt;}
.y8f{bottom:768.093333pt;}
.y7f{bottom:771.293333pt;}
.yd0{bottom:776.413333pt;}
.y80{bottom:776.573333pt;}
.yd1{bottom:781.693333pt;}
.y4b{bottom:783.293333pt;}
.y8e{bottom:787.133333pt;}
.y1e{bottom:788.893333pt;}
.y7e{bottom:790.333333pt;}
.ycf{bottom:795.453333pt;}
.yae{bottom:795.613333pt;}
.y8{bottom:799.453333pt;}
.y4a{bottom:802.333333pt;}
.y8d{bottom:806.213333pt;}
.y7d{bottom:809.413333pt;}
.y71{bottom:814.533333pt;}
.yad{bottom:814.693333pt;}
.y1d{bottom:818.693333pt;}
.y8c{bottom:825.253333pt;}
.y7{bottom:827.013333pt;}
.y7c{bottom:828.293333pt;}
.yce{bottom:833.573333pt;}
.yac{bottom:833.733333pt;}
.y49{bottom:835.493333pt;}
.y70{bottom:844.133333pt;}
.y1c{bottom:845.093333pt;}
.y7a{bottom:847.333333pt;}
.ycd{bottom:852.453333pt;}
.y7b{bottom:852.613333pt;}
.y6f{bottom:863.173333pt;}
.y79{bottom:866.373333pt;}
.ycc{bottom:871.493333pt;}
.yab{bottom:871.653333pt;}
.y6{bottom:871.813333pt;}
.y6e{bottom:882.213333pt;}
.y1b{bottom:883.493333pt;}
.y78{bottom:885.253333pt;}
.y8b{bottom:887.493333pt;}
.y48{bottom:890.533333pt;}
.yaa{bottom:890.693333pt;}
.y6d{bottom:901.253333pt;}
.y77{bottom:904.293333pt;}
.ya9{bottom:909.733333pt;}
.y5{bottom:916.613333pt;}
.y47{bottom:920.133333pt;}
.y1a{bottom:921.893333pt;}
.yed{bottom:925.413333pt;}
.y76{bottom:935.173333pt;}
.y46{bottom:939.173333pt;}
.y3{bottom:956.773333pt;}
.h3{height:27.765625pt;}
.he{height:29.986875pt;}
.hb{height:41.648438pt;}
.h12{height:42.003750pt;}
.h11{height:46.090938pt;}
.hf{height:49.766250pt;}
.h4{height:51.088750pt;}
.h10{height:53.851732pt;}
.h7{height:55.531250pt;}
.h13{height:64.971562pt;}
.ha{height:67.840000pt;}
.hc{height:76.320000pt;}
.h2{height:81.760000pt;}
.h8{height:92.737187pt;}
.hd{height:111.062500pt;}
.h5{height:129.387812pt;}
.h6{height:166.593750pt;}
.h9{height:333.187500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:587.933333pt;}
.w2{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.119976pt;}
.x2{left:96.031988pt;}
.x17{left:98.751988pt;}
.x18{left:100.191988pt;}
.x27{left:101.471988pt;}
.x26{left:103.231988pt;}
.xc{left:104.671976pt;}
.x8{left:114.592000pt;}
.x12{left:138.746643pt;}
.x13{left:143.226655pt;}
.x4{left:153.306655pt;}
.x5{left:154.746655pt;}
.x35{left:160.346655pt;}
.x7{left:180.026655pt;}
.x36{left:181.946643pt;}
.xb{left:183.074667pt;}
.x3d{left:184.026655pt;}
.x37{left:189.146655pt;}
.x9{left:199.074667pt;}
.x3b{left:223.866643pt;}
.xa{left:228.514667pt;}
.x14{left:230.266643pt;}
.x3c{left:233.146655pt;}
.x15{left:234.906655pt;}
.xd{left:236.986655pt;}
.xe{left:244.506643pt;}
.xf{left:247.426655pt;}
.x1f{left:265.986643pt;}
.x20{left:270.306655pt;}
.x28{left:280.066643pt;}
.x16{left:288.066655pt;}
.x6{left:302.466655pt;}
.x1d{left:323.586643pt;}
.x1e{left:328.066655pt;}
.x2f{left:333.986655pt;}
.x30{left:340.706655pt;}
.x29{left:380.226655pt;}
.x11{left:389.026655pt;}
.x3a{left:393.186643pt;}
.x21{left:394.466643pt;}
.x3{left:396.866655pt;}
.x1b{left:399.906643pt;}
.x1c{left:404.546655pt;}
.x19{left:411.133310pt;}
.x2a{left:412.573322pt;}
.x1a{left:416.093322pt;}
.x2b{left:418.013322pt;}
.x34{left:446.653310pt;}
.x2d{left:453.373322pt;}
.x10{left:454.333322pt;}
.x22{left:469.693310pt;}
.x23{left:474.173322pt;}
.x24{left:551.133310pt;}
.x25{left:558.813322pt;}
.x2c{left:595.493322pt;}
.x2e{left:629.093322pt;}
.x31{left:633.733322pt;}
.x32{left:678.053310pt;}
.x33{left:685.893322pt;}
.x39{left:690.213310pt;}
.x38{left:698.053322pt;}
}




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