
    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_9e87e04b48d72e422ffda5b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.212402;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_38c6c6a4b8ed6addbde28576.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.212402;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_ea25273b9c6b4f5256c8cb3b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.174316;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_9f0e3a341afc3bac84c78518.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.174316;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_65bfcdf22e3bdec4038d8043.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014160;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_daf33e2ea0920c5ca5b47878.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_63bcbb8957b7402a469fea5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_8081b7021ad8cfa1478e69f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_8c1bade011253907c7e047c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls21{letter-spacing:-0.828000px;}
.ls5{letter-spacing:-0.507000px;}
.lsd{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.045360px;}
.ls0{letter-spacing:0.082560px;}
.ls7{letter-spacing:0.154800px;}
.ls15{letter-spacing:0.175200px;}
.ls1{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.213000px;}
.ls3{letter-spacing:0.256320px;}
.ls9{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.262080px;}
.ls8{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.490800px;}
.lse{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.894000px;}
.ls16{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.979920px;}
.ls22{letter-spacing:1.620000px;}
.lsb{letter-spacing:2.340000px;}
.lsc{letter-spacing:3.060000px;}
.ls1f{letter-spacing:8.820000px;}
.lsa{letter-spacing:10.260000px;}
.ls1c{letter-spacing:12.420000px;}
.ls19{letter-spacing:13.860000px;}
.ls11{letter-spacing:18.900000px;}
.ls12{letter-spacing:19.620000px;}
.ls13{letter-spacing:20.340000px;}
.ls18{letter-spacing:21.780000px;}
.ls20{letter-spacing:28.980000px;}
.ls10{letter-spacing:31.860000px;}
.ls14{letter-spacing:36.900000px;}
.ls1b{letter-spacing:49.140000px;}
.ls1e{letter-spacing:54.180000px;}
.ls23{letter-spacing:58.500000px;}
.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;}
}
.ws9{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.784000px;}
.ws8{word-spacing:-15.552000px;}
.wsa{word-spacing:-15.430800px;}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.183240px;}
.wsb{word-spacing:-15.115200px;}
.ws0{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.463240px;}
.ws2{word-spacing:-13.500000px;}
.ws1{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
._2{margin-left:-1.450080px;}
._0{width:1.019520px;}
._b{width:2.349840px;}
._1{width:3.357840px;}
._f{width:4.590000px;}
._e{width:5.617440px;}
._11{width:6.857040px;}
._d{width:8.246880px;}
._c{width:9.597600px;}
._5{width:10.962000px;}
._35{width:12.034560px;}
._7{width:13.143600px;}
._12{width:16.848720px;}
._9{width:18.447840px;}
._8{width:19.798560px;}
._19{width:20.856240px;}
._20{width:22.589280px;}
._14{width:24.441840px;}
._13{width:25.513920px;}
._32{width:26.936640px;}
._4{width:28.162080px;}
._3{width:29.358000px;}
._10{width:30.535920px;}
._a{width:32.150880px;}
._33{width:33.581520px;}
._21{width:34.880400px;}
._1a{width:36.035280px;}
._1b{width:37.498080px;}
._2b{width:39.019680px;}
._2c{width:40.274640px;}
._2d{width:41.294160px;}
._23{width:42.844320px;}
._1c{width:44.342400px;}
._25{width:45.796320px;}
._24{width:47.210400px;}
._26{width:48.764160px;}
._34{width:50.493600px;}
._36{width:51.716880px;}
._22{width:52.887600px;}
._27{width:53.956080px;}
._2f{width:55.278000px;}
._30{width:56.406240px;}
._28{width:58.620960px;}
._37{width:59.879520px;}
._2a{width:60.888240px;}
._29{width:62.030880px;}
._17{width:63.704160px;}
._18{width:64.712160px;}
._16{width:65.855520px;}
._15{width:73.385280px;}
._3a{width:74.887200px;}
._31{width:84.437280px;}
._3c{width:85.755600px;}
._2e{width:120.117600px;}
._1f{width:195.143760px;}
._3b{width:216.735120px;}
._1e{width:270.120000px;}
._38{width:401.355360px;}
._6{width:637.608000px;}
._39{width:702.956880px;}
._1d{width:924.809760px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y1f{bottom:-13.500000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:9.900000px;}
.yd{bottom:13.500000px;}
.y1d{bottom:32.940000px;}
.yc{bottom:42.840000px;}
.y1c{bottom:56.160000px;}
.y23{bottom:57.636000px;}
.yb{bottom:72.000000px;}
.y22{bottom:79.056000px;}
.y1b{bottom:79.380000px;}
.ya{bottom:101.340000px;}
.y21{bottom:102.456000px;}
.y9{bottom:130.500000px;}
.y73{bottom:175.530000px;}
.y10f{bottom:182.910000px;}
.y13f{bottom:189.750000px;}
.ye7{bottom:195.330000px;}
.y4a{bottom:199.470000px;}
.yc3{bottom:200.910000px;}
.y10e{bottom:203.070000px;}
.y13e{bottom:209.910000px;}
.y72{bottom:210.450000px;}
.y129{bottom:211.170000px;}
.ye6{bottom:215.490000px;}
.y178{bottom:218.910000px;}
.y15d{bottom:222.330000px;}
.y10d{bottom:223.590000px;}
.y49{bottom:227.190000px;}
.yc2{bottom:230.070000px;}
.y128{bottom:231.330000px;}
.ye5{bottom:235.830000px;}
.y177{bottom:239.070000px;}
.y10c{bottom:243.750000px;}
.y71{bottom:247.170000px;}
.y48{bottom:247.710000px;}
.yc1{bottom:250.410000px;}
.y9b{bottom:251.490000px;}
.y176{bottom:259.410000px;}
.y10b{bottom:263.910000px;}
.ye4{bottom:264.990000px;}
.y70{bottom:267.510000px;}
.yc0{bottom:270.570000px;}
.y127{bottom:271.830000px;}
.y9a{bottom:280.875000px;}
.ye3{bottom:285.375000px;}
.y47{bottom:285.735000px;}
.y175{bottom:288.615000px;}
.ybf{bottom:290.955000px;}
.y126{bottom:292.035000px;}
.y19{bottom:292.935000px;}
.y10a{bottom:293.115000px;}
.y13d{bottom:299.955000px;}
.y99{bottom:301.035000px;}
.ye2{bottom:305.535000px;}
.y6f{bottom:305.715000px;}
.y46{bottom:305.895000px;}
.y15c{bottom:310.035000px;}
.ybe{bottom:311.115000px;}
.y109{bottom:313.455000px;}
.y174{bottom:317.775000px;}
.y18{bottom:320.115000px;}
.y98{bottom:321.375000px;}
.ye1{bottom:325.695000px;}
.y6e{bottom:325.875000px;}
.y45{bottom:326.235000px;}
.ybd{bottom:331.455000px;}
.y108{bottom:333.615000px;}
.y173{bottom:338.115000px;}
.y15b{bottom:339.375000px;}
.y13c{bottom:340.455000px;}
.y97{bottom:341.535000px;}
.y6d{bottom:346.215000px;}
.y44{bottom:346.395000px;}
.y17{bottom:347.295000px;}
.ybc{bottom:351.615000px;}
.y18e{bottom:353.055000px;}
.y107{bottom:353.775000px;}
.ye0{bottom:355.035000px;}
.y15a{bottom:359.535000px;}
.y13b{bottom:360.615000px;}
.y125{bottom:361.695000px;}
.y6c{bottom:366.375000px;}
.y43{bottom:366.735000px;}
.y172{bottom:367.275000px;}
.y96{bottom:370.695000px;}
.y106{bottom:374.115000px;}
.y16{bottom:374.475000px;}
.ydf{bottom:375.195000px;}
.y159{bottom:379.695000px;}
.ybb{bottom:380.775000px;}
.y124{bottom:382.035000px;}
.y6b{bottom:386.535000px;}
.y42{bottom:386.895000px;}
.y171{bottom:387.615000px;}
.y95{bottom:391.035000px;}
.y105{bottom:394.275000px;}
.yde{bottom:395.535000px;}
.y158{bottom:400.035000px;}
.yba{bottom:401.115000px;}
.y15{bottom:401.655000px;}
.y18d{bottom:402.195000px;}
.y123{bottom:402.375000px;}
.y6a{bottom:406.875000px;}
.y41{bottom:407.235000px;}
.y94{bottom:411.195000px;}
.y104{bottom:414.615000px;}
.ydd{bottom:415.695000px;}
.y170{bottom:416.775000px;}
.y157{bottom:420.195000px;}
.yb9{bottom:421.275000px;}
.y122{bottom:422.715000px;}
.y69{bottom:427.035000px;}
.y40{bottom:427.395000px;}
.y14{bottom:429.015000px;}
.y18c{bottom:431.355000px;}
.y93{bottom:431.535000px;}
.y103{bottom:434.775000px;}
.ydc{bottom:436.035000px;}
.y16f{bottom:436.935000px;}
.y156{bottom:440.535000px;}
.yb8{bottom:441.615000px;}
.y121{bottom:442.695000px;}
.y68{bottom:447.375000px;}
.y3f{bottom:447.555000px;}
.y92{bottom:451.695000px;}
.y102{bottom:454.935000px;}
.y13{bottom:456.195000px;}
.y155{bottom:460.695000px;}
.yb7{bottom:461.775000px;}
.y120{bottom:463.035000px;}
.ydb{bottom:465.195000px;}
.y16e{bottom:466.275000px;}
.y67{bottom:467.535000px;}
.y3e{bottom:467.895000px;}
.y18b{bottom:471.855000px;}
.y91{bottom:472.035000px;}
.y12{bottom:474.375000px;}
.y154{bottom:481.035000px;}
.yb6{bottom:481.935000px;}
.y11f{bottom:483.195000px;}
.yda{bottom:485.355000px;}
.y16d{bottom:486.435000px;}
.y66{bottom:487.875000px;}
.y3d{bottom:488.055000px;}
.y90{bottom:492.195000px;}
.y11{bottom:492.555000px;}
.y153{bottom:501.195000px;}
.yb5{bottom:502.275000px;}
.y11e{bottom:503.355000px;}
.y16c{bottom:506.775000px;}
.y65{bottom:508.035000px;}
.y3c{bottom:508.395000px;}
.y10{bottom:510.735000px;}
.y13a{bottom:511.275000px;}
.y8f{bottom:512.355000px;}
.yd9{bottom:514.695000px;}
.y101{bottom:517.575000px;}
.y152{bottom:521.355000px;}
.yb4{bottom:522.435000px;}
.y11d{bottom:523.695000px;}
.y16b{bottom:526.935000px;}
.y64{bottom:528.195000px;}
.y3b{bottom:528.555000px;}
.y139{bottom:531.435000px;}
.y8e{bottom:532.695000px;}
.yd8{bottom:534.855000px;}
.yf{bottom:538.095000px;}
.y151{bottom:541.695000px;}
.yb3{bottom:542.775000px;}
.y11c{bottom:543.855000px;}
.y100{bottom:546.735000px;}
.y63{bottom:548.535000px;}
.y3a{bottom:548.895000px;}
.y138{bottom:551.775000px;}
.y8d{bottom:552.855000px;}
.yd7{bottom:555.195000px;}
.y16a{bottom:556.305000px;}
.yb2{bottom:562.965000px;}
.y11b{bottom:564.225000px;}
.ye{bottom:565.845000px;}
.yff{bottom:567.105000px;}
.y150{bottom:570.885000px;}
.y137{bottom:571.965000px;}
.y8c{bottom:573.225000px;}
.yd6{bottom:575.385000px;}
.y169{bottom:576.465000px;}
.yb1{bottom:583.305000px;}
.y11a{bottom:584.385000px;}
.y62{bottom:586.725000px;}
.y39{bottom:587.085000px;}
.yfe{bottom:587.265000px;}
.y8{bottom:588.345000px;}
.y18a{bottom:591.045000px;}
.y14f{bottom:591.225000px;}
.y136{bottom:592.305000px;}
.yd5{bottom:595.725000px;}
.y8b{bottom:602.385000px;}
.y168{bottom:605.625000px;}
.y61{bottom:607.065000px;}
.y38{bottom:607.245000px;}
.yfd{bottom:607.605000px;}
.y14e{bottom:611.385000px;}
.yb0{bottom:612.465000px;}
.y119{bottom:613.725000px;}
.y8a{bottom:622.725000px;}
.yd4{bottom:624.885000px;}
.y167{bottom:625.965000px;}
.y60{bottom:627.225000px;}
.y37{bottom:627.585000px;}
.yfc{bottom:627.765000px;}
.y189{bottom:631.545000px;}
.y14d{bottom:631.725000px;}
.yaf{bottom:632.625000px;}
.y118{bottom:633.885000px;}
.y89{bottom:642.885000px;}
.yd3{bottom:645.045000px;}
.y166{bottom:646.125000px;}
.y5f{bottom:647.565000px;}
.y36{bottom:647.745000px;}
.yfb{bottom:647.925000px;}
.y14c{bottom:651.885000px;}
.yae{bottom:652.965000px;}
.y117{bottom:654.045000px;}
.y188{bottom:660.885000px;}
.y88{bottom:663.045000px;}
.yd2{bottom:665.385000px;}
.y5e{bottom:667.725000px;}
.y35{bottom:668.085000px;}
.yfa{bottom:668.265000px;}
.y14b{bottom:672.045000px;}
.yad{bottom:673.125000px;}
.y116{bottom:674.385000px;}
.y165{bottom:675.465000px;}
.y187{bottom:681.045000px;}
.y87{bottom:683.385000px;}
.yd1{bottom:685.545000px;}
.y5d{bottom:687.885000px;}
.y34{bottom:688.245000px;}
.yf9{bottom:688.425000px;}
.y14a{bottom:692.385000px;}
.yac{bottom:693.465000px;}
.y115{bottom:694.545000px;}
.y164{bottom:695.625000px;}
.y86{bottom:703.545000px;}
.yd0{bottom:705.885000px;}
.y5c{bottom:708.225000px;}
.y33{bottom:708.585000px;}
.yf8{bottom:708.765000px;}
.y186{bottom:710.385000px;}
.y149{bottom:712.545000px;}
.yab{bottom:713.625000px;}
.y114{bottom:714.885000px;}
.y163{bottom:715.965000px;}
.y85{bottom:723.885000px;}
.y5b{bottom:728.385000px;}
.y32{bottom:728.745000px;}
.y185{bottom:730.545000px;}
.y148{bottom:732.885000px;}
.yaa{bottom:733.965000px;}
.ycf{bottom:735.045000px;}
.yf7{bottom:737.925000px;}
.y84{bottom:744.045000px;}
.y162{bottom:745.125000px;}
.y5a{bottom:748.725000px;}
.y31{bottom:748.905000px;}
.y147{bottom:753.045000px;}
.ya9{bottom:754.125000px;}
.yce{bottom:755.385000px;}
.yf6{bottom:758.265000px;}
.y184{bottom:759.705000px;}
.y83{bottom:764.385000px;}
.y7{bottom:765.285000px;}
.y59{bottom:768.885000px;}
.y30{bottom:769.245000px;}
.y146{bottom:773.385000px;}
.ya8{bottom:774.285000px;}
.ycd{bottom:775.545000px;}
.yf5{bottom:778.425000px;}
.y183{bottom:780.045000px;}
.y82{bottom:784.545000px;}
.y161{bottom:785.625000px;}
.y58{bottom:789.225000px;}
.y2f{bottom:789.405000px;}
.y145{bottom:793.545000px;}
.ycc{bottom:795.705000px;}
.y135{bottom:796.425000px;}
.yf4{bottom:798.585000px;}
.y182{bottom:800.205000px;}
.ya7{bottom:803.625000px;}
.y81{bottom:804.705000px;}
.y160{bottom:805.785000px;}
.y6{bottom:808.125000px;}
.y57{bottom:809.385000px;}
.y144{bottom:813.705000px;}
.ycb{bottom:816.045000px;}
.yf3{bottom:818.925000px;}
.ya6{bottom:823.785000px;}
.y80{bottom:825.045000px;}
.y134{bottom:825.585000px;}
.y2e{bottom:827.745000px;}
.y181{bottom:829.545000px;}
.y143{bottom:834.045000px;}
.y15f{bottom:835.125000px;}
.yca{bottom:836.205000px;}
.ya5{bottom:844.170000px;}
.y7f{bottom:845.250000px;}
.y133{bottom:845.970000px;}
.y56{bottom:847.590000px;}
.y2d{bottom:847.950000px;}
.yf2{bottom:848.130000px;}
.y180{bottom:849.750000px;}
.y5{bottom:851.190000px;}
.y142{bottom:854.250000px;}
.y15e{bottom:855.330000px;}
.yc9{bottom:856.590000px;}
.ya4{bottom:864.330000px;}
.y7e{bottom:865.590000px;}
.y132{bottom:866.130000px;}
.y55{bottom:867.930000px;}
.y2c{bottom:868.290000px;}
.yf1{bottom:868.470000px;}
.y141{bottom:874.590000px;}
.y113{bottom:876.750000px;}
.y17f{bottom:879.090000px;}
.y4{bottom:880.710000px;}
.ya3{bottom:884.670000px;}
.yc8{bottom:885.750000px;}
.y131{bottom:886.470000px;}
.y54{bottom:888.090000px;}
.y2b{bottom:888.450000px;}
.yf0{bottom:888.630000px;}
.y7d{bottom:894.750000px;}
.y112{bottom:897.090000px;}
.y17e{bottom:899.250000px;}
.ya2{bottom:904.830000px;}
.yc7{bottom:906.090000px;}
.y130{bottom:906.630000px;}
.y53{bottom:908.430000px;}
.y2a{bottom:908.610000px;}
.yef{bottom:908.970000px;}
.y3{bottom:910.230000px;}
.y7c{bottom:915.090000px;}
.ya1{bottom:924.990000px;}
.yc6{bottom:926.250000px;}
.y12f{bottom:926.970000px;}
.y17d{bottom:928.410000px;}
.y52{bottom:928.590000px;}
.y29{bottom:928.950000px;}
.yee{bottom:929.130000px;}
.y2{bottom:933.630000px;}
.y7b{bottom:935.250000px;}
.ya0{bottom:945.330000px;}
.yc5{bottom:946.410000px;}
.y12e{bottom:947.130000px;}
.y17c{bottom:948.750000px;}
.y51{bottom:948.930000px;}
.y28{bottom:949.110000px;}
.y7a{bottom:955.410000px;}
.y140{bottom:955.590000px;}
.y1{bottom:956.850000px;}
.yed{bottom:958.290000px;}
.yc4{bottom:966.750000px;}
.y12d{bottom:967.290000px;}
.y50{bottom:969.090000px;}
.y27{bottom:969.450000px;}
.y9f{bottom:974.490000px;}
.y79{bottom:975.750000px;}
.y17b{bottom:977.910000px;}
.yec{bottom:978.630000px;}
.y1a{bottom:986.370000px;}
.y111{bottom:986.910000px;}
.y12c{bottom:987.630000px;}
.y4f{bottom:989.250000px;}
.y26{bottom:989.610000px;}
.y9e{bottom:994.830000px;}
.y78{bottom:995.910000px;}
.y17a{bottom:998.250000px;}
.yeb{bottom:998.790000px;}
.y110{bottom:1007.250000px;}
.y12b{bottom:1007.790000px;}
.y9d{bottom:1014.990000px;}
.y77{bottom:1016.250000px;}
.yea{bottom:1019.130000px;}
.y179{bottom:1027.410000px;}
.y12a{bottom:1028.130000px;}
.y25{bottom:1028.850000px;}
.y4e{bottom:1032.270000px;}
.y9c{bottom:1035.330000px;}
.y76{bottom:1036.410000px;}
.ye9{bottom:1048.290000px;}
.y75{bottom:1056.750000px;}
.y4d{bottom:1065.750000px;}
.ye8{bottom:1068.630000px;}
.y24{bottom:1074.030000px;}
.y74{bottom:1076.910000px;}
.y4c{bottom:1090.410000px;}
.y4b{bottom:1126.800000px;}
.y20{bottom:1130.220000px;}
.he{height:43.477734px;}
.hf{height:44.047266px;}
.h7{height:48.225586px;}
.h6{height:49.306641px;}
.hd{height:53.369648px;}
.h2{height:54.566016px;}
.hc{height:64.300781px;}
.h4{height:65.742188px;}
.ha{height:65.884219px;}
.h9{height:67.824844px;}
.hb{height:70.664062px;}
.h3{height:76.918359px;}
.h8{height:94.845000px;}
.h5{height:146.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:142.761000px;}
.w2{width:528.030000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:10.965000px;}
.x10{left:35.310000px;}
.xe{left:37.110000px;}
.x8{left:51.105000px;}
.xf{left:54.750000px;}
.x7{left:69.105000px;}
.x11{left:71.490000px;}
.x1{left:116.856000px;}
.xa{left:166.530000px;}
.x6{left:175.350000px;}
.x9{left:189.750000px;}
.x5{left:206.685000px;}
.xb{left:212.610000px;}
.x3{left:368.715000px;}
.x13{left:379.335000px;}
.x4{left:384.015000px;}
.x14{left:394.635000px;}
.x2{left:457.095000px;}
.xc{left:648.120000px;}
.x12{left:722.130000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls21{letter-spacing:-0.736000pt;}
.ls5{letter-spacing:-0.450667pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.040320pt;}
.ls0{letter-spacing:0.073387pt;}
.ls7{letter-spacing:0.137600pt;}
.ls15{letter-spacing:0.155733pt;}
.ls1{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.189333pt;}
.ls3{letter-spacing:0.227840pt;}
.ls9{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.232960pt;}
.ls8{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.436267pt;}
.lse{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.794667pt;}
.ls16{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.871040pt;}
.ls22{letter-spacing:1.440000pt;}
.lsb{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.720000pt;}
.ls1f{letter-spacing:7.840000pt;}
.lsa{letter-spacing:9.120000pt;}
.ls1c{letter-spacing:11.040000pt;}
.ls19{letter-spacing:12.320000pt;}
.ls11{letter-spacing:16.800000pt;}
.ls12{letter-spacing:17.440000pt;}
.ls13{letter-spacing:18.080000pt;}
.ls18{letter-spacing:19.360000pt;}
.ls20{letter-spacing:25.760000pt;}
.ls10{letter-spacing:28.320000pt;}
.ls14{letter-spacing:32.800000pt;}
.ls1b{letter-spacing:43.680000pt;}
.ls1e{letter-spacing:48.160000pt;}
.ls23{letter-spacing:52.000000pt;}
.ws9{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws8{word-spacing:-13.824000pt;}
.wsa{word-spacing:-13.716267pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.496213pt;}
.wsb{word-spacing:-13.435733pt;}
.ws0{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.856213pt;}
.ws2{word-spacing:-12.000000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
._2{margin-left:-1.288960pt;}
._0{width:0.906240pt;}
._b{width:2.088747pt;}
._1{width:2.984747pt;}
._f{width:4.080000pt;}
._e{width:4.993280pt;}
._11{width:6.095147pt;}
._d{width:7.330560pt;}
._c{width:8.531200pt;}
._5{width:9.744000pt;}
._35{width:10.697387pt;}
._7{width:11.683200pt;}
._12{width:14.976640pt;}
._9{width:16.398080pt;}
._8{width:17.598720pt;}
._19{width:18.538880pt;}
._20{width:20.079360pt;}
._14{width:21.726080pt;}
._13{width:22.679040pt;}
._32{width:23.943680pt;}
._4{width:25.032960pt;}
._3{width:26.096000pt;}
._10{width:27.143040pt;}
._a{width:28.578560pt;}
._33{width:29.850240pt;}
._21{width:31.004800pt;}
._1a{width:32.031360pt;}
._1b{width:33.331627pt;}
._2b{width:34.684160pt;}
._2c{width:35.799680pt;}
._2d{width:36.705920pt;}
._23{width:38.083840pt;}
._1c{width:39.415467pt;}
._25{width:40.707840pt;}
._24{width:41.964800pt;}
._26{width:43.345920pt;}
._34{width:44.883200pt;}
._36{width:45.970560pt;}
._22{width:47.011200pt;}
._27{width:47.960960pt;}
._2f{width:49.136000pt;}
._30{width:50.138880pt;}
._28{width:52.107520pt;}
._37{width:53.226240pt;}
._2a{width:54.122880pt;}
._29{width:55.138560pt;}
._17{width:56.625920pt;}
._18{width:57.521920pt;}
._16{width:58.538240pt;}
._15{width:65.231360pt;}
._3a{width:66.566400pt;}
._31{width:75.055360pt;}
._3c{width:76.227200pt;}
._2e{width:106.771200pt;}
._1f{width:173.461120pt;}
._3b{width:192.653440pt;}
._1e{width:240.106667pt;}
._38{width:356.760320pt;}
._6{width:566.762667pt;}
._39{width:624.850560pt;}
._1d{width:822.053120pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y1f{bottom:-12.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:8.800000pt;}
.yd{bottom:12.000000pt;}
.y1d{bottom:29.280000pt;}
.yc{bottom:38.080000pt;}
.y1c{bottom:49.920000pt;}
.y23{bottom:51.232000pt;}
.yb{bottom:64.000000pt;}
.y22{bottom:70.272000pt;}
.y1b{bottom:70.560000pt;}
.ya{bottom:90.080000pt;}
.y21{bottom:91.072000pt;}
.y9{bottom:116.000000pt;}
.y73{bottom:156.026667pt;}
.y10f{bottom:162.586667pt;}
.y13f{bottom:168.666667pt;}
.ye7{bottom:173.626667pt;}
.y4a{bottom:177.306667pt;}
.yc3{bottom:178.586667pt;}
.y10e{bottom:180.506667pt;}
.y13e{bottom:186.586667pt;}
.y72{bottom:187.066667pt;}
.y129{bottom:187.706667pt;}
.ye6{bottom:191.546667pt;}
.y178{bottom:194.586667pt;}
.y15d{bottom:197.626667pt;}
.y10d{bottom:198.746667pt;}
.y49{bottom:201.946667pt;}
.yc2{bottom:204.506667pt;}
.y128{bottom:205.626667pt;}
.ye5{bottom:209.626667pt;}
.y177{bottom:212.506667pt;}
.y10c{bottom:216.666667pt;}
.y71{bottom:219.706667pt;}
.y48{bottom:220.186667pt;}
.yc1{bottom:222.586667pt;}
.y9b{bottom:223.546667pt;}
.y176{bottom:230.586667pt;}
.y10b{bottom:234.586667pt;}
.ye4{bottom:235.546667pt;}
.y70{bottom:237.786667pt;}
.yc0{bottom:240.506667pt;}
.y127{bottom:241.626667pt;}
.y9a{bottom:249.666667pt;}
.ye3{bottom:253.666667pt;}
.y47{bottom:253.986667pt;}
.y175{bottom:256.546667pt;}
.ybf{bottom:258.626667pt;}
.y126{bottom:259.586667pt;}
.y19{bottom:260.386667pt;}
.y10a{bottom:260.546667pt;}
.y13d{bottom:266.626667pt;}
.y99{bottom:267.586667pt;}
.ye2{bottom:271.586667pt;}
.y6f{bottom:271.746667pt;}
.y46{bottom:271.906667pt;}
.y15c{bottom:275.586667pt;}
.ybe{bottom:276.546667pt;}
.y109{bottom:278.626667pt;}
.y174{bottom:282.466667pt;}
.y18{bottom:284.546667pt;}
.y98{bottom:285.666667pt;}
.ye1{bottom:289.506667pt;}
.y6e{bottom:289.666667pt;}
.y45{bottom:289.986667pt;}
.ybd{bottom:294.626667pt;}
.y108{bottom:296.546667pt;}
.y173{bottom:300.546667pt;}
.y15b{bottom:301.666667pt;}
.y13c{bottom:302.626667pt;}
.y97{bottom:303.586667pt;}
.y6d{bottom:307.746667pt;}
.y44{bottom:307.906667pt;}
.y17{bottom:308.706667pt;}
.ybc{bottom:312.546667pt;}
.y18e{bottom:313.826667pt;}
.y107{bottom:314.466667pt;}
.ye0{bottom:315.586667pt;}
.y15a{bottom:319.586667pt;}
.y13b{bottom:320.546667pt;}
.y125{bottom:321.506667pt;}
.y6c{bottom:325.666667pt;}
.y43{bottom:325.986667pt;}
.y172{bottom:326.466667pt;}
.y96{bottom:329.506667pt;}
.y106{bottom:332.546667pt;}
.y16{bottom:332.866667pt;}
.ydf{bottom:333.506667pt;}
.y159{bottom:337.506667pt;}
.ybb{bottom:338.466667pt;}
.y124{bottom:339.586667pt;}
.y6b{bottom:343.586667pt;}
.y42{bottom:343.906667pt;}
.y171{bottom:344.546667pt;}
.y95{bottom:347.586667pt;}
.y105{bottom:350.466667pt;}
.yde{bottom:351.586667pt;}
.y158{bottom:355.586667pt;}
.yba{bottom:356.546667pt;}
.y15{bottom:357.026667pt;}
.y18d{bottom:357.506667pt;}
.y123{bottom:357.666667pt;}
.y6a{bottom:361.666667pt;}
.y41{bottom:361.986667pt;}
.y94{bottom:365.506667pt;}
.y104{bottom:368.546667pt;}
.ydd{bottom:369.506667pt;}
.y170{bottom:370.466667pt;}
.y157{bottom:373.506667pt;}
.yb9{bottom:374.466667pt;}
.y122{bottom:375.746667pt;}
.y69{bottom:379.586667pt;}
.y40{bottom:379.906667pt;}
.y14{bottom:381.346667pt;}
.y18c{bottom:383.426667pt;}
.y93{bottom:383.586667pt;}
.y103{bottom:386.466667pt;}
.ydc{bottom:387.586667pt;}
.y16f{bottom:388.386667pt;}
.y156{bottom:391.586667pt;}
.yb8{bottom:392.546667pt;}
.y121{bottom:393.506667pt;}
.y68{bottom:397.666667pt;}
.y3f{bottom:397.826667pt;}
.y92{bottom:401.506667pt;}
.y102{bottom:404.386667pt;}
.y13{bottom:405.506667pt;}
.y155{bottom:409.506667pt;}
.yb7{bottom:410.466667pt;}
.y120{bottom:411.586667pt;}
.ydb{bottom:413.506667pt;}
.y16e{bottom:414.466667pt;}
.y67{bottom:415.586667pt;}
.y3e{bottom:415.906667pt;}
.y18b{bottom:419.426667pt;}
.y91{bottom:419.586667pt;}
.y12{bottom:421.666667pt;}
.y154{bottom:427.586667pt;}
.yb6{bottom:428.386667pt;}
.y11f{bottom:429.506667pt;}
.yda{bottom:431.426667pt;}
.y16d{bottom:432.386667pt;}
.y66{bottom:433.666667pt;}
.y3d{bottom:433.826667pt;}
.y90{bottom:437.506667pt;}
.y11{bottom:437.826667pt;}
.y153{bottom:445.506667pt;}
.yb5{bottom:446.466667pt;}
.y11e{bottom:447.426667pt;}
.y16c{bottom:450.466667pt;}
.y65{bottom:451.586667pt;}
.y3c{bottom:451.906667pt;}
.y10{bottom:453.986667pt;}
.y13a{bottom:454.466667pt;}
.y8f{bottom:455.426667pt;}
.yd9{bottom:457.506667pt;}
.y101{bottom:460.066667pt;}
.y152{bottom:463.426667pt;}
.yb4{bottom:464.386667pt;}
.y11d{bottom:465.506667pt;}
.y16b{bottom:468.386667pt;}
.y64{bottom:469.506667pt;}
.y3b{bottom:469.826667pt;}
.y139{bottom:472.386667pt;}
.y8e{bottom:473.506667pt;}
.yd8{bottom:475.426667pt;}
.yf{bottom:478.306667pt;}
.y151{bottom:481.506667pt;}
.yb3{bottom:482.466667pt;}
.y11c{bottom:483.426667pt;}
.y100{bottom:485.986667pt;}
.y63{bottom:487.586667pt;}
.y3a{bottom:487.906667pt;}
.y138{bottom:490.466667pt;}
.y8d{bottom:491.426667pt;}
.yd7{bottom:493.506667pt;}
.y16a{bottom:494.493333pt;}
.yb2{bottom:500.413333pt;}
.y11b{bottom:501.533333pt;}
.ye{bottom:502.973333pt;}
.yff{bottom:504.093333pt;}
.y150{bottom:507.453333pt;}
.y137{bottom:508.413333pt;}
.y8c{bottom:509.533333pt;}
.yd6{bottom:511.453333pt;}
.y169{bottom:512.413333pt;}
.yb1{bottom:518.493333pt;}
.y11a{bottom:519.453333pt;}
.y62{bottom:521.533333pt;}
.y39{bottom:521.853333pt;}
.yfe{bottom:522.013333pt;}
.y8{bottom:522.973333pt;}
.y18a{bottom:525.373333pt;}
.y14f{bottom:525.533333pt;}
.y136{bottom:526.493333pt;}
.yd5{bottom:529.533333pt;}
.y8b{bottom:535.453333pt;}
.y168{bottom:538.333333pt;}
.y61{bottom:539.613333pt;}
.y38{bottom:539.773333pt;}
.yfd{bottom:540.093333pt;}
.y14e{bottom:543.453333pt;}
.yb0{bottom:544.413333pt;}
.y119{bottom:545.533333pt;}
.y8a{bottom:553.533333pt;}
.yd4{bottom:555.453333pt;}
.y167{bottom:556.413333pt;}
.y60{bottom:557.533333pt;}
.y37{bottom:557.853333pt;}
.yfc{bottom:558.013333pt;}
.y189{bottom:561.373333pt;}
.y14d{bottom:561.533333pt;}
.yaf{bottom:562.333333pt;}
.y118{bottom:563.453333pt;}
.y89{bottom:571.453333pt;}
.yd3{bottom:573.373333pt;}
.y166{bottom:574.333333pt;}
.y5f{bottom:575.613333pt;}
.y36{bottom:575.773333pt;}
.yfb{bottom:575.933333pt;}
.y14c{bottom:579.453333pt;}
.yae{bottom:580.413333pt;}
.y117{bottom:581.373333pt;}
.y188{bottom:587.453333pt;}
.y88{bottom:589.373333pt;}
.yd2{bottom:591.453333pt;}
.y5e{bottom:593.533333pt;}
.y35{bottom:593.853333pt;}
.yfa{bottom:594.013333pt;}
.y14b{bottom:597.373333pt;}
.yad{bottom:598.333333pt;}
.y116{bottom:599.453333pt;}
.y165{bottom:600.413333pt;}
.y187{bottom:605.373333pt;}
.y87{bottom:607.453333pt;}
.yd1{bottom:609.373333pt;}
.y5d{bottom:611.453333pt;}
.y34{bottom:611.773333pt;}
.yf9{bottom:611.933333pt;}
.y14a{bottom:615.453333pt;}
.yac{bottom:616.413333pt;}
.y115{bottom:617.373333pt;}
.y164{bottom:618.333333pt;}
.y86{bottom:625.373333pt;}
.yd0{bottom:627.453333pt;}
.y5c{bottom:629.533333pt;}
.y33{bottom:629.853333pt;}
.yf8{bottom:630.013333pt;}
.y186{bottom:631.453333pt;}
.y149{bottom:633.373333pt;}
.yab{bottom:634.333333pt;}
.y114{bottom:635.453333pt;}
.y163{bottom:636.413333pt;}
.y85{bottom:643.453333pt;}
.y5b{bottom:647.453333pt;}
.y32{bottom:647.773333pt;}
.y185{bottom:649.373333pt;}
.y148{bottom:651.453333pt;}
.yaa{bottom:652.413333pt;}
.ycf{bottom:653.373333pt;}
.yf7{bottom:655.933333pt;}
.y84{bottom:661.373333pt;}
.y162{bottom:662.333333pt;}
.y5a{bottom:665.533333pt;}
.y31{bottom:665.693333pt;}
.y147{bottom:669.373333pt;}
.ya9{bottom:670.333333pt;}
.yce{bottom:671.453333pt;}
.yf6{bottom:674.013333pt;}
.y184{bottom:675.293333pt;}
.y83{bottom:679.453333pt;}
.y7{bottom:680.253333pt;}
.y59{bottom:683.453333pt;}
.y30{bottom:683.773333pt;}
.y146{bottom:687.453333pt;}
.ya8{bottom:688.253333pt;}
.ycd{bottom:689.373333pt;}
.yf5{bottom:691.933333pt;}
.y183{bottom:693.373333pt;}
.y82{bottom:697.373333pt;}
.y161{bottom:698.333333pt;}
.y58{bottom:701.533333pt;}
.y2f{bottom:701.693333pt;}
.y145{bottom:705.373333pt;}
.ycc{bottom:707.293333pt;}
.y135{bottom:707.933333pt;}
.yf4{bottom:709.853333pt;}
.y182{bottom:711.293333pt;}
.ya7{bottom:714.333333pt;}
.y81{bottom:715.293333pt;}
.y160{bottom:716.253333pt;}
.y6{bottom:718.333333pt;}
.y57{bottom:719.453333pt;}
.y144{bottom:723.293333pt;}
.ycb{bottom:725.373333pt;}
.yf3{bottom:727.933333pt;}
.ya6{bottom:732.253333pt;}
.y80{bottom:733.373333pt;}
.y134{bottom:733.853333pt;}
.y2e{bottom:735.773333pt;}
.y181{bottom:737.373333pt;}
.y143{bottom:741.373333pt;}
.y15f{bottom:742.333333pt;}
.yca{bottom:743.293333pt;}
.ya5{bottom:750.373333pt;}
.y7f{bottom:751.333333pt;}
.y133{bottom:751.973333pt;}
.y56{bottom:753.413333pt;}
.y2d{bottom:753.733333pt;}
.yf2{bottom:753.893333pt;}
.y180{bottom:755.333333pt;}
.y5{bottom:756.613333pt;}
.y142{bottom:759.333333pt;}
.y15e{bottom:760.293333pt;}
.yc9{bottom:761.413333pt;}
.ya4{bottom:768.293333pt;}
.y7e{bottom:769.413333pt;}
.y132{bottom:769.893333pt;}
.y55{bottom:771.493333pt;}
.y2c{bottom:771.813333pt;}
.yf1{bottom:771.973333pt;}
.y141{bottom:777.413333pt;}
.y113{bottom:779.333333pt;}
.y17f{bottom:781.413333pt;}
.y4{bottom:782.853333pt;}
.ya3{bottom:786.373333pt;}
.yc8{bottom:787.333333pt;}
.y131{bottom:787.973333pt;}
.y54{bottom:789.413333pt;}
.y2b{bottom:789.733333pt;}
.yf0{bottom:789.893333pt;}
.y7d{bottom:795.333333pt;}
.y112{bottom:797.413333pt;}
.y17e{bottom:799.333333pt;}
.ya2{bottom:804.293333pt;}
.yc7{bottom:805.413333pt;}
.y130{bottom:805.893333pt;}
.y53{bottom:807.493333pt;}
.y2a{bottom:807.653333pt;}
.yef{bottom:807.973333pt;}
.y3{bottom:809.093333pt;}
.y7c{bottom:813.413333pt;}
.ya1{bottom:822.213333pt;}
.yc6{bottom:823.333333pt;}
.y12f{bottom:823.973333pt;}
.y17d{bottom:825.253333pt;}
.y52{bottom:825.413333pt;}
.y29{bottom:825.733333pt;}
.yee{bottom:825.893333pt;}
.y2{bottom:829.893333pt;}
.y7b{bottom:831.333333pt;}
.ya0{bottom:840.293333pt;}
.yc5{bottom:841.253333pt;}
.y12e{bottom:841.893333pt;}
.y17c{bottom:843.333333pt;}
.y51{bottom:843.493333pt;}
.y28{bottom:843.653333pt;}
.y7a{bottom:849.253333pt;}
.y140{bottom:849.413333pt;}
.y1{bottom:850.533333pt;}
.yed{bottom:851.813333pt;}
.yc4{bottom:859.333333pt;}
.y12d{bottom:859.813333pt;}
.y50{bottom:861.413333pt;}
.y27{bottom:861.733333pt;}
.y9f{bottom:866.213333pt;}
.y79{bottom:867.333333pt;}
.y17b{bottom:869.253333pt;}
.yec{bottom:869.893333pt;}
.y1a{bottom:876.773333pt;}
.y111{bottom:877.253333pt;}
.y12c{bottom:877.893333pt;}
.y4f{bottom:879.333333pt;}
.y26{bottom:879.653333pt;}
.y9e{bottom:884.293333pt;}
.y78{bottom:885.253333pt;}
.y17a{bottom:887.333333pt;}
.yeb{bottom:887.813333pt;}
.y110{bottom:895.333333pt;}
.y12b{bottom:895.813333pt;}
.y9d{bottom:902.213333pt;}
.y77{bottom:903.333333pt;}
.yea{bottom:905.893333pt;}
.y179{bottom:913.253333pt;}
.y12a{bottom:913.893333pt;}
.y25{bottom:914.533333pt;}
.y4e{bottom:917.573333pt;}
.y9c{bottom:920.293333pt;}
.y76{bottom:921.253333pt;}
.ye9{bottom:931.813333pt;}
.y75{bottom:939.333333pt;}
.y4d{bottom:947.333333pt;}
.ye8{bottom:949.893333pt;}
.y24{bottom:954.693333pt;}
.y74{bottom:957.253333pt;}
.y4c{bottom:969.253333pt;}
.y4b{bottom:1001.600000pt;}
.y20{bottom:1004.640000pt;}
.he{height:38.646875pt;}
.hf{height:39.153125pt;}
.h7{height:42.867188pt;}
.h6{height:43.828125pt;}
.hd{height:47.439687pt;}
.h2{height:48.503125pt;}
.hc{height:57.156250pt;}
.h4{height:58.437500pt;}
.ha{height:58.563750pt;}
.h9{height:60.288750pt;}
.hb{height:62.812500pt;}
.h3{height:68.371875pt;}
.h8{height:84.306667pt;}
.h5{height:129.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:126.898667pt;}
.w2{width:469.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:9.746667pt;}
.x10{left:31.386667pt;}
.xe{left:32.986667pt;}
.x8{left:45.426667pt;}
.xf{left:48.666667pt;}
.x7{left:61.426667pt;}
.x11{left:63.546667pt;}
.x1{left:103.872000pt;}
.xa{left:148.026667pt;}
.x6{left:155.866667pt;}
.x9{left:168.666667pt;}
.x5{left:183.720000pt;}
.xb{left:188.986667pt;}
.x3{left:327.746667pt;}
.x13{left:337.186667pt;}
.x4{left:341.346667pt;}
.x14{left:350.786667pt;}
.x2{left:406.306667pt;}
.xc{left:576.106667pt;}
.x12{left:641.893333pt;}
}




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