
    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_65906a1f078e18e541a1f29f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_cb3b9efd2d4e69e921cb58e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_8ec59fb092b4d18e1f37f3ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.033000;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_d0c79ffce4f931dc960c1dc6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_4748241e2f803ce61e4a7591.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9188007bc7f639c7e339d281.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.889000;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_117b3722038eebdbcdda7256.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.930000;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_d81970d852b99a2261ac4357.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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);}
.v3{vertical-align:-19.800000px;}
.v2{vertical-align:-15.841200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.840600px;}
.ls13{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.240000px;}
.ls9{letter-spacing:-0.220800px;}
.ls44{letter-spacing:-0.030000px;}
.ls7{letter-spacing:-0.024000px;}
.ls16{letter-spacing:-0.009600px;}
.lsa{letter-spacing:-0.006000px;}
.ls6{letter-spacing:-0.004800px;}
.lsb{letter-spacing:-0.003600px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.004800px;}
.ls0{letter-spacing:0.009600px;}
.ls14{letter-spacing:0.010800px;}
.ls45{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.019200px;}
.ls40{letter-spacing:0.036000px;}
.ls28{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.900000px;}
.lsf{letter-spacing:4.795200px;}
.ls2{letter-spacing:4.800000px;}
.ls11{letter-spacing:4.804800px;}
.ls4{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.006000px;}
.ls2a{letter-spacing:6.600000px;}
.ls26{letter-spacing:6.900000px;}
.ls1b{letter-spacing:6.906000px;}
.ls10{letter-spacing:9.537600px;}
.ls41{letter-spacing:10.752000px;}
.ls12{letter-spacing:10.800000px;}
.ls25{letter-spacing:10.814400px;}
.lse{letter-spacing:11.220000px;}
.lsd{letter-spacing:12.780000px;}
.ls27{letter-spacing:13.140000px;}
.ls29{letter-spacing:13.680000px;}
.lsc{letter-spacing:13.800000px;}
.ls19{letter-spacing:16.320000px;}
.ls43{letter-spacing:27.960000px;}
.ls17{letter-spacing:32.640000px;}
.ls42{letter-spacing:35.820000px;}
.ls2b{letter-spacing:364.296000px;}
.ls35{letter-spacing:504.456000px;}
.ls3f{letter-spacing:506.016000px;}
.ls2c{letter-spacing:531.720000px;}
.ls36{letter-spacing:533.280000px;}
.ls2e{letter-spacing:533.856000px;}
.ls38{letter-spacing:535.416000px;}
.ls31{letter-spacing:568.596000px;}
.ls3b{letter-spacing:570.156000px;}
.ls33{letter-spacing:571.860000px;}
.ls3d{letter-spacing:573.420000px;}
.ls2f{letter-spacing:576.576000px;}
.ls39{letter-spacing:578.136000px;}
.ls30{letter-spacing:579.276000px;}
.ls3a{letter-spacing:580.836000px;}
.ls32{letter-spacing:584.556000px;}
.ls3c{letter-spacing:586.116000px;}
.ls2d{letter-spacing:595.296000px;}
.ls37{letter-spacing:596.856000px;}
.ls34{letter-spacing:665.160000px;}
.ls24{letter-spacing:665.916000px;}
.ls3e{letter-spacing:666.720000px;}
.ls1c{letter-spacing:671.256000px;}
.ls1e{letter-spacing:693.420000px;}
.ls20{letter-spacing:709.260000px;}
.ls23{letter-spacing:754.620000px;}
.ls1d{letter-spacing:754.800000px;}
.ls22{letter-spacing:756.636000px;}
.ls1f{letter-spacing:760.080000px;}
.ls21{letter-spacing:786.156000px;}
.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;}
}
.ws73{word-spacing:-15.000000px;}
.ws25{word-spacing:-12.019200px;}
.ws4f{word-spacing:-12.004800px;}
.ws2{word-spacing:-12.000000px;}
.ws61{word-spacing:-11.995200px;}
.ws23{word-spacing:-9.010800px;}
.ws1{word-spacing:-9.000000px;}
.ws69{word-spacing:-7.986000px;}
.ws48{word-spacing:-5.880000px;}
.ws51{word-spacing:-5.700000px;}
.ws1e{word-spacing:-5.100000px;}
.ws2d{word-spacing:-4.742400px;}
.ws65{word-spacing:-4.740000px;}
.ws2c{word-spacing:-4.737600px;}
.ws5f{word-spacing:-4.200000px;}
.ws70{word-spacing:-4.020000px;}
.ws1b{word-spacing:-3.960000px;}
.wsa{word-spacing:-3.897600px;}
.ws14{word-spacing:-3.660000px;}
.wsc{word-spacing:-3.542400px;}
.ws13{word-spacing:-3.420000px;}
.ws59{word-spacing:-3.120000px;}
.ws8{word-spacing:-3.057600px;}
.ws72{word-spacing:-2.940000px;}
.ws6b{word-spacing:-2.880000px;}
.ws4c{word-spacing:-2.700000px;}
.ws26{word-spacing:-2.630400px;}
.ws43{word-spacing:-2.462400px;}
.ws44{word-spacing:-2.457600px;}
.ws6d{word-spacing:-2.400000px;}
.ws1d{word-spacing:-2.340000px;}
.ws54{word-spacing:-2.220000px;}
.ws7b{word-spacing:-2.160000px;}
.ws68{word-spacing:-1.974000px;}
.ws3c{word-spacing:-1.857600px;}
.wsf{word-spacing:-1.800000px;}
.wsd{word-spacing:-1.670400px;}
.ws0{word-spacing:-1.500000px;}
.ws31{word-spacing:-1.257600px;}
.ws5{word-spacing:-1.200000px;}
.ws7c{word-spacing:-1.195200px;}
.ws16{word-spacing:-1.080000px;}
.ws9{word-spacing:-0.960000px;}
.ws78{word-spacing:-0.902400px;}
.ws21{word-spacing:-0.900000px;}
.ws3d{word-spacing:-0.840000px;}
.ws22{word-spacing:-0.838800px;}
.ws3f{word-spacing:-0.782400px;}
.ws3e{word-spacing:-0.777600px;}
.ws7d{word-spacing:-0.662400px;}
.ws80{word-spacing:-0.417600px;}
.ws47{word-spacing:-0.402000px;}
.wsb{word-spacing:-0.297600px;}
.ws3b{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.240000px;}
.ws32{word-spacing:-0.177600px;}
.ws19{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws77{word-spacing:0.006000px;}
.ws57{word-spacing:0.120000px;}
.ws38{word-spacing:0.172800px;}
.ws37{word-spacing:0.182400px;}
.ws46{word-spacing:0.235200px;}
.ws7f{word-spacing:0.240000px;}
.ws3a{word-spacing:0.360000px;}
.wse{word-spacing:0.537600px;}
.ws5a{word-spacing:0.600000px;}
.ws34{word-spacing:0.657600px;}
.ws33{word-spacing:0.662400px;}
.ws36{word-spacing:0.777600px;}
.ws58{word-spacing:0.780000px;}
.ws35{word-spacing:0.782400px;}
.ws6{word-spacing:0.960000px;}
.ws4a{word-spacing:1.080000px;}
.ws66{word-spacing:1.260000px;}
.ws56{word-spacing:1.320000px;}
.ws49{word-spacing:1.560000px;}
.ws4b{word-spacing:1.740000px;}
.ws1c{word-spacing:1.800000px;}
.ws39{word-spacing:1.857600px;}
.ws27{word-spacing:2.064000px;}
.ws41{word-spacing:2.160000px;}
.ws2f{word-spacing:2.280000px;}
.ws76{word-spacing:2.538000px;}
.ws18{word-spacing:2.640000px;}
.ws40{word-spacing:2.760000px;}
.ws5d{word-spacing:2.880000px;}
.ws74{word-spacing:3.072000px;}
.ws24{word-spacing:3.099600px;}
.ws10{word-spacing:3.302400px;}
.ws11{word-spacing:3.720000px;}
.ws3{word-spacing:3.729600px;}
.ws79{word-spacing:3.897600px;}
.ws15{word-spacing:3.960000px;}
.ws30{word-spacing:4.257600px;}
.ws64{word-spacing:4.320000px;}
.ws67{word-spacing:4.500000px;}
.ws6a{word-spacing:5.160000px;}
.ws7{word-spacing:5.462400px;}
.ws7a{word-spacing:5.640000px;}
.ws6f{word-spacing:5.700000px;}
.ws17{word-spacing:6.300000px;}
.ws45{word-spacing:6.897600px;}
.ws7e{word-spacing:7.017600px;}
.ws60{word-spacing:7.020000px;}
.ws53{word-spacing:7.320000px;}
.ws50{word-spacing:8.280000px;}
.ws75{word-spacing:8.598000px;}
.ws63{word-spacing:9.960000px;}
.ws5e{word-spacing:10.080000px;}
.ws6e{word-spacing:10.440000px;}
.ws12{word-spacing:14.100000px;}
.ws1f{word-spacing:15.540000px;}
.ws42{word-spacing:15.960000px;}
.ws20{word-spacing:16.560000px;}
.ws71{word-spacing:16.620000px;}
.ws52{word-spacing:17.700000px;}
.ws5b{word-spacing:17.820000px;}
.ws1a{word-spacing:20.820000px;}
.ws55{word-spacing:23.640000px;}
.ws4d{word-spacing:29.160000px;}
.ws5c{word-spacing:29.220000px;}
.ws6c{word-spacing:33.240000px;}
.ws28{word-spacing:295.992000px;}
.ws2a{word-spacing:339.422400px;}
.ws62{word-spacing:391.910400px;}
.ws29{word-spacing:531.360000px;}
.ws4e{word-spacing:581.150400px;}
.ws2b{word-spacing:659.270400px;}
._a{margin-left:-9.312000px;}
._5{margin-left:-6.006000px;}
._7{margin-left:-4.528800px;}
._6{margin-left:-3.414000px;}
._35{margin-left:-2.400000px;}
._0{margin-left:-1.200000px;}
._1{width:1.680000px;}
._3{width:3.662400px;}
._36{width:5.100000px;}
._3c{width:6.300000px;}
._8{width:10.718400px;}
._3a{width:11.775600px;}
._2{width:12.792000px;}
._38{width:13.800000px;}
._39{width:16.446000px;}
._4{width:17.754000px;}
._37{width:20.046000px;}
._9{width:21.600000px;}
._1b{width:25.854000px;}
._3d{width:28.026000px;}
._1a{width:29.100000px;}
._2b{width:32.220000px;}
._3b{width:35.814000px;}
._26{width:152.457600px;}
._23{width:176.457600px;}
._20{width:202.257600px;}
._10{width:271.982400px;}
._22{width:302.515200px;}
._d{width:307.982400px;}
._25{width:315.715200px;}
._2d{width:339.996000px;}
._19{width:356.582400px;}
._31{width:364.051200px;}
._1f{width:384.000000px;}
._29{width:408.360000px;}
._2c{width:412.159200px;}
._32{width:413.668800px;}
._12{width:417.960000px;}
._30{width:422.760000px;}
._2e{width:436.212000px;}
._33{width:437.649600px;}
._18{width:455.280000px;}
._17{width:457.920000px;}
._c{width:481.977600px;}
._1c{width:490.828800px;}
._f{width:500.640000px;}
._28{width:501.782400px;}
._24{width:512.520000px;}
._1d{width:514.814400px;}
._2f{width:519.026400px;}
._34{width:520.538400px;}
._21{width:525.782400px;}
._1e{width:538.884000px;}
._11{width:545.280000px;}
._27{width:552.422400px;}
._e{width:555.960000px;}
._2a{width:576.422400px;}
._15{width:618.067200px;}
._13{width:676.684800px;}
._16{width:710.644800px;}
._14{width:726.662400px;}
._b{width:772.800000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:36.000000px;}
.fs3{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.090000px;}
.y37{bottom:103.695300px;}
.y63{bottom:103.755000px;}
.y3b{bottom:103.995150px;}
.y84{bottom:105.570150px;}
.yb2{bottom:107.085150px;}
.y36{bottom:112.695300px;}
.y3a{bottom:112.995000px;}
.y62{bottom:119.730000px;}
.y83{bottom:121.560150px;}
.y35{bottom:121.695300px;}
.y39{bottom:121.995000px;}
.yb1{bottom:123.060150px;}
.y34{bottom:130.695300px;}
.y38{bottom:130.995000px;}
.y61{bottom:135.720000px;}
.y82{bottom:137.550150px;}
.yb0{bottom:139.050150px;}
.y33{bottom:142.695000px;}
.y60{bottom:151.695000px;}
.y81{bottom:153.525150px;}
.yaf{bottom:155.025150px;}
.y31{bottom:165.090000px;}
.y5f{bottom:167.685000px;}
.y80{bottom:169.515150px;}
.yae{bottom:171.015150px;}
.y30{bottom:181.065000px;}
.y5e{bottom:183.660000px;}
.y7f{bottom:185.490150px;}
.yad{bottom:186.990150px;}
.y2f{bottom:197.055000px;}
.y5d{bottom:199.650000px;}
.y7e{bottom:201.480150px;}
.yac{bottom:202.980000px;}
.y2e{bottom:213.030000px;}
.y5c{bottom:215.640000px;}
.y7d{bottom:217.455150px;}
.yab{bottom:218.955000px;}
.y2d{bottom:229.020000px;}
.y7c{bottom:233.445150px;}
.yaa{bottom:234.945150px;}
.y5b{bottom:237.615000px;}
.y2c{bottom:244.995000px;}
.y7b{bottom:249.420150px;}
.ya9{bottom:250.920150px;}
.y2b{bottom:260.985000px;}
.y7a{bottom:265.410150px;}
.y5a{bottom:266.386800px;}
.ya8{bottom:266.910150px;}
.yf5{bottom:268.306350px;}
.y2a{bottom:276.960000px;}
.y59{bottom:279.166800px;}
.yf4{bottom:281.100750px;}
.y79{bottom:281.385150px;}
.ya7{bottom:282.885150px;}
.y58{bottom:291.961200px;}
.y29{bottom:292.950000px;}
.yf3{bottom:293.880750px;}
.y78{bottom:297.375150px;}
.y57{bottom:304.741200px;}
.yf2{bottom:306.676800px;}
.y28{bottom:308.925000px;}
.y77{bottom:313.365150px;}
.y56{bottom:317.535600px;}
.yf1{bottom:319.456800px;}
.ycb{bottom:320.190150px;}
.y27{bottom:324.915000px;}
.y55{bottom:330.315600px;}
.yf0{bottom:332.251200px;}
.yca{bottom:334.800150px;}
.y26{bottom:340.905000px;}
.y54{bottom:343.110000px;}
.yef{bottom:345.031200px;}
.ya1{bottom:349.484400px;}
.y53{bottom:355.890000px;}
.y25{bottom:356.880000px;}
.yee{bottom:357.826800px;}
.yc7{bottom:358.230150px;}
.ya0{bottom:364.110000px;}
.y52{bottom:368.685600px;}
.yed{bottom:370.606800px;}
.y24{bottom:372.870000px;}
.yc6{bottom:373.230000px;}
.y51{bottom:381.465600px;}
.yec{bottom:383.386800px;}
.y94{bottom:387.015000px;}
.yc5{bottom:388.230000px;}
.y23{bottom:388.845000px;}
.y50{bottom:394.245600px;}
.yeb{bottom:396.181200px;}
.y93{bottom:402.015150px;}
.yc4{bottom:403.230150px;}
.y22{bottom:404.835000px;}
.y4f{bottom:407.040000px;}
.yea{bottom:408.961200px;}
.y92{bottom:417.015000px;}
.yc3{bottom:418.230000px;}
.y4e{bottom:419.821200px;}
.y21{bottom:420.810000px;}
.ye9{bottom:421.755600px;}
.y91{bottom:432.015000px;}
.y4d{bottom:432.615600px;}
.yc2{bottom:433.230000px;}
.ye8{bottom:434.535600px;}
.y20{bottom:436.800000px;}
.y4c{bottom:445.395600px;}
.y90{bottom:447.015150px;}
.ye7{bottom:447.330000px;}
.yc1{bottom:448.230150px;}
.y1f{bottom:452.775000px;}
.y4b{bottom:458.190000px;}
.ye6{bottom:460.110000px;}
.y8f{bottom:462.015000px;}
.yc0{bottom:463.230000px;}
.y4a{bottom:470.970000px;}
.ye5{bottom:472.889400px;}
.y8e{bottom:477.015000px;}
.y1e{bottom:477.766200px;}
.ybf{bottom:478.230000px;}
.y49{bottom:483.750000px;}
.ye4{bottom:485.685000px;}
.y8d{bottom:492.015150px;}
.ybe{bottom:493.230000px;}
.y1d{bottom:495.046200px;}
.ye3{bottom:498.465000px;}
.y8c{bottom:507.015600px;}
.y1c{bottom:507.841800px;}
.ye2{bottom:517.259400px;}
.y71{bottom:519.450000px;}
.y1b{bottom:520.621800px;}
.y8b{bottom:522.015600px;}
.ybd{bottom:523.230000px;}
.y1a{bottom:533.417400px;}
.y70{bottom:534.450000px;}
.ybc{bottom:538.230150px;}
.ye1{bottom:542.835000px;}
.y86{bottom:543.930000px;}
.y19{bottom:546.197400px;}
.y6f{bottom:549.450000px;}
.ybb{bottom:553.230150px;}
.ye0{bottom:555.615000px;}
.y18{bottom:558.977400px;}
.y6e{bottom:564.450000px;}
.yba{bottom:568.230000px;}
.y17{bottom:571.771800px;}
.y89{bottom:571.890000px;}
.ydf{bottom:574.395000px;}
.y6d{bottom:579.450000px;}
.yb9{bottom:583.230150px;}
.y16{bottom:584.551800px;}
.y88{bottom:586.515600px;}
.y6c{bottom:594.450000px;}
.y15{bottom:597.346200px;}
.yb8{bottom:598.230150px;}
.y87{bottom:601.125600px;}
.yde{bottom:603.165150px;}
.y6b{bottom:609.450000px;}
.y14{bottom:610.126200px;}
.yb7{bottom:613.230000px;}
.ydd{bottom:619.155150px;}
.y9f{bottom:619.275000px;}
.y13{bottom:622.920600px;}
.y6a{bottom:624.450000px;}
.yb6{bottom:628.230000px;}
.y9e{bottom:634.275000px;}
.ydc{bottom:635.145150px;}
.y12{bottom:635.700600px;}
.y69{bottom:639.450000px;}
.yb5{bottom:643.230150px;}
.y11{bottom:648.495000px;}
.y9d{bottom:649.275000px;}
.ydb{bottom:651.120150px;}
.y68{bottom:654.450000px;}
.yb4{bottom:658.230000px;}
.y10{bottom:661.275000px;}
.y9c{bottom:664.275000px;}
.yda{bottom:667.110150px;}
.y67{bottom:669.450000px;}
.yb3{bottom:673.230000px;}
.yf{bottom:674.055000px;}
.y9b{bottom:679.275000px;}
.yd9{bottom:683.085150px;}
.y66{bottom:684.450000px;}
.yc9{bottom:692.310000px;}
.ye{bottom:692.849400px;}
.y9a{bottom:694.275000px;}
.yd8{bottom:699.075150px;}
.y65{bottom:699.450000px;}
.yd{bottom:705.629400px;}
.yc8{bottom:706.935600px;}
.y99{bottom:709.275000px;}
.yd7{bottom:715.050150px;}
.y72{bottom:716.084400px;}
.yc{bottom:718.425000px;}
.y98{bottom:724.275000px;}
.yd6{bottom:731.040150px;}
.ya6{bottom:736.425150px;}
.yb{bottom:737.205000px;}
.y97{bottom:739.275000px;}
.y48{bottom:739.485600px;}
.yd5{bottom:747.015150px;}
.y47{bottom:752.280000px;}
.ya5{bottom:752.400150px;}
.y96{bottom:754.275000px;}
.ya{bottom:762.780600px;}
.yd4{bottom:763.005150px;}
.y46{bottom:765.060600px;}
.ya4{bottom:768.390150px;}
.y95{bottom:769.275000px;}
.y9{bottom:775.560600px;}
.y45{bottom:777.840600px;}
.yd3{bottom:778.980150px;}
.ya3{bottom:784.365150px;}
.y8a{bottom:789.870000px;}
.y44{bottom:790.635000px;}
.yd2{bottom:794.970150px;}
.y8{bottom:798.315000px;}
.ya2{bottom:800.355150px;}
.y43{bottom:803.413200px;}
.yd1{bottom:810.960150px;}
.y7{bottom:811.095000px;}
.y42{bottom:816.208800px;}
.y76{bottom:816.330150px;}
.y6{bottom:819.930150px;}
.yd0{bottom:826.935150px;}
.y41{bottom:828.988800px;}
.y75{bottom:832.320150px;}
.y5{bottom:836.670450px;}
.y40{bottom:841.784400px;}
.ycf{bottom:842.925150px;}
.y74{bottom:848.295150px;}
.y4{bottom:851.505000px;}
.y3f{bottom:854.564400px;}
.yce{bottom:858.900150px;}
.y73{bottom:864.285150px;}
.y3e{bottom:867.344400px;}
.y3d{bottom:880.140000px;}
.y3{bottom:880.275150px;}
.ycd{bottom:882.390150px;}
.y2{bottom:896.250150px;}
.ycc{bottom:898.365150px;}
.y3c{bottom:898.920000px;}
.y64{bottom:932.385000px;}
.y85{bottom:932.385150px;}
.y32{bottom:934.635000px;}
.hc{height:26.064000px;}
.h6{height:29.340000px;}
.h4{height:31.587891px;}
.h8{height:32.531250px;}
.h7{height:33.328125px;}
.hb{height:34.752000px;}
.h9{height:39.120000px;}
.h2{height:40.664062px;}
.h5{height:42.117188px;}
.h14{height:43.440000px;}
.h3{height:45.180600px;}
.h16{height:47.420691px;}
.h11{height:47.425491px;}
.h12{height:47.427291px;}
.he{height:47.427891px;}
.h10{height:47.428491px;}
.h15{height:47.430291px;}
.hd{height:47.435691px;}
.hf{height:48.900000px;}
.ha{height:52.646484px;}
.h13{height:52.647084px;}
.h1{height:998.910000px;}
.h0{height:999.000000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.xe{left:80.355000px;}
.x12{left:89.295000px;}
.xd{left:93.120000px;}
.x16{left:95.145000px;}
.x19{left:98.745000px;}
.x1b{left:112.455000px;}
.xb{left:118.635600px;}
.xc{left:131.385600px;}
.x2{left:139.350000px;}
.x1{left:146.325000px;}
.x13{left:153.855000px;}
.x7{left:164.370000px;}
.x4{left:169.680300px;}
.x6{left:191.370000px;}
.x3{left:196.305000px;}
.x15{left:215.415000px;}
.x1a{left:259.800000px;}
.x11{left:278.220000px;}
.x8{left:279.840000px;}
.x18{left:287.760000px;}
.x9{left:291.825600px;}
.x5{left:292.845600px;}
.x1c{left:303.030000px;}
.x1d{left:322.380000px;}
.xa{left:328.035600px;}
.x17{left:329.895000px;}
.x10{left:399.254700px;}
.xf{left:449.520000px;}
.x14{left:612.855000px;}
@media print{
.v3{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.081067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.080533pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls9{letter-spacing:-0.196267pt;}
.ls44{letter-spacing:-0.026667pt;}
.ls7{letter-spacing:-0.021333pt;}
.ls16{letter-spacing:-0.008533pt;}
.lsa{letter-spacing:-0.005333pt;}
.ls6{letter-spacing:-0.004267pt;}
.lsb{letter-spacing:-0.003200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.004267pt;}
.ls0{letter-spacing:0.008533pt;}
.ls14{letter-spacing:0.009600pt;}
.ls45{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.017067pt;}
.ls40{letter-spacing:0.032000pt;}
.ls28{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.800000pt;}
.lsf{letter-spacing:4.262400pt;}
.ls2{letter-spacing:4.266667pt;}
.ls11{letter-spacing:4.270933pt;}
.ls4{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.338667pt;}
.ls2a{letter-spacing:5.866667pt;}
.ls26{letter-spacing:6.133333pt;}
.ls1b{letter-spacing:6.138667pt;}
.ls10{letter-spacing:8.477867pt;}
.ls41{letter-spacing:9.557333pt;}
.ls12{letter-spacing:9.600000pt;}
.ls25{letter-spacing:9.612800pt;}
.lse{letter-spacing:9.973333pt;}
.lsd{letter-spacing:11.360000pt;}
.ls27{letter-spacing:11.680000pt;}
.ls29{letter-spacing:12.160000pt;}
.lsc{letter-spacing:12.266667pt;}
.ls19{letter-spacing:14.506667pt;}
.ls43{letter-spacing:24.853333pt;}
.ls17{letter-spacing:29.013333pt;}
.ls42{letter-spacing:31.840000pt;}
.ls2b{letter-spacing:323.818667pt;}
.ls35{letter-spacing:448.405333pt;}
.ls3f{letter-spacing:449.792000pt;}
.ls2c{letter-spacing:472.640000pt;}
.ls36{letter-spacing:474.026667pt;}
.ls2e{letter-spacing:474.538667pt;}
.ls38{letter-spacing:475.925333pt;}
.ls31{letter-spacing:505.418667pt;}
.ls3b{letter-spacing:506.805333pt;}
.ls33{letter-spacing:508.320000pt;}
.ls3d{letter-spacing:509.706667pt;}
.ls2f{letter-spacing:512.512000pt;}
.ls39{letter-spacing:513.898667pt;}
.ls30{letter-spacing:514.912000pt;}
.ls3a{letter-spacing:516.298667pt;}
.ls32{letter-spacing:519.605333pt;}
.ls3c{letter-spacing:520.992000pt;}
.ls2d{letter-spacing:529.152000pt;}
.ls37{letter-spacing:530.538667pt;}
.ls34{letter-spacing:591.253333pt;}
.ls24{letter-spacing:591.925333pt;}
.ls3e{letter-spacing:592.640000pt;}
.ls1c{letter-spacing:596.672000pt;}
.ls1e{letter-spacing:616.373333pt;}
.ls20{letter-spacing:630.453333pt;}
.ls23{letter-spacing:670.773333pt;}
.ls1d{letter-spacing:670.933333pt;}
.ls22{letter-spacing:672.565333pt;}
.ls1f{letter-spacing:675.626667pt;}
.ls21{letter-spacing:698.805333pt;}
.ws73{word-spacing:-13.333333pt;}
.ws25{word-spacing:-10.683733pt;}
.ws4f{word-spacing:-10.670933pt;}
.ws2{word-spacing:-10.666667pt;}
.ws61{word-spacing:-10.662400pt;}
.ws23{word-spacing:-8.009600pt;}
.ws1{word-spacing:-8.000000pt;}
.ws69{word-spacing:-7.098667pt;}
.ws48{word-spacing:-5.226667pt;}
.ws51{word-spacing:-5.066667pt;}
.ws1e{word-spacing:-4.533333pt;}
.ws2d{word-spacing:-4.215467pt;}
.ws65{word-spacing:-4.213333pt;}
.ws2c{word-spacing:-4.211200pt;}
.ws5f{word-spacing:-3.733333pt;}
.ws70{word-spacing:-3.573333pt;}
.ws1b{word-spacing:-3.520000pt;}
.wsa{word-spacing:-3.464533pt;}
.ws14{word-spacing:-3.253333pt;}
.wsc{word-spacing:-3.148800pt;}
.ws13{word-spacing:-3.040000pt;}
.ws59{word-spacing:-2.773333pt;}
.ws8{word-spacing:-2.717867pt;}
.ws72{word-spacing:-2.613333pt;}
.ws6b{word-spacing:-2.560000pt;}
.ws4c{word-spacing:-2.400000pt;}
.ws26{word-spacing:-2.338133pt;}
.ws43{word-spacing:-2.188800pt;}
.ws44{word-spacing:-2.184533pt;}
.ws6d{word-spacing:-2.133333pt;}
.ws1d{word-spacing:-2.080000pt;}
.ws54{word-spacing:-1.973333pt;}
.ws7b{word-spacing:-1.920000pt;}
.ws68{word-spacing:-1.754667pt;}
.ws3c{word-spacing:-1.651200pt;}
.wsf{word-spacing:-1.600000pt;}
.wsd{word-spacing:-1.484800pt;}
.ws0{word-spacing:-1.333333pt;}
.ws31{word-spacing:-1.117867pt;}
.ws5{word-spacing:-1.066667pt;}
.ws7c{word-spacing:-1.062400pt;}
.ws16{word-spacing:-0.960000pt;}
.ws9{word-spacing:-0.853333pt;}
.ws78{word-spacing:-0.802133pt;}
.ws21{word-spacing:-0.800000pt;}
.ws3d{word-spacing:-0.746667pt;}
.ws22{word-spacing:-0.745600pt;}
.ws3f{word-spacing:-0.695467pt;}
.ws3e{word-spacing:-0.691200pt;}
.ws7d{word-spacing:-0.588800pt;}
.ws80{word-spacing:-0.371200pt;}
.ws47{word-spacing:-0.357333pt;}
.wsb{word-spacing:-0.264533pt;}
.ws3b{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.213333pt;}
.ws32{word-spacing:-0.157867pt;}
.ws19{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws77{word-spacing:0.005333pt;}
.ws57{word-spacing:0.106667pt;}
.ws38{word-spacing:0.153600pt;}
.ws37{word-spacing:0.162133pt;}
.ws46{word-spacing:0.209067pt;}
.ws7f{word-spacing:0.213333pt;}
.ws3a{word-spacing:0.320000pt;}
.wse{word-spacing:0.477867pt;}
.ws5a{word-spacing:0.533333pt;}
.ws34{word-spacing:0.584533pt;}
.ws33{word-spacing:0.588800pt;}
.ws36{word-spacing:0.691200pt;}
.ws58{word-spacing:0.693333pt;}
.ws35{word-spacing:0.695467pt;}
.ws6{word-spacing:0.853333pt;}
.ws4a{word-spacing:0.960000pt;}
.ws66{word-spacing:1.120000pt;}
.ws56{word-spacing:1.173333pt;}
.ws49{word-spacing:1.386667pt;}
.ws4b{word-spacing:1.546667pt;}
.ws1c{word-spacing:1.600000pt;}
.ws39{word-spacing:1.651200pt;}
.ws27{word-spacing:1.834667pt;}
.ws41{word-spacing:1.920000pt;}
.ws2f{word-spacing:2.026667pt;}
.ws76{word-spacing:2.256000pt;}
.ws18{word-spacing:2.346667pt;}
.ws40{word-spacing:2.453333pt;}
.ws5d{word-spacing:2.560000pt;}
.ws74{word-spacing:2.730667pt;}
.ws24{word-spacing:2.755200pt;}
.ws10{word-spacing:2.935467pt;}
.ws11{word-spacing:3.306667pt;}
.ws3{word-spacing:3.315200pt;}
.ws79{word-spacing:3.464533pt;}
.ws15{word-spacing:3.520000pt;}
.ws30{word-spacing:3.784533pt;}
.ws64{word-spacing:3.840000pt;}
.ws67{word-spacing:4.000000pt;}
.ws6a{word-spacing:4.586667pt;}
.ws7{word-spacing:4.855467pt;}
.ws7a{word-spacing:5.013333pt;}
.ws6f{word-spacing:5.066667pt;}
.ws17{word-spacing:5.600000pt;}
.ws45{word-spacing:6.131200pt;}
.ws7e{word-spacing:6.237867pt;}
.ws60{word-spacing:6.240000pt;}
.ws53{word-spacing:6.506667pt;}
.ws50{word-spacing:7.360000pt;}
.ws75{word-spacing:7.642667pt;}
.ws63{word-spacing:8.853333pt;}
.ws5e{word-spacing:8.960000pt;}
.ws6e{word-spacing:9.280000pt;}
.ws12{word-spacing:12.533333pt;}
.ws1f{word-spacing:13.813333pt;}
.ws42{word-spacing:14.186667pt;}
.ws20{word-spacing:14.720000pt;}
.ws71{word-spacing:14.773333pt;}
.ws52{word-spacing:15.733333pt;}
.ws5b{word-spacing:15.840000pt;}
.ws1a{word-spacing:18.506667pt;}
.ws55{word-spacing:21.013333pt;}
.ws4d{word-spacing:25.920000pt;}
.ws5c{word-spacing:25.973333pt;}
.ws6c{word-spacing:29.546667pt;}
.ws28{word-spacing:263.104000pt;}
.ws2a{word-spacing:301.708800pt;}
.ws62{word-spacing:348.364800pt;}
.ws29{word-spacing:472.320000pt;}
.ws4e{word-spacing:516.578133pt;}
.ws2b{word-spacing:586.018133pt;}
._a{margin-left:-8.277333pt;}
._5{margin-left:-5.338667pt;}
._7{margin-left:-4.025600pt;}
._6{margin-left:-3.034667pt;}
._35{margin-left:-2.133333pt;}
._0{margin-left:-1.066667pt;}
._1{width:1.493333pt;}
._3{width:3.255467pt;}
._36{width:4.533333pt;}
._3c{width:5.600000pt;}
._8{width:9.527467pt;}
._3a{width:10.467200pt;}
._2{width:11.370667pt;}
._38{width:12.266667pt;}
._39{width:14.618667pt;}
._4{width:15.781333pt;}
._37{width:17.818667pt;}
._9{width:19.200000pt;}
._1b{width:22.981333pt;}
._3d{width:24.912000pt;}
._1a{width:25.866667pt;}
._2b{width:28.640000pt;}
._3b{width:31.834667pt;}
._26{width:135.517867pt;}
._23{width:156.851200pt;}
._20{width:179.784533pt;}
._10{width:241.762133pt;}
._22{width:268.902400pt;}
._d{width:273.762133pt;}
._25{width:280.635733pt;}
._2d{width:302.218667pt;}
._19{width:316.962133pt;}
._31{width:323.601067pt;}
._1f{width:341.333333pt;}
._29{width:362.986667pt;}
._2c{width:366.363733pt;}
._32{width:367.705600pt;}
._12{width:371.520000pt;}
._30{width:375.786667pt;}
._2e{width:387.744000pt;}
._33{width:389.021867pt;}
._18{width:404.693333pt;}
._17{width:407.040000pt;}
._c{width:428.424533pt;}
._1c{width:436.292267pt;}
._f{width:445.013333pt;}
._28{width:446.028800pt;}
._24{width:455.573333pt;}
._1d{width:457.612800pt;}
._2f{width:461.356800pt;}
._34{width:462.700800pt;}
._21{width:467.362133pt;}
._1e{width:479.008000pt;}
._11{width:484.693333pt;}
._27{width:491.042133pt;}
._e{width:494.186667pt;}
._2a{width:512.375467pt;}
._15{width:549.393067pt;}
._13{width:601.497600pt;}
._16{width:631.684267pt;}
._14{width:645.922133pt;}
._b{width:686.933333pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.080000pt;}
.y37{bottom:92.173600pt;}
.y63{bottom:92.226667pt;}
.y3b{bottom:92.440133pt;}
.y84{bottom:93.840133pt;}
.yb2{bottom:95.186800pt;}
.y36{bottom:100.173600pt;}
.y3a{bottom:100.440000pt;}
.y62{bottom:106.426667pt;}
.y83{bottom:108.053467pt;}
.y35{bottom:108.173600pt;}
.y39{bottom:108.440000pt;}
.yb1{bottom:109.386800pt;}
.y34{bottom:116.173600pt;}
.y38{bottom:116.440000pt;}
.y61{bottom:120.640000pt;}
.y82{bottom:122.266800pt;}
.yb0{bottom:123.600133pt;}
.y33{bottom:126.840000pt;}
.y60{bottom:134.840000pt;}
.y81{bottom:136.466800pt;}
.yaf{bottom:137.800133pt;}
.y31{bottom:146.746667pt;}
.y5f{bottom:149.053333pt;}
.y80{bottom:150.680133pt;}
.yae{bottom:152.013467pt;}
.y30{bottom:160.946667pt;}
.y5e{bottom:163.253333pt;}
.y7f{bottom:164.880133pt;}
.yad{bottom:166.213467pt;}
.y2f{bottom:175.160000pt;}
.y5d{bottom:177.466667pt;}
.y7e{bottom:179.093467pt;}
.yac{bottom:180.426667pt;}
.y2e{bottom:189.360000pt;}
.y5c{bottom:191.680000pt;}
.y7d{bottom:193.293467pt;}
.yab{bottom:194.626667pt;}
.y2d{bottom:203.573333pt;}
.y7c{bottom:207.506800pt;}
.yaa{bottom:208.840133pt;}
.y5b{bottom:211.213333pt;}
.y2c{bottom:217.773333pt;}
.y7b{bottom:221.706800pt;}
.ya9{bottom:223.040133pt;}
.y2b{bottom:231.986667pt;}
.y7a{bottom:235.920133pt;}
.y5a{bottom:236.788267pt;}
.ya8{bottom:237.253467pt;}
.yf5{bottom:238.494533pt;}
.y2a{bottom:246.186667pt;}
.y59{bottom:248.148267pt;}
.yf4{bottom:249.867333pt;}
.y79{bottom:250.120133pt;}
.ya7{bottom:251.453467pt;}
.y58{bottom:259.521067pt;}
.y29{bottom:260.400000pt;}
.yf3{bottom:261.227333pt;}
.y78{bottom:264.333467pt;}
.y57{bottom:270.881067pt;}
.yf2{bottom:272.601600pt;}
.y28{bottom:274.600000pt;}
.y77{bottom:278.546800pt;}
.y56{bottom:282.253867pt;}
.yf1{bottom:283.961600pt;}
.ycb{bottom:284.613467pt;}
.y27{bottom:288.813333pt;}
.y55{bottom:293.613867pt;}
.yf0{bottom:295.334400pt;}
.yca{bottom:297.600133pt;}
.y26{bottom:303.026667pt;}
.y54{bottom:304.986667pt;}
.yef{bottom:306.694400pt;}
.ya1{bottom:310.652800pt;}
.y53{bottom:316.346667pt;}
.y25{bottom:317.226667pt;}
.yee{bottom:318.068267pt;}
.yc7{bottom:318.426800pt;}
.ya0{bottom:323.653333pt;}
.y52{bottom:327.720533pt;}
.yed{bottom:329.428267pt;}
.y24{bottom:331.440000pt;}
.yc6{bottom:331.760000pt;}
.y51{bottom:339.080533pt;}
.yec{bottom:340.788267pt;}
.y94{bottom:344.013333pt;}
.yc5{bottom:345.093333pt;}
.y23{bottom:345.640000pt;}
.y50{bottom:350.440533pt;}
.yeb{bottom:352.161067pt;}
.y93{bottom:357.346800pt;}
.yc4{bottom:358.426800pt;}
.y22{bottom:359.853333pt;}
.y4f{bottom:361.813333pt;}
.yea{bottom:363.521067pt;}
.y92{bottom:370.680000pt;}
.yc3{bottom:371.760000pt;}
.y4e{bottom:373.174400pt;}
.y21{bottom:374.053333pt;}
.ye9{bottom:374.893867pt;}
.y91{bottom:384.013333pt;}
.y4d{bottom:384.547200pt;}
.yc2{bottom:385.093333pt;}
.ye8{bottom:386.253867pt;}
.y20{bottom:388.266667pt;}
.y4c{bottom:395.907200pt;}
.y90{bottom:397.346800pt;}
.ye7{bottom:397.626667pt;}
.yc1{bottom:398.426800pt;}
.y1f{bottom:402.466667pt;}
.y4b{bottom:407.280000pt;}
.ye6{bottom:408.986667pt;}
.y8f{bottom:410.680000pt;}
.yc0{bottom:411.760000pt;}
.y4a{bottom:418.640000pt;}
.ye5{bottom:420.346133pt;}
.y8e{bottom:424.013333pt;}
.y1e{bottom:424.681067pt;}
.ybf{bottom:425.093333pt;}
.y49{bottom:430.000000pt;}
.ye4{bottom:431.720000pt;}
.y8d{bottom:437.346800pt;}
.ybe{bottom:438.426667pt;}
.y1d{bottom:440.041067pt;}
.ye3{bottom:443.080000pt;}
.y8c{bottom:450.680533pt;}
.y1c{bottom:451.414933pt;}
.ye2{bottom:459.786133pt;}
.y71{bottom:461.733333pt;}
.y1b{bottom:462.774933pt;}
.y8b{bottom:464.013867pt;}
.ybd{bottom:465.093333pt;}
.y1a{bottom:474.148800pt;}
.y70{bottom:475.066667pt;}
.ybc{bottom:478.426800pt;}
.ye1{bottom:482.520000pt;}
.y86{bottom:483.493333pt;}
.y19{bottom:485.508800pt;}
.y6f{bottom:488.400000pt;}
.ybb{bottom:491.760133pt;}
.ye0{bottom:493.880000pt;}
.y18{bottom:496.868800pt;}
.y6e{bottom:501.733333pt;}
.yba{bottom:505.093333pt;}
.y17{bottom:508.241600pt;}
.y89{bottom:508.346667pt;}
.ydf{bottom:510.573333pt;}
.y6d{bottom:515.066667pt;}
.yb9{bottom:518.426800pt;}
.y16{bottom:519.601600pt;}
.y88{bottom:521.347200pt;}
.y6c{bottom:528.400000pt;}
.y15{bottom:530.974400pt;}
.yb8{bottom:531.760133pt;}
.y87{bottom:534.333867pt;}
.yde{bottom:536.146800pt;}
.y6b{bottom:541.733333pt;}
.y14{bottom:542.334400pt;}
.yb7{bottom:545.093333pt;}
.ydd{bottom:550.360133pt;}
.y9f{bottom:550.466667pt;}
.y13{bottom:553.707200pt;}
.y6a{bottom:555.066667pt;}
.yb6{bottom:558.426667pt;}
.y9e{bottom:563.800000pt;}
.ydc{bottom:564.573467pt;}
.y12{bottom:565.067200pt;}
.y69{bottom:568.400000pt;}
.yb5{bottom:571.760133pt;}
.y11{bottom:576.440000pt;}
.y9d{bottom:577.133333pt;}
.ydb{bottom:578.773467pt;}
.y68{bottom:581.733333pt;}
.yb4{bottom:585.093333pt;}
.y10{bottom:587.800000pt;}
.y9c{bottom:590.466667pt;}
.yda{bottom:592.986800pt;}
.y67{bottom:595.066667pt;}
.yb3{bottom:598.426667pt;}
.yf{bottom:599.160000pt;}
.y9b{bottom:603.800000pt;}
.yd9{bottom:607.186800pt;}
.y66{bottom:608.400000pt;}
.yc9{bottom:615.386667pt;}
.ye{bottom:615.866133pt;}
.y9a{bottom:617.133333pt;}
.yd8{bottom:621.400133pt;}
.y65{bottom:621.733333pt;}
.yd{bottom:627.226133pt;}
.yc8{bottom:628.387200pt;}
.y99{bottom:630.466667pt;}
.yd7{bottom:635.600133pt;}
.y72{bottom:636.519467pt;}
.yc{bottom:638.600000pt;}
.y98{bottom:643.800000pt;}
.yd6{bottom:649.813467pt;}
.ya6{bottom:654.600133pt;}
.yb{bottom:655.293333pt;}
.y97{bottom:657.133333pt;}
.y48{bottom:657.320533pt;}
.yd5{bottom:664.013467pt;}
.y47{bottom:668.693333pt;}
.ya5{bottom:668.800133pt;}
.y96{bottom:670.466667pt;}
.ya{bottom:678.027200pt;}
.yd4{bottom:678.226800pt;}
.y46{bottom:680.053867pt;}
.ya4{bottom:683.013467pt;}
.y95{bottom:683.800000pt;}
.y9{bottom:689.387200pt;}
.y45{bottom:691.413867pt;}
.yd3{bottom:692.426800pt;}
.ya3{bottom:697.213467pt;}
.y8a{bottom:702.106667pt;}
.y44{bottom:702.786667pt;}
.yd2{bottom:706.640133pt;}
.y8{bottom:709.613333pt;}
.ya2{bottom:711.426800pt;}
.y43{bottom:714.145067pt;}
.yd1{bottom:720.853467pt;}
.y7{bottom:720.973333pt;}
.y42{bottom:725.518933pt;}
.y76{bottom:725.626800pt;}
.y6{bottom:728.826800pt;}
.yd0{bottom:735.053467pt;}
.y41{bottom:736.878933pt;}
.y75{bottom:739.840133pt;}
.y5{bottom:743.707067pt;}
.y40{bottom:748.252800pt;}
.ycf{bottom:749.266800pt;}
.y74{bottom:754.040133pt;}
.y4{bottom:756.893333pt;}
.y3f{bottom:759.612800pt;}
.yce{bottom:763.466800pt;}
.y73{bottom:768.253467pt;}
.y3e{bottom:770.972800pt;}
.y3d{bottom:782.346667pt;}
.y3{bottom:782.466800pt;}
.ycd{bottom:784.346800pt;}
.y2{bottom:796.666800pt;}
.ycc{bottom:798.546800pt;}
.y3c{bottom:799.040000pt;}
.y64{bottom:828.786667pt;}
.y85{bottom:828.786800pt;}
.y32{bottom:830.786667pt;}
.hc{height:23.168000pt;}
.h6{height:26.080000pt;}
.h4{height:28.078125pt;}
.h8{height:28.916667pt;}
.h7{height:29.625000pt;}
.hb{height:30.890667pt;}
.h9{height:34.773333pt;}
.h2{height:36.145833pt;}
.h5{height:37.437500pt;}
.h14{height:38.613333pt;}
.h3{height:40.160533pt;}
.h16{height:42.151725pt;}
.h11{height:42.155992pt;}
.h12{height:42.157592pt;}
.he{height:42.158125pt;}
.h10{height:42.158658pt;}
.h15{height:42.160258pt;}
.hd{height:42.165058pt;}
.hf{height:43.466667pt;}
.ha{height:46.796875pt;}
.h13{height:46.797408pt;}
.h1{height:887.920000pt;}
.h0{height:888.000000pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.xe{left:71.426667pt;}
.x12{left:79.373333pt;}
.xd{left:82.773333pt;}
.x16{left:84.573333pt;}
.x19{left:87.773333pt;}
.x1b{left:99.960000pt;}
.xb{left:105.453867pt;}
.xc{left:116.787200pt;}
.x2{left:123.866667pt;}
.x1{left:130.066667pt;}
.x13{left:136.760000pt;}
.x7{left:146.106667pt;}
.x4{left:150.826933pt;}
.x6{left:170.106667pt;}
.x3{left:174.493333pt;}
.x15{left:191.480000pt;}
.x1a{left:230.933333pt;}
.x11{left:247.306667pt;}
.x8{left:248.746667pt;}
.x18{left:255.786667pt;}
.x9{left:259.400533pt;}
.x5{left:260.307200pt;}
.x1c{left:269.360000pt;}
.x1d{left:286.560000pt;}
.xa{left:291.587200pt;}
.x17{left:293.240000pt;}
.x10{left:354.893067pt;}
.xf{left:399.573333pt;}
.x14{left:544.760000pt;}
}




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