
    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_5e17c91bf1a302fa8fb578c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959473;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_f1819c85a65e900368aac271.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f2cee9d40acae4f6293f8aaf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927734;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_c67ae7c33dc5a8db8d212310.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933594;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_f47de95237c4529deb16ad77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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.236547,0.000000,-0.080904,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080904,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080904,0.236547,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:37.439964px;}
.v1{vertical-align:40.320099px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.049586px;}
.ls1{letter-spacing:0.053898px;}
.ls3{letter-spacing:195.151423px;}
.ls5{letter-spacing:239.071401px;}
.ls2{letter-spacing:342.754101px;}
.ls6{letter-spacing:465.871374px;}
.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;}
}
.ws2{word-spacing:-17.965913px;}
.ws1{word-spacing:-16.528613px;}
.ws0{word-spacing:0.000000px;}
._25{margin-left:-5.446850px;}
._3{margin-left:-4.119932px;}
._2{margin-left:-2.522407px;}
._0{margin-left:-1.107934px;}
._1{width:1.043369px;}
._5{width:2.407713px;}
._9{width:3.825955px;}
._4{width:5.048983px;}
._10{width:6.557558px;}
._13{width:8.084941px;}
._14{width:9.521653px;}
._11{width:10.852534px;}
._8{width:12.344266px;}
._44{width:13.385843px;}
._6{width:14.390415px;}
._7{width:15.577569px;}
._12{width:16.655185px;}
._26{width:17.999659px;}
._18{width:19.492792px;}
._19{width:20.646928px;}
._1c{width:22.151128px;}
._15{width:23.409642px;}
._16{width:24.650074px;}
._17{width:26.698469px;}
._21{width:27.794380px;}
._1f{width:29.194104px;}
._20{width:31.027973px;}
._22{width:32.338197px;}
._43{width:36.219337px;}
._1b{width:38.625589px;}
._1a{width:40.460077px;}
._1e{width:43.280164px;}
._1d{width:44.466756px;}
._39{width:50.914717px;}
._37{width:52.412230px;}
._50{width:53.484860px;}
._2b{width:56.718386px;}
._31{width:58.019957px;}
._4d{width:60.598239px;}
._41{width:61.883125px;}
._40{width:62.992092px;}
._46{width:65.036380px;}
._27{width:66.263208px;}
._47{width:67.286978px;}
._42{width:68.841671px;}
._3d{width:78.228632px;}
._4c{width:79.569962px;}
._2d{width:81.241856px;}
._45{width:96.386898px;}
._35{width:97.584928px;}
._38{width:98.713988px;}
._30{width:108.409396px;}
._3a{width:115.171114px;}
._2c{width:117.173681px;}
._36{width:121.036368px;}
._3c{width:135.767056px;}
._48{width:138.246912px;}
._49{width:139.451694px;}
._29{width:202.773387px;}
._3b{width:212.244171px;}
._34{width:219.268057px;}
._4b{width:225.678005px;}
._4a{width:227.655585px;}
._4f{width:229.719551px;}
._2a{width:262.696608px;}
._2f{width:273.746609px;}
._32{width:275.188043px;}
._3e{width:312.027922px;}
._23{width:321.399387px;}
._3f{width:324.291377px;}
._33{width:332.056547px;}
._b{width:347.762007px;}
._2e{width:349.203441px;}
._a{width:517.098417px;}
._28{width:530.192886px;}
._d{width:556.022524px;}
._f{width:572.551137px;}
._24{width:761.456649px;}
._c{width:886.330575px;}
._e{width:982.429736px;}
._4e{width:1971.130651px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.114450px;}
.fs1{font-size:71.863650px;}
.fs3{font-size:75.950654px;}
.fs2{font-size:84.080250px;}
.y0{bottom:0.000000px;}
.y95{bottom:4.319962px;}
.yaa{bottom:4.319996px;}
.yad{bottom:4.319997px;}
.ya8{bottom:4.320012px;}
.y135{bottom:4.320029px;}
.y92{bottom:4.320030px;}
.ye4{bottom:4.679970px;}
.ydc{bottom:4.680004px;}
.y6{bottom:58.139992px;}
.y5{bottom:80.100013px;}
.y100{bottom:114.299973px;}
.y63{bottom:115.200027px;}
.y34{bottom:118.620002px;}
.y14b{bottom:127.259994px;}
.y87{bottom:130.500000px;}
.yd7{bottom:133.379998px;}
.yff{bottom:134.460022px;}
.y62{bottom:135.539977px;}
.y33{bottom:138.779983px;}
.ya0{bottom:138.960022px;}
.y14a{bottom:147.419975px;}
.y86{bottom:150.659981px;}
.y9f{bottom:153.179970px;}
.yd6{bottom:153.720017px;}
.yfe{bottom:154.799973px;}
.y61{bottom:155.700027px;}
.y32{bottom:159.120002px;}
.y149{bottom:167.759994px;}
.y85{bottom:171.000000px;}
.yd5{bottom:173.879998px;}
.yfd{bottom:174.960022px;}
.y60{bottom:176.039977px;}
.y9e{bottom:176.220017px;}
.y31{bottom:179.279983px;}
.y148{bottom:187.919975px;}
.y9d{bottom:190.440033px;}
.y84{bottom:191.159981px;}
.yd4{bottom:194.220017px;}
.y99{bottom:194.759994px;}
.yfc{bottom:195.659981px;}
.y5f{bottom:196.200027px;}
.y30{bottom:199.620002px;}
.y147{bottom:208.259994px;}
.y83{bottom:211.500000px;}
.y98{bottom:213.299973px;}
.yd3{bottom:214.379998px;}
.y5e{bottom:216.539977px;}
.yfb{bottom:217.259994px;}
.y2f{bottom:219.779983px;}
.y9c{bottom:227.519989px;}
.y146{bottom:228.419975px;}
.y82{bottom:231.659981px;}
.yd2{bottom:234.720017px;}
.y5d{bottom:236.700027px;}
.yfa{bottom:237.419975px;}
.y2e{bottom:240.120002px;}
.y145{bottom:248.759994px;}
.y9b{bottom:250.379998px;}
.y81{bottom:252.000000px;}
.yd1{bottom:254.879998px;}
.y5c{bottom:257.039977px;}
.yf9{bottom:257.759994px;}
.y2d{bottom:260.279983px;}
.y9a{bottom:264.600013px;}
.y144{bottom:268.919975px;}
.y80{bottom:272.159981px;}
.yd0{bottom:275.220017px;}
.y5b{bottom:277.200027px;}
.yf8{bottom:277.919975px;}
.y2c{bottom:280.620002px;}
.y143{bottom:289.259994px;}
.y97{bottom:291.960022px;}
.y7f{bottom:292.500000px;}
.ycf{bottom:295.379998px;}
.y5a{bottom:297.539977px;}
.yf7{bottom:298.259994px;}
.y2b{bottom:300.779983px;}
.y96{bottom:306.179970px;}
.y142{bottom:309.419975px;}
.y7e{bottom:312.659981px;}
.yce{bottom:315.720017px;}
.y59{bottom:317.700027px;}
.yf6{bottom:318.419975px;}
.y2a{bottom:321.120002px;}
.y8f{bottom:329.220017px;}
.y141{bottom:329.759994px;}
.y7d{bottom:333.000000px;}
.ycd{bottom:335.879998px;}
.y58{bottom:338.039977px;}
.yf5{bottom:338.759994px;}
.y29{bottom:341.279983px;}
.y94{bottom:343.440033px;}
.y8d{bottom:347.759994px;}
.y7c{bottom:353.159981px;}
.y13d{bottom:354.600013px;}
.ycc{bottom:356.220017px;}
.y57{bottom:358.200027px;}
.yf4{bottom:358.919975px;}
.y28{bottom:361.620002px;}
.y13f{bottom:363.779983px;}
.y8e{bottom:366.299973px;}
.y13e{bottom:368.820030px;}
.y13c{bottom:373.139992px;}
.y7b{bottom:373.500000px;}
.ycb{bottom:376.379998px;}
.y56{bottom:378.539977px;}
.yf3{bottom:379.259994px;}
.y93{bottom:380.519989px;}
.y27{bottom:381.779983px;}
.y140{bottom:387.360008px;}
.y13b{bottom:391.679970px;}
.y7a{bottom:393.659981px;}
.yca{bottom:396.720017px;}
.y55{bottom:398.700027px;}
.y91{bottom:399.059967px;}
.yf2{bottom:399.419975px;}
.y26{bottom:402.120002px;}
.y90{bottom:403.379998px;}
.y79{bottom:414.000000px;}
.y13a{bottom:414.720017px;}
.yc9{bottom:416.879998px;}
.y54{bottom:419.039977px;}
.yf1{bottom:419.759994px;}
.y25{bottom:422.100013px;}
.y8c{bottom:427.139992px;}
.y139{bottom:428.940033px;}
.y133{bottom:433.259994px;}
.y78{bottom:434.159981px;}
.yc8{bottom:437.220017px;}
.y134{bottom:438.299973px;}
.y53{bottom:439.200027px;}
.yf0{bottom:439.919975px;}
.y24{bottom:441.000000px;}
.y136{bottom:442.620002px;}
.y138{bottom:447.480011px;}
.y8b{bottom:450.899986px;}
.y132{bottom:451.799973px;}
.y77{bottom:454.500000px;}
.yc7{bottom:457.379998px;}
.y52{bottom:459.539977px;}
.yef{bottom:460.259994px;}
.y23{bottom:461.159981px;}
.y137{bottom:466.019989px;}
.y8a{bottom:471.240006px;}
.y76{bottom:474.659981px;}
.yc6{bottom:477.720017px;}
.y51{bottom:479.700027px;}
.yee{bottom:480.419975px;}
.y22{bottom:481.500000px;}
.y89{bottom:491.759994px;}
.y12e{bottom:493.379998px;}
.y75{bottom:495.000000px;}
.yc5{bottom:497.879998px;}
.y50{bottom:500.039977px;}
.yed{bottom:500.759994px;}
.y21{bottom:501.299973px;}
.y130{bottom:502.740006px;}
.y12f{bottom:507.779983px;}
.y12d{bottom:512.100013px;}
.y88{bottom:513.899986px;}
.y74{bottom:515.159981px;}
.y20{bottom:519.840019px;}
.y4f{bottom:520.200027px;}
.yec{bottom:520.919975px;}
.yc4{bottom:522.720017px;}
.y131{bottom:526.320030px;}
.y12c{bottom:530.639992px;}
.y73{bottom:535.500000px;}
.yc3{bottom:536.940033px;}
.y1f{bottom:538.740006px;}
.y4e{bottom:540.539977px;}
.yeb{bottom:541.259994px;}
.y150{bottom:552.600013px;}
.y12b{bottom:553.679970px;}
.y72{bottom:555.659981px;}
.y1e{bottom:559.080025px;}
.yc2{bottom:559.799973px;}
.y4d{bottom:560.700027px;}
.yea{bottom:561.419975px;}
.y127{bottom:562.860008px;}
.y128{bottom:567.899986px;}
.y129{bottom:572.220017px;}
.y14f{bottom:572.940033px;}
.yc1{bottom:574.019989px;}
.y71{bottom:576.000000px;}
.ybc{bottom:578.340019px;}
.y1d{bottom:579.240006px;}
.y4c{bottom:581.039977px;}
.y126{bottom:581.399986px;}
.ye9{bottom:581.759994px;}
.y12a{bottom:586.440033px;}
.y14e{bottom:593.100013px;}
.y70{bottom:596.159981px;}
.yba{bottom:596.879998px;}
.y1c{bottom:599.220017px;}
.y4b{bottom:601.200027px;}
.ye8{bottom:601.919975px;}
.yc0{bottom:611.279983px;}
.y14d{bottom:613.439999px;}
.y122{bottom:613.800007px;}
.ybb{bottom:615.600013px;}
.y6f{bottom:616.500000px;}
.y1b{bottom:617.759994px;}
.y4a{bottom:621.540012px;}
.y124{bottom:623.160015px;}
.ye7{bottom:627.120002px;}
.y123{bottom:628.019989px;}
.y121{bottom:632.339985px;}
.ybf{bottom:634.139992px;}
.y1a{bottom:636.660015px;}
.y14c{bottom:636.839985px;}
.y125{bottom:637.379998px;}
.y49{bottom:641.699993px;}
.ybe{bottom:648.360008px;}
.y120{bottom:650.879998px;}
.ye6{bottom:651.779983px;}
.y19{bottom:657.000000px;}
.y48{bottom:662.040012px;}
.ybd{bottom:666.899986px;}
.ye5{bottom:672.120002px;}
.y11f{bottom:674.100013px;}
.y18{bottom:677.160015px;}
.y47{bottom:682.199993px;}
.y11b{bottom:683.279983px;}
.y11c{bottom:688.319995px;}
.ye3{bottom:692.100013px;}
.y11d{bottom:692.639992px;}
.yb9{bottom:694.259994px;}
.ye2{bottom:696.779983px;}
.y17{bottom:697.500000px;}
.y11a{bottom:701.819995px;}
.y46{bottom:702.540012px;}
.y11e{bottom:706.860008px;}
.yb8{bottom:708.480011px;}
.y16{bottom:717.300007px;}
.y6e{bottom:717.660015px;}
.ye1{bottom:721.620002px;}
.y45{bottom:722.699993px;}
.yb7{bottom:727.019989px;}
.y116{bottom:734.220017px;}
.y15{bottom:736.199993px;}
.y6d{bottom:738.000000px;}
.y117{bottom:739.079990px;}
.y44{bottom:743.040012px;}
.y118{bottom:743.399986px;}
.ye0{bottom:746.279983px;}
.y119{bottom:748.439999px;}
.yb6{bottom:749.879998px;}
.y115{bottom:752.759994px;}
.y14{bottom:756.540012px;}
.y6c{bottom:758.160015px;}
.y43{bottom:763.199993px;}
.yb1{bottom:764.279983px;}
.yb0{bottom:768.600013px;}
.ydf{bottom:771.839985px;}
.y111{bottom:775.800007px;}
.y13{bottom:776.699993px;}
.ydb{bottom:777.240006px;}
.y6b{bottom:778.500000px;}
.ydd{bottom:781.379998px;}
.yda{bottom:781.920010px;}
.y42{bottom:783.540012px;}
.y113{bottom:785.160015px;}
.yaf{bottom:787.139992px;}
.y112{bottom:790.019989px;}
.yde{bottom:792.000000px;}
.y110{bottom:794.339985px;}
.y12{bottom:796.680004px;}
.y6a{bottom:798.660015px;}
.y114{bottom:799.379998px;}
.yb5{bottom:801.360008px;}
.y41{bottom:803.699993px;}
.y10f{bottom:812.879998px;}
.y11{bottom:815.220017px;}
.yd9{bottom:817.199993px;}
.y69{bottom:819.000000px;}
.yb4{bottom:819.899986px;}
.y40{bottom:824.040012px;}
.y10{bottom:833.759994px;}
.y10e{bottom:836.100013px;}
.yd8{bottom:837.899986px;}
.y68{bottom:839.160015px;}
.yb3{bottom:842.759994px;}
.y3f{bottom:844.199993px;}
.y10a{bottom:845.279983px;}
.y10b{bottom:850.319995px;}
.yf{bottom:852.660015px;}
.y10c{bottom:854.639992px;}
.yb2{bottom:856.980011px;}
.y67{bottom:859.500000px;}
.y109{bottom:863.819995px;}
.y3e{bottom:864.540012px;}
.y10d{bottom:868.860008px;}
.ye{bottom:873.000000px;}
.y66{bottom:879.660015px;}
.y3d{bottom:884.339985px;}
.yd{bottom:893.160015px;}
.y108{bottom:896.220017px;}
.yae{bottom:898.560001px;}
.y65{bottom:900.000000px;}
.y3c{bottom:902.879998px;}
.y104{bottom:905.400003px;}
.y105{bottom:910.439999px;}
.y106{bottom:914.759994px;}
.y64{bottom:920.159998px;}
.y3b{bottom:921.599997px;}
.yc{bottom:923.400003px;}
.y103{bottom:924.120002px;}
.y107{bottom:928.979994px;}
.ya6{bottom:930.780001px;}
.yac{bottom:935.819996px;}
.ya3{bottom:940.139992px;}
.y3a{bottom:940.500000px;}
.yb{bottom:944.819996px;}
.ya5{bottom:949.319996px;}
.y102{bottom:952.740006px;}
.y101{bottom:957.060001px;}
.ya2{bottom:958.680004px;}
.y39{bottom:960.659998px;}
.ya4{bottom:967.860008px;}
.ya{bottom:968.400003px;}
.yab{bottom:972.900003px;}
.y38{bottom:981.000000px;}
.ya9{bottom:991.439999px;}
.y9{bottom:991.979994px;}
.y37{bottom:1001.159998px;}
.ya7{bottom:1009.979994px;}
.y8{bottom:1015.560001px;}
.y36{bottom:1021.500000px;}
.ya1{bottom:1038.060001px;}
.y7{bottom:1039.319996px;}
.y35{bottom:1041.659998px;}
.y4{bottom:1062.360000px;}
.y3{bottom:1083.599997px;}
.y2{bottom:1102.140000px;}
.y1{bottom:1120.680000px;}
.hf{height:18.539978px;}
.ha{height:18.539979px;}
.hd{height:18.539996px;}
.hc{height:18.540011px;}
.he{height:18.540012px;}
.h9{height:18.540046px;}
.hb{height:18.540047px;}
.h10{height:20.159981px;}
.h11{height:20.160015px;}
.h8{height:44.775753px;}
.h1{height:46.034768px;}
.h6{height:48.669376px;}
.h4{height:50.037873px;}
.h7{height:51.437284px;}
.h3{height:56.943021px;}
.h5{height:57.301342px;}
.h2{height:62.284169px;}
.h18{height:82.754647px;}
.h16{height:82.754782px;}
.h19{height:82.754921px;}
.h14{height:83.474732px;}
.h17{height:83.474800px;}
.h15{height:83.474804px;}
.h12{height:88.989475px;}
.h13{height:90.357972px;}
.h0{height:1188.000000px;}
.w4{width:1.079991px;}
.w6{width:1.080025px;}
.w5{width:1.259994px;}
.w8{width:3.959988px;}
.w1{width:5.580025px;}
.wa{width:6.659981px;}
.wb{width:8.639991px;}
.wc{width:9.719983px;}
.w7{width:10.259994px;}
.w9{width:10.439999px;}
.w3{width:10.800007px;}
.w10{width:75.960022px;}
.wd{width:169.379998px;}
.we{width:169.560036px;}
.wf{width:170.460022px;}
.w2{width:237.600015px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:1.080025px;}
.x1{left:127.620002px;}
.x13{left:131.040003px;}
.x4{left:169.919992px;}
.x31{left:181.620002px;}
.x12{left:211.680005px;}
.x14{left:273.780001px;}
.x21{left:317.879998px;}
.x22{left:331.560001px;}
.x2c{left:349.740006px;}
.x2d{left:355.319996px;}
.x18{left:375.120002px;}
.x19{left:379.620002px;}
.x23{left:409.680005px;}
.x24{left:416.879998px;}
.x1a{left:438.120002px;}
.x1b{left:442.620002px;}
.x2{left:444.600014px;}
.x29{left:447.480011px;}
.x2a{left:468.180005px;}
.x2b{left:471.779983px;}
.x1c{left:492.120002px;}
.xf{left:494.100014px;}
.x1d{left:496.620002px;}
.xe{left:504.180005px;}
.x5{left:505.259994px;}
.x25{left:509.399987px;}
.x9{left:516.420010px;}
.x26{left:523.259994px;}
.x10{left:533.519989px;}
.x17{left:536.399987px;}
.x15{left:550.620002px;}
.x6{left:554.759994px;}
.x7{left:564.300007px;}
.xb{left:584.820030px;}
.xa{left:591.120002px;}
.xd{left:598.860008px;}
.x27{left:608.940033px;}
.x2e{left:617.759994px;}
.x28{left:618.840019px;}
.xc{left:623.700027px;}
.x11{left:631.440033px;}
.x8{left:661.679970px;}
.x1e{left:702.899987px;}
.x1f{left:707.580025px;}
.x30{left:712.259994px;}
.x16{left:782.639992px;}
.x20{left:787.139992px;}
.x3{left:790.379998px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:33.279968pt;}
.v1{vertical-align:35.840088pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.044076pt;}
.ls1{letter-spacing:0.047909pt;}
.ls3{letter-spacing:173.467932pt;}
.ls5{letter-spacing:212.507912pt;}
.ls2{letter-spacing:304.670312pt;}
.ls6{letter-spacing:414.107888pt;}
.ws2{word-spacing:-15.969700pt;}
.ws1{word-spacing:-14.692100pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-4.841644pt;}
._3{margin-left:-3.662162pt;}
._2{margin-left:-2.242140pt;}
._0{margin-left:-0.984830pt;}
._1{width:0.927439pt;}
._5{width:2.140189pt;}
._9{width:3.400849pt;}
._4{width:4.487985pt;}
._10{width:5.828940pt;}
._13{width:7.186615pt;}
._14{width:8.463691pt;}
._11{width:9.646697pt;}
._8{width:10.972681pt;}
._44{width:11.898527pt;}
._6{width:12.791480pt;}
._7{width:13.846728pt;}
._12{width:14.804609pt;}
._26{width:15.999697pt;}
._18{width:17.326926pt;}
._19{width:18.352825pt;}
._1c{width:19.689892pt;}
._15{width:20.808571pt;}
._16{width:21.911177pt;}
._17{width:23.731972pt;}
._21{width:24.706116pt;}
._1f{width:25.950315pt;}
._20{width:27.580420pt;}
._22{width:28.745064pt;}
._43{width:32.194967pt;}
._1b{width:34.333857pt;}
._1a{width:35.964513pt;}
._1e{width:38.471257pt;}
._1d{width:39.526006pt;}
._39{width:45.257526pt;}
._37{width:46.588649pt;}
._50{width:47.542098pt;}
._2b{width:50.416343pt;}
._31{width:51.573295pt;}
._4d{width:53.865101pt;}
._41{width:55.007222pt;}
._40{width:55.992970pt;}
._46{width:57.810116pt;}
._27{width:58.900629pt;}
._47{width:59.810647pt;}
._42{width:61.192597pt;}
._3d{width:69.536562pt;}
._4c{width:70.728855pt;}
._2d{width:72.214983pt;}
._45{width:85.677242pt;}
._35{width:86.742158pt;}
._38{width:87.745767pt;}
._30{width:96.363908pt;}
._3a{width:102.374323pt;}
._2c{width:104.154383pt;}
._36{width:107.587883pt;}
._3c{width:120.681828pt;}
._48{width:122.886144pt;}
._49{width:123.957061pt;}
._29{width:180.243010pt;}
._3b{width:188.661486pt;}
._34{width:194.904940pt;}
._4b{width:200.602671pt;}
._4a{width:202.360520pt;}
._4f{width:204.195156pt;}
._2a{width:233.508096pt;}
._2f{width:243.330319pt;}
._32{width:244.611594pt;}
._3e{width:277.358152pt;}
._23{width:285.688344pt;}
._3f{width:288.259002pt;}
._33{width:295.161375pt;}
._b{width:309.121784pt;}
._2e{width:310.403059pt;}
._a{width:459.643037pt;}
._28{width:471.282565pt;}
._d{width:494.242244pt;}
._f{width:508.934344pt;}
._24{width:676.850355pt;}
._c{width:787.849400pt;}
._e{width:873.270876pt;}
._4e{width:1752.116135pt;}
.fs0{font-size:58.768400pt;}
.fs1{font-size:63.878800pt;}
.fs3{font-size:67.511693pt;}
.fs2{font-size:74.738000pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:3.839966pt;}
.yaa{bottom:3.839996pt;}
.yad{bottom:3.839997pt;}
.ya8{bottom:3.840011pt;}
.y135{bottom:3.840026pt;}
.y92{bottom:3.840027pt;}
.ye4{bottom:4.159973pt;}
.ydc{bottom:4.160004pt;}
.y6{bottom:51.679993pt;}
.y5{bottom:71.200012pt;}
.y100{bottom:101.599976pt;}
.y63{bottom:102.400024pt;}
.y34{bottom:105.440002pt;}
.y14b{bottom:113.119995pt;}
.y87{bottom:116.000000pt;}
.yd7{bottom:118.559998pt;}
.yff{bottom:119.520020pt;}
.y62{bottom:120.479980pt;}
.y33{bottom:123.359985pt;}
.ya0{bottom:123.520020pt;}
.y14a{bottom:131.039978pt;}
.y86{bottom:133.919983pt;}
.y9f{bottom:136.159973pt;}
.yd6{bottom:136.640015pt;}
.yfe{bottom:137.599976pt;}
.y61{bottom:138.400024pt;}
.y32{bottom:141.440002pt;}
.y149{bottom:149.119995pt;}
.y85{bottom:152.000000pt;}
.yd5{bottom:154.559998pt;}
.yfd{bottom:155.520020pt;}
.y60{bottom:156.479980pt;}
.y9e{bottom:156.640015pt;}
.y31{bottom:159.359985pt;}
.y148{bottom:167.039978pt;}
.y9d{bottom:169.280029pt;}
.y84{bottom:169.919983pt;}
.yd4{bottom:172.640015pt;}
.y99{bottom:173.119995pt;}
.yfc{bottom:173.919983pt;}
.y5f{bottom:174.400024pt;}
.y30{bottom:177.440002pt;}
.y147{bottom:185.119995pt;}
.y83{bottom:188.000000pt;}
.y98{bottom:189.599976pt;}
.yd3{bottom:190.559998pt;}
.y5e{bottom:192.479980pt;}
.yfb{bottom:193.119995pt;}
.y2f{bottom:195.359985pt;}
.y9c{bottom:202.239990pt;}
.y146{bottom:203.039978pt;}
.y82{bottom:205.919983pt;}
.yd2{bottom:208.640015pt;}
.y5d{bottom:210.400024pt;}
.yfa{bottom:211.039978pt;}
.y2e{bottom:213.440002pt;}
.y145{bottom:221.119995pt;}
.y9b{bottom:222.559998pt;}
.y81{bottom:224.000000pt;}
.yd1{bottom:226.559998pt;}
.y5c{bottom:228.479980pt;}
.yf9{bottom:229.119995pt;}
.y2d{bottom:231.359985pt;}
.y9a{bottom:235.200012pt;}
.y144{bottom:239.039978pt;}
.y80{bottom:241.919983pt;}
.yd0{bottom:244.640015pt;}
.y5b{bottom:246.400024pt;}
.yf8{bottom:247.039978pt;}
.y2c{bottom:249.440002pt;}
.y143{bottom:257.119995pt;}
.y97{bottom:259.520020pt;}
.y7f{bottom:260.000000pt;}
.ycf{bottom:262.559998pt;}
.y5a{bottom:264.479980pt;}
.yf7{bottom:265.119995pt;}
.y2b{bottom:267.359985pt;}
.y96{bottom:272.159973pt;}
.y142{bottom:275.039978pt;}
.y7e{bottom:277.919983pt;}
.yce{bottom:280.640015pt;}
.y59{bottom:282.400024pt;}
.yf6{bottom:283.039978pt;}
.y2a{bottom:285.440002pt;}
.y8f{bottom:292.640015pt;}
.y141{bottom:293.119995pt;}
.y7d{bottom:296.000000pt;}
.ycd{bottom:298.559998pt;}
.y58{bottom:300.479980pt;}
.yf5{bottom:301.119995pt;}
.y29{bottom:303.359985pt;}
.y94{bottom:305.280029pt;}
.y8d{bottom:309.119995pt;}
.y7c{bottom:313.919983pt;}
.y13d{bottom:315.200012pt;}
.ycc{bottom:316.640015pt;}
.y57{bottom:318.400024pt;}
.yf4{bottom:319.039978pt;}
.y28{bottom:321.440002pt;}
.y13f{bottom:323.359985pt;}
.y8e{bottom:325.599976pt;}
.y13e{bottom:327.840027pt;}
.y13c{bottom:331.679993pt;}
.y7b{bottom:332.000000pt;}
.ycb{bottom:334.559998pt;}
.y56{bottom:336.479980pt;}
.yf3{bottom:337.119995pt;}
.y93{bottom:338.239990pt;}
.y27{bottom:339.359985pt;}
.y140{bottom:344.320007pt;}
.y13b{bottom:348.159973pt;}
.y7a{bottom:349.919983pt;}
.yca{bottom:352.640015pt;}
.y55{bottom:354.400024pt;}
.y91{bottom:354.719971pt;}
.yf2{bottom:355.039978pt;}
.y26{bottom:357.440002pt;}
.y90{bottom:358.559998pt;}
.y79{bottom:368.000000pt;}
.y13a{bottom:368.640015pt;}
.yc9{bottom:370.559998pt;}
.y54{bottom:372.479980pt;}
.yf1{bottom:373.119995pt;}
.y25{bottom:375.200012pt;}
.y8c{bottom:379.679993pt;}
.y139{bottom:381.280029pt;}
.y133{bottom:385.119995pt;}
.y78{bottom:385.919983pt;}
.yc8{bottom:388.640015pt;}
.y134{bottom:389.599976pt;}
.y53{bottom:390.400024pt;}
.yf0{bottom:391.039978pt;}
.y24{bottom:392.000000pt;}
.y136{bottom:393.440002pt;}
.y138{bottom:397.760010pt;}
.y8b{bottom:400.799988pt;}
.y132{bottom:401.599976pt;}
.y77{bottom:404.000000pt;}
.yc7{bottom:406.559998pt;}
.y52{bottom:408.479980pt;}
.yef{bottom:409.119995pt;}
.y23{bottom:409.919983pt;}
.y137{bottom:414.239990pt;}
.y8a{bottom:418.880005pt;}
.y76{bottom:421.919983pt;}
.yc6{bottom:424.640015pt;}
.y51{bottom:426.400024pt;}
.yee{bottom:427.039978pt;}
.y22{bottom:428.000000pt;}
.y89{bottom:437.119995pt;}
.y12e{bottom:438.559998pt;}
.y75{bottom:440.000000pt;}
.yc5{bottom:442.559998pt;}
.y50{bottom:444.479980pt;}
.yed{bottom:445.119995pt;}
.y21{bottom:445.599976pt;}
.y130{bottom:446.880005pt;}
.y12f{bottom:451.359985pt;}
.y12d{bottom:455.200012pt;}
.y88{bottom:456.799988pt;}
.y74{bottom:457.919983pt;}
.y20{bottom:462.080017pt;}
.y4f{bottom:462.400024pt;}
.yec{bottom:463.039978pt;}
.yc4{bottom:464.640015pt;}
.y131{bottom:467.840027pt;}
.y12c{bottom:471.679993pt;}
.y73{bottom:476.000000pt;}
.yc3{bottom:477.280029pt;}
.y1f{bottom:478.880005pt;}
.y4e{bottom:480.479980pt;}
.yeb{bottom:481.119995pt;}
.y150{bottom:491.200012pt;}
.y12b{bottom:492.159973pt;}
.y72{bottom:493.919983pt;}
.y1e{bottom:496.960022pt;}
.yc2{bottom:497.599976pt;}
.y4d{bottom:498.400024pt;}
.yea{bottom:499.039978pt;}
.y127{bottom:500.320007pt;}
.y128{bottom:504.799988pt;}
.y129{bottom:508.640015pt;}
.y14f{bottom:509.280029pt;}
.yc1{bottom:510.239990pt;}
.y71{bottom:512.000000pt;}
.ybc{bottom:514.080017pt;}
.y1d{bottom:514.880005pt;}
.y4c{bottom:516.479980pt;}
.y126{bottom:516.799988pt;}
.ye9{bottom:517.119995pt;}
.y12a{bottom:521.280029pt;}
.y14e{bottom:527.200012pt;}
.y70{bottom:529.919983pt;}
.yba{bottom:530.559998pt;}
.y1c{bottom:532.640015pt;}
.y4b{bottom:534.400024pt;}
.ye8{bottom:535.039978pt;}
.yc0{bottom:543.359985pt;}
.y14d{bottom:545.279999pt;}
.y122{bottom:545.600006pt;}
.ybb{bottom:547.200012pt;}
.y6f{bottom:548.000000pt;}
.y1b{bottom:549.119995pt;}
.y4a{bottom:552.480011pt;}
.y124{bottom:553.920013pt;}
.ye7{bottom:557.440002pt;}
.y123{bottom:558.239990pt;}
.y121{bottom:562.079987pt;}
.ybf{bottom:563.679993pt;}
.y1a{bottom:565.920013pt;}
.y14c{bottom:566.079987pt;}
.y125{bottom:566.559998pt;}
.y49{bottom:570.399994pt;}
.ybe{bottom:576.320007pt;}
.y120{bottom:578.559998pt;}
.ye6{bottom:579.359985pt;}
.y19{bottom:584.000000pt;}
.y48{bottom:588.480011pt;}
.ybd{bottom:592.799988pt;}
.ye5{bottom:597.440002pt;}
.y11f{bottom:599.200012pt;}
.y18{bottom:601.920013pt;}
.y47{bottom:606.399994pt;}
.y11b{bottom:607.359985pt;}
.y11c{bottom:611.839996pt;}
.ye3{bottom:615.200012pt;}
.y11d{bottom:615.679993pt;}
.yb9{bottom:617.119995pt;}
.ye2{bottom:619.359985pt;}
.y17{bottom:620.000000pt;}
.y11a{bottom:623.839996pt;}
.y46{bottom:624.480011pt;}
.y11e{bottom:628.320007pt;}
.yb8{bottom:629.760010pt;}
.y16{bottom:637.600006pt;}
.y6e{bottom:637.920013pt;}
.ye1{bottom:641.440002pt;}
.y45{bottom:642.399994pt;}
.yb7{bottom:646.239990pt;}
.y116{bottom:652.640015pt;}
.y15{bottom:654.399994pt;}
.y6d{bottom:656.000000pt;}
.y117{bottom:656.959991pt;}
.y44{bottom:660.480011pt;}
.y118{bottom:660.799988pt;}
.ye0{bottom:663.359985pt;}
.y119{bottom:665.279999pt;}
.yb6{bottom:666.559998pt;}
.y115{bottom:669.119995pt;}
.y14{bottom:672.480011pt;}
.y6c{bottom:673.920013pt;}
.y43{bottom:678.399994pt;}
.yb1{bottom:679.359985pt;}
.yb0{bottom:683.200012pt;}
.ydf{bottom:686.079987pt;}
.y111{bottom:689.600006pt;}
.y13{bottom:690.399994pt;}
.ydb{bottom:690.880005pt;}
.y6b{bottom:692.000000pt;}
.ydd{bottom:694.559998pt;}
.yda{bottom:695.040009pt;}
.y42{bottom:696.480011pt;}
.y113{bottom:697.920013pt;}
.yaf{bottom:699.679993pt;}
.y112{bottom:702.239990pt;}
.yde{bottom:704.000000pt;}
.y110{bottom:706.079987pt;}
.y12{bottom:708.160004pt;}
.y6a{bottom:709.920013pt;}
.y114{bottom:710.559998pt;}
.yb5{bottom:712.320007pt;}
.y41{bottom:714.399994pt;}
.y10f{bottom:722.559998pt;}
.y11{bottom:724.640015pt;}
.yd9{bottom:726.399994pt;}
.y69{bottom:728.000000pt;}
.yb4{bottom:728.799988pt;}
.y40{bottom:732.480011pt;}
.y10{bottom:741.119995pt;}
.y10e{bottom:743.200012pt;}
.yd8{bottom:744.799988pt;}
.y68{bottom:745.920013pt;}
.yb3{bottom:749.119995pt;}
.y3f{bottom:750.399994pt;}
.y10a{bottom:751.359985pt;}
.y10b{bottom:755.839996pt;}
.yf{bottom:757.920013pt;}
.y10c{bottom:759.679993pt;}
.yb2{bottom:761.760010pt;}
.y67{bottom:764.000000pt;}
.y109{bottom:767.839996pt;}
.y3e{bottom:768.480011pt;}
.y10d{bottom:772.320007pt;}
.ye{bottom:776.000000pt;}
.y66{bottom:781.920013pt;}
.y3d{bottom:786.079987pt;}
.yd{bottom:793.920013pt;}
.y108{bottom:796.640015pt;}
.yae{bottom:798.720001pt;}
.y65{bottom:800.000000pt;}
.y3c{bottom:802.559998pt;}
.y104{bottom:804.800003pt;}
.y105{bottom:809.279999pt;}
.y106{bottom:813.119995pt;}
.y64{bottom:817.919998pt;}
.y3b{bottom:819.199997pt;}
.yc{bottom:820.800003pt;}
.y103{bottom:821.440002pt;}
.y107{bottom:825.759995pt;}
.ya6{bottom:827.360001pt;}
.yac{bottom:831.839996pt;}
.ya3{bottom:835.679993pt;}
.y3a{bottom:836.000000pt;}
.yb{bottom:839.839996pt;}
.ya5{bottom:843.839996pt;}
.y102{bottom:846.880005pt;}
.y101{bottom:850.720001pt;}
.ya2{bottom:852.160004pt;}
.y39{bottom:853.919998pt;}
.ya4{bottom:860.320007pt;}
.ya{bottom:860.800003pt;}
.yab{bottom:864.800003pt;}
.y38{bottom:872.000000pt;}
.ya9{bottom:881.279999pt;}
.y9{bottom:881.759995pt;}
.y37{bottom:889.919998pt;}
.ya7{bottom:897.759995pt;}
.y8{bottom:902.720001pt;}
.y36{bottom:908.000000pt;}
.ya1{bottom:922.720001pt;}
.y7{bottom:923.839996pt;}
.y35{bottom:925.919998pt;}
.y4{bottom:944.320000pt;}
.y3{bottom:963.199997pt;}
.y2{bottom:979.680000pt;}
.y1{bottom:996.160000pt;}
.hf{height:16.479980pt;}
.ha{height:16.479981pt;}
.hd{height:16.479996pt;}
.hc{height:16.480010pt;}
.he{height:16.480011pt;}
.h9{height:16.480041pt;}
.hb{height:16.480042pt;}
.h10{height:17.919983pt;}
.h11{height:17.920013pt;}
.h8{height:39.800669pt;}
.h1{height:40.919794pt;}
.h6{height:43.261668pt;}
.h4{height:44.478110pt;}
.h7{height:45.722030pt;}
.h3{height:50.616019pt;}
.h5{height:50.934526pt;}
.h2{height:55.363706pt;}
.h18{height:73.559686pt;}
.h16{height:73.559806pt;}
.h19{height:73.559930pt;}
.h14{height:74.199762pt;}
.h17{height:74.199822pt;}
.h15{height:74.199826pt;}
.h12{height:79.101756pt;}
.h13{height:80.318198pt;}
.h0{height:1056.000000pt;}
.w4{width:0.959992pt;}
.w6{width:0.960022pt;}
.w5{width:1.119995pt;}
.w8{width:3.519989pt;}
.w1{width:4.960022pt;}
.wa{width:5.919983pt;}
.wb{width:7.679992pt;}
.wc{width:8.639985pt;}
.w7{width:9.119995pt;}
.w9{width:9.279999pt;}
.w3{width:9.600006pt;}
.w10{width:67.520020pt;}
.wd{width:150.559998pt;}
.we{width:150.720032pt;}
.wf{width:151.520020pt;}
.w2{width:211.200013pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:0.960022pt;}
.x1{left:113.440002pt;}
.x13{left:116.480003pt;}
.x4{left:151.039993pt;}
.x31{left:161.440002pt;}
.x12{left:188.160004pt;}
.x14{left:243.360001pt;}
.x21{left:282.559998pt;}
.x22{left:294.720001pt;}
.x2c{left:310.880005pt;}
.x2d{left:315.839996pt;}
.x18{left:333.440002pt;}
.x19{left:337.440002pt;}
.x23{left:364.160004pt;}
.x24{left:370.559998pt;}
.x1a{left:389.440002pt;}
.x1b{left:393.440002pt;}
.x2{left:395.200012pt;}
.x29{left:397.760010pt;}
.x2a{left:416.160004pt;}
.x2b{left:419.359985pt;}
.x1c{left:437.440002pt;}
.xf{left:439.200012pt;}
.x1d{left:441.440002pt;}
.xe{left:448.160004pt;}
.x5{left:449.119995pt;}
.x25{left:452.799988pt;}
.x9{left:459.040009pt;}
.x26{left:465.119995pt;}
.x10{left:474.239990pt;}
.x17{left:476.799988pt;}
.x15{left:489.440002pt;}
.x6{left:493.119995pt;}
.x7{left:501.600006pt;}
.xb{left:519.840027pt;}
.xa{left:525.440002pt;}
.xd{left:532.320007pt;}
.x27{left:541.280029pt;}
.x2e{left:549.119995pt;}
.x28{left:550.080017pt;}
.xc{left:554.400024pt;}
.x11{left:561.280029pt;}
.x8{left:588.159973pt;}
.x1e{left:624.799988pt;}
.x1f{left:628.960022pt;}
.x30{left:633.119995pt;}
.x16{left:695.679993pt;}
.x20{left:699.679993pt;}
.x3{left:702.559998pt;}
}




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