
    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_3aeb6f4df68172ae49a00e02.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_a74d8bd616551905cd4e4f03.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.953125;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_8d87852e8765a81235731c82.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_29882b226ffdaaa9cfd44b0e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_c9e8c75fc914c6a5874a05fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_9a84327d55df1f354ecee85b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_3f09baeca6b04311c2691988.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937500;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_3311a8b7c3b7266798181889.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.484525px;}
.ls13{letter-spacing:-0.433460px;}
.lsf{letter-spacing:-0.371537px;}
.ls9{letter-spacing:-0.309614px;}
.lse{letter-spacing:-0.247692px;}
.lsc{letter-spacing:-0.185769px;}
.ls16{letter-spacing:-0.157387px;}
.ls18{letter-spacing:-0.139326px;}
.ls4{letter-spacing:-0.123846px;}
.ls19{letter-spacing:-0.101657px;}
.lsa{letter-spacing:-0.061923px;}
.ls17{letter-spacing:-0.015481px;}
.ls3{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000929px;}
.ls15{letter-spacing:0.011456px;}
.ls1b{letter-spacing:0.043036px;}
.ls14{letter-spacing:0.046442px;}
.ls0{letter-spacing:0.054183px;}
.lsd{letter-spacing:0.061923px;}
.ls1c{letter-spacing:0.102689px;}
.ls1{letter-spacing:0.123846px;}
.ls8{letter-spacing:0.185769px;}
.ls12{letter-spacing:0.247692px;}
.lsb{letter-spacing:0.309614px;}
.ls6{letter-spacing:0.433460px;}
.ls11{letter-spacing:7.988052px;}
.ls10{letter-spacing:15.109183px;}
.ls7{letter-spacing:17.586098px;}
.ls2{letter-spacing:725.963204px;}
.ls5{letter-spacing:729.183194px;}
.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;}
}
.wsa{word-spacing:-14.304185px;}
.ws7{word-spacing:-14.180340px;}
.ws3{word-spacing:-14.118417px;}
.ws8{word-spacing:-14.056494px;}
.ws0{word-spacing:-13.994571px;}
.ws6{word-spacing:-13.932648px;}
.ws5{word-spacing:-13.870725px;}
.ws4{word-spacing:-13.684956px;}
.ws9{word-spacing:-13.623034px;}
.wsb{word-spacing:-13.561111px;}
.ws12{word-spacing:-12.848069px;}
.ws13{word-spacing:-11.788155px;}
.wsf{word-spacing:-11.696922px;}
.ws14{word-spacing:-11.685467px;}
.ws11{word-spacing:-11.583810px;}
.wsc{word-spacing:-10.542370px;}
.ws10{word-spacing:-10.495928px;}
.wsd{word-spacing:-10.480447px;}
.wse{word-spacing:-10.356602px;}
.ws1{word-spacing:-9.306390px;}
.ws2{word-spacing:0.000000px;}
._6{margin-left:-3114.340680px;}
._7{margin-left:-1082.134680px;}
._2{margin-left:-1.137523px;}
._9{width:1.123178px;}
._a{width:2.282581px;}
._15{width:3.591527px;}
._c{width:4.768062px;}
._4{width:5.894439px;}
._5{width:7.187079px;}
._8{width:8.954152px;}
._12{width:10.056173px;}
._f{width:11.084196px;}
._10{width:12.095603px;}
._11{width:15.356874px;}
._b{width:16.471486px;}
._0{width:17.895712px;}
._1{width:19.030965px;}
._3{width:20.035354px;}
._13{width:21.858777px;}
._16{width:23.009613px;}
._18{width:24.237544px;}
._1b{width:25.424606px;}
._1c{width:26.435600px;}
._22{width:27.493759px;}
._17{width:28.773498px;}
._1a{width:30.651826px;}
._d{width:31.931565px;}
._14{width:33.562201px;}
._19{width:34.862581px;}
._20{width:36.782191px;}
._1f{width:37.896803px;}
._e{width:49.042921px;}
._24{width:59.198273px;}
._23{width:93.854445px;}
._21{width:125.125500px;}
._1e{width:156.210785px;}
._1d{width:729.183194px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:41.178715px;}
.fs6{font-size:46.442160px;}
.fs2{font-size:51.705605px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:56.659435px;}
.fs0{font-size:61.922880px;}
.fs4{font-size:66.000000px;}
.ye3{bottom:-3.715373px;}
.yf5{bottom:-3.637969px;}
.ydc{bottom:-3.328355px;}
.ye1{bottom:-3.096144px;}
.ye9{bottom:-0.309614px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.096144px;}
.ye2{bottom:3.405758px;}
.ydb{bottom:3.715373px;}
.yf2{bottom:3.792776px;}
.yde{bottom:3.947584px;}
.ya2{bottom:4.412005px;}
.ya9{bottom:5.108638px;}
.ya8{bottom:5.263445px;}
.ycc{bottom:5.727866px;}
.yb5{bottom:5.805270px;}
.ya4{bottom:6.114884px;}
.yd1{bottom:6.192288px;}
.yd3{bottom:6.656710px;}
.ye5{bottom:6.734113px;}
.ye8{bottom:7.353342px;}
.yef{bottom:10.139872px;}
.yd8{bottom:10.217275px;}
.yc9{bottom:10.681697px;}
.ya0{bottom:10.836504px;}
.ye0{bottom:11.610540px;}
.yb3{bottom:13.081208px;}
.ya6{bottom:14.397070px;}
.yad{bottom:15.325913px;}
.ya1{bottom:17.261003px;}
.yeb{bottom:17.338406px;}
.yca{bottom:18.963882px;}
.ya3{bottom:19.041286px;}
.ye7{bottom:21.518201px;}
.yee{bottom:24.691748px;}
.yc0{bottom:26.162417px;}
.yf0{bottom:31.425862px;}
.yed{bottom:38.856607px;}
.yb8{bottom:46.442160px;}
.y3{bottom:49.770515px;}
.y1{bottom:50.940000px;}
.y2{bottom:68.734397px;}
.yd4{bottom:88.781929px;}
.y13c{bottom:91.800670px;}
.y35{bottom:97.373729px;}
.y89{bottom:101.243909px;}
.y5a{bottom:103.720824px;}
.y85{bottom:106.352546px;}
.y107{bottom:110.687148px;}
.y6e{bottom:114.092906px;}
.y125{bottom:116.260207px;}
.y34{bottom:125.703446px;}
.y88{bottom:129.573626px;}
.y106{bottom:134.372650px;}
.y84{bottom:134.682264px;}
.y124{bottom:135.146686px;}
.y59{bottom:135.920722px;}
.y6d{bottom:142.422624px;}
.y13b{bottom:148.460105px;}
.yd2{bottom:153.731981px;}
.y33{bottom:154.033164px;}
.y87{bottom:157.903344px;}
.y105{bottom:158.135555px;}
.y83{bottom:163.011982px;}
.y58{bottom:164.250439px;}
.y13a{bottom:167.346583px;}
.y6c{bottom:170.752342px;}
.y123{bottom:172.919642px;}
.yd0{bottom:175.017971px;}
.y104{bottom:175.473961px;}
.y32{bottom:182.362882px;}
.y86{bottom:186.233062px;}
.y82{bottom:191.341699px;}
.y122{bottom:191.806121px;}
.y57{bottom:192.657560px;}
.ycf{bottom:195.297714px;}
.y103{bottom:198.385427px;}
.y139{bottom:205.119540px;}
.y31{bottom:210.692599px;}
.y6b{bottom:214.562779px;}
.yce{bottom:214.648614px;}
.y81{bottom:219.748820px;}
.y56{bottom:220.987278px;}
.y138{bottom:224.083422px;}
.y121{bottom:229.656481px;}
.ycd{bottom:233.999514px;}
.y30{bottom:239.099720px;}
.y6a{bottom:242.969900px;}
.y80{bottom:248.078538px;}
.y120{bottom:248.542960px;}
.y55{bottom:249.316996px;}
.ycb{bottom:253.350414px;}
.y137{bottom:261.856379px;}
.y2f{bottom:267.429438px;}
.y69{bottom:271.299618px;}
.yc7{bottom:271.996250px;}
.yc8{bottom:274.017175px;}
.y7f{bottom:276.408256px;}
.y54{bottom:277.646713px;}
.y136{bottom:280.742857px;}
.y11f{bottom:286.315916px;}
.y2e{bottom:295.759156px;}
.yc6{bottom:299.087510px;}
.y68{bottom:299.629336px;}
.y7e{bottom:304.737973px;}
.y11e{bottom:305.202395px;}
.y53{bottom:306.053834px;}
.y135{bottom:318.515814px;}
.y2d{bottom:324.088873px;}
.yc5{bottom:325.249927px;}
.y67{bottom:327.959053px;}
.y52{bottom:334.383552px;}
.y7d{bottom:337.041076px;}
.y9b{bottom:337.428094px;}
.y11d{bottom:343.001153px;}
.y2c{bottom:352.521796px;}
.y66{bottom:356.391976px;}
.y11c{bottom:361.965035px;}
.y7c{bottom:365.370793px;}
.y9a{bottom:365.835215px;}
.y134{bottom:375.278454px;}
.y51{bottom:378.219791px;}
.y2b{bottom:380.851513px;}
.y65{bottom:384.721693px;}
.yc4{bottom:391.309430px;}
.y7b{bottom:393.700511px;}
.y99{bottom:394.164932px;}
.y11b{bottom:399.737992px;}
.y2a{bottom:409.181231px;}
.y50{bottom:410.419688px;}
.y64{bottom:413.051411px;}
.yc3{bottom:414.530510px;}
.y11a{bottom:418.624470px;}
.y7a{bottom:422.030228px;}
.y98{bottom:422.494650px;}
.y133{bottom:431.937889px;}
.yc2{bottom:434.887657px;}
.y29{bottom:437.510948px;}
.y4f{bottom:438.749406px;}
.y63{bottom:441.381128px;}
.y79{bottom:450.359946px;}
.y97{bottom:450.824368px;}
.y119{bottom:456.397427px;}
.ybf{bottom:457.102490px;}
.y28{bottom:465.840666px;}
.y4e{bottom:467.156527px;}
.y62{bottom:469.710846px;}
.y118{bottom:475.283905px;}
.yc1{bottom:477.459637px;}
.y78{bottom:478.767067px;}
.y96{bottom:479.154085px;}
.y132{bottom:488.674728px;}
.y27{bottom:494.247787px;}
.y4d{bottom:495.486245px;}
.ybe{bottom:497.739380px;}
.y61{bottom:498.117967px;}
.y77{bottom:507.096785px;}
.y95{bottom:507.561206px;}
.y12{bottom:510.657350px;}
.y117{bottom:513.134266px;}
.ybd{bottom:520.960460px;}
.y26{bottom:522.577505px;}
.y4c{bottom:523.815962px;}
.y60{bottom:526.447685px;}
.y116{bottom:532.020744px;}
.y76{bottom:535.426502px;}
.y94{bottom:535.890924px;}
.ybc{bottom:541.317607px;}
.y131{bottom:545.334163px;}
.y11{bottom:548.507711px;}
.y25{bottom:550.907222px;}
.y4b{bottom:552.145680px;}
.y102{bottom:552.610102px;}
.y5f{bottom:554.777402px;}
.yfc{bottom:562.827377px;}
.y75{bottom:563.756220px;}
.y93{bottom:564.220642px;}
.yb7{bottom:564.538687px;}
.y115{bottom:569.793701px;}
.y24{bottom:579.236940px;}
.y4a{bottom:580.475398px;}
.y101{bottom:581.017223px;}
.y5e{bottom:583.107120px;}
.ybb{bottom:584.818430px;}
.y10{bottom:586.280668px;}
.y114{bottom:588.680179px;}
.yfb{bottom:591.157094px;}
.y74{bottom:592.085938px;}
.y92{bottom:592.550359px;}
.y130{bottom:601.993598px;}
.yba{bottom:605.175577px;}
.y100{bottom:607.102236px;}
.y23{bottom:607.566658px;}
.y49{bottom:608.882519px;}
.y5d{bottom:611.436838px;}
.y9c{bottom:612.675295px;}
.yfa{bottom:617.242108px;}
.y73{bottom:620.493059px;}
.y91{bottom:620.880077px;}
.yf{bottom:624.053624px;}
.yb9{bottom:625.455320px;}
.y113{bottom:626.530540px;}
.yff{bottom:630.710334px;}
.y22{bottom:635.999580px;}
.y48{bottom:637.238038px;}
.y5c{bottom:639.869760px;}
.y112{bottom:645.442819px;}
.yb6{bottom:645.812467px;}
.y72{bottom:648.848578px;}
.y90{bottom:649.312999px;}
.y12f{bottom:658.756238px;}
.yfe{bottom:659.685082px;}
.ye{bottom:661.852382px;}
.y21{bottom:664.329298px;}
.y47{bottom:665.567755px;}
.y5b{bottom:668.199478px;}
.yb4{bottom:669.033547px;}
.y71{bottom:677.178295px;}
.y8f{bottom:677.642717px;}
.yf9{bottom:681.031105px;}
.yfd{bottom:682.673951px;}
.y111{bottom:683.215776px;}
.yb1{bottom:689.640275px;}
.yd{bottom:690.259504px;}
.yb2{bottom:691.274182px;}
.y20{bottom:692.659015px;}
.y46{bottom:693.897473px;}
.y3c{bottom:696.529195px;}
.yf8{bottom:696.537626px;}
.y110{bottom:702.102254px;}
.y70{bottom:705.508013px;}
.y8e{bottom:705.972434px;}
.yf7{bottom:711.940943px;}
.y12e{bottom:715.415674px;}
.yb0{bottom:716.808938px;}
.yc{bottom:718.589221px;}
.y1f{bottom:720.988733px;}
.y45{bottom:722.227190px;}
.y3b{bottom:724.858913px;}
.yf6{bottom:727.344259px;}
.y6f{bottom:733.837730px;}
.y8d{bottom:734.302152px;}
.y10f{bottom:739.875211px;}
.yf4{bottom:742.747576px;}
.yaf{bottom:745.138656px;}
.y1e{bottom:749.318450px;}
.y44{bottom:750.634312px;}
.y3a{bottom:753.188630px;}
.yb{bottom:756.362178px;}
.yf3{bottom:758.150892px;}
.y10e{bottom:758.839093px;}
.y8c{bottom:762.709273px;}
.y12d{bottom:772.152512px;}
.y1d{bottom:777.725572px;}
.y43{bottom:778.964029px;}
.y16{bottom:779.699085px;}
.y39{bottom:781.595752px;}
.y8b{bottom:788.794286px;}
.yf1{bottom:789.421946px;}
.ya{bottom:790.342358px;}
.y12c{bottom:791.038991px;}
.y10d{bottom:796.612050px;}
.y1c{bottom:806.055289px;}
.yec{bottom:806.218528px;}
.y42{bottom:807.293747px;}
.y38{bottom:809.925469px;}
.y8a{bottom:812.402384px;}
.yac{bottom:812.720430px;}
.y10c{bottom:815.498528px;}
.y9{bottom:821.845624px;}
.y12b{bottom:828.811948px;}
.yae{bottom:832.922770px;}
.y1b{bottom:834.385007px;}
.y41{bottom:835.623464px;}
.y37{bottom:838.255187px;}
.y12a{bottom:847.698426px;}
.yea{bottom:849.332333px;}
.yaa{bottom:851.809248px;}
.y10b{bottom:853.271485px;}
.y8{bottom:857.141665px;}
.y1a{bottom:862.714724px;}
.y40{bottom:864.030586px;}
.y36{bottom:866.584904px;}
.yab{bottom:870.076498px;}
.y10a{bottom:872.157964px;}
.ye6{bottom:878.358683px;}
.y129{bottom:885.471383px;}
.ya5{bottom:888.962976px;}
.y19{bottom:891.121846px;}
.y3f{bottom:892.360303px;}
.ye4{bottom:893.761999px;}
.y7{bottom:894.992026px;}
.y128{bottom:904.435265px;}
.ya7{bottom:907.230226px;}
.y109{bottom:910.008324px;}
.ydf{bottom:915.899429px;}
.y18{bottom:919.451563px;}
.y9e{bottom:919.993388px;}
.y3e{bottom:920.690021px;}
.y6{bottom:923.321743px;}
.y9f{bottom:927.355162px;}
.y108{bottom:928.894802px;}
.ydd{bottom:931.302745px;}
.y127{bottom:942.234023px;}
.y17{bottom:947.807082px;}
.y9d{bottom:949.045540px;}
.yda{bottom:950.111820px;}
.y5{bottom:951.677262px;}
.y126{bottom:961.120501px;}
.yd6{bottom:963.907031px;}
.y3d{bottom:964.526260px;}
.yd7{bottom:966.830998px;}
.y4{bottom:980.006980px;}
.yd5{bottom:981.245437px;}
.y15{bottom:1131.000000px;}
.y14{bottom:1147.500000px;}
.y13{bottom:1164.240000px;}
.h27{height:14.706684px;}
.h21{height:14.784088px;}
.h28{height:14.809889px;}
.h1e{height:15.480720px;}
.h1f{height:15.867738px;}
.he{height:18.189846px;}
.hf{height:18.267250px;}
.h19{height:19.350900px;}
.h1b{height:20.278453px;}
.h14{height:20.279743px;}
.h13{height:20.305544px;}
.h17{height:20.357147px;}
.h1c{height:21.284700px;}
.h22{height:21.518201px;}
.h1d{height:28.349068px;}
.h24{height:28.407121px;}
.h1a{height:29.258561px;}
.ha{height:29.335964px;}
.h20{height:31.271054px;}
.h11{height:34.831620px;}
.hb{height:35.988139px;}
.hc{height:36.457096px;}
.h23{height:36.921517px;}
.hd{height:37.371426px;}
.h10{height:38.392186px;}
.h15{height:39.258894px;}
.h12{height:40.066794px;}
.h5{height:41.606854px;}
.h26{height:42.494576px;}
.h9{height:43.905529px;}
.h3{height:47.984185px;}
.h2{height:49.828568px;}
.h7{height:56.320312px;}
.h18{height:60.994037px;}
.h4{height:61.620522px;}
.h6{height:64.462686px;}
.h8{height:68.835938px;}
.h25{height:71.520926px;}
.h16{height:101.553523px;}
.h1{height:1086.127315px;}
.h0{height:1188.000000px;}
.w12{width:51.086376px;}
.w14{width:51.112177px;}
.w9{width:54.801749px;}
.w8{width:54.879152px;}
.w7{width:54.904954px;}
.w13{width:58.594525px;}
.w11{width:58.671929px;}
.w1a{width:62.851723px;}
.w1f{width:65.870464px;}
.w18{width:66.180078px;}
.w20{width:67.212126px;}
.w19{width:67.521740px;}
.w4{width:72.527173px;}
.wb{width:76.861775px;}
.wa{width:81.810445px;}
.w3{width:86.924243px;}
.w1c{width:106.604108px;}
.w15{width:106.913722px;}
.w6{width:109.680901px;}
.w10{width:109.706702px;}
.wf{width:109.758305px;}
.w5{width:109.784106px;}
.w1e{width:110.790353px;}
.w21{width:111.099967px;}
.w17{width:111.409582px;}
.w1d{width:139.171673px;}
.w16{width:139.558691px;}
.wd{width:164.972873px;}
.wc{width:202.358812px;}
.w1b{width:246.477574px;}
.we{width:248.491357px;}
.w2{width:767.996907px;}
.w1{width:767.998519px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:6.966324px;}
.x2f{left:8.978818px;}
.x36{left:10.062468px;}
.x19{left:11.610540px;}
.x11{left:13.339220px;}
.x38{left:14.551877px;}
.x1e{left:15.712931px;}
.x35{left:16.873985px;}
.xe{left:19.583111px;}
.x2e{left:21.285990px;}
.x15{left:22.524448px;}
.x14{left:23.685502px;}
.x20{left:25.543188px;}
.xc{left:27.168664px;}
.x34{left:31.425862px;}
.x33{left:33.128741px;}
.x2d{left:34.625210px;}
.x12{left:36.482897px;}
.x22{left:37.850360px;}
.x2a{left:40.816208px;}
.x23{left:42.417173px;}
.x9{left:44.737668px;}
.x1f{left:47.138792px;}
.x21{left:49.151286px;}
.x2c{left:50.776762px;}
.x6{left:52.555432px;}
.x7{left:55.080000px;}
.x4{left:60.373195px;}
.x32{left:62.721427px;}
.x5{left:68.192572px;}
.x1{left:75.000000px;}
.x1c{left:80.138527px;}
.x3{left:91.413652px;}
.x37{left:109.163587px;}
.x3b{left:137.881613px;}
.x29{left:181.740854px;}
.x18{left:196.007628px;}
.x24{left:225.033978px;}
.xb{left:269.541048px;}
.x1a{left:277.823233px;}
.x2b{left:288.659737px;}
.x1b{left:354.685008px;}
.xd{left:356.465291px;}
.xa{left:376.155695px;}
.x2{left:380.103278px;}
.x10{left:428.992464px;}
.x25{left:473.525335px;}
.x16{left:483.897418px;}
.x39{left:517.649476px;}
.x27{left:532.197264px;}
.x13{left:538.776570px;}
.x3a{left:554.338782px;}
.x1d{left:557.043820px;}
.x26{left:583.283640px;}
.x17{left:593.578319px;}
.x30{left:605.885491px;}
.x28{left:641.878165px;}
.x31{left:673.407232px;}
.x8{left:889.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.319578pt;}
.ls13{letter-spacing:-0.385298pt;}
.lsf{letter-spacing:-0.330255pt;}
.ls9{letter-spacing:-0.275213pt;}
.lse{letter-spacing:-0.220170pt;}
.lsc{letter-spacing:-0.165128pt;}
.ls16{letter-spacing:-0.139900pt;}
.ls18{letter-spacing:-0.123846pt;}
.ls4{letter-spacing:-0.110085pt;}
.ls19{letter-spacing:-0.090362pt;}
.lsa{letter-spacing:-0.055043pt;}
.ls17{letter-spacing:-0.013761pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000826pt;}
.ls15{letter-spacing:0.010183pt;}
.ls1b{letter-spacing:0.038255pt;}
.ls14{letter-spacing:0.041282pt;}
.ls0{letter-spacing:0.048162pt;}
.lsd{letter-spacing:0.055043pt;}
.ls1c{letter-spacing:0.091279pt;}
.ls1{letter-spacing:0.110085pt;}
.ls8{letter-spacing:0.165128pt;}
.ls12{letter-spacing:0.220170pt;}
.lsb{letter-spacing:0.275213pt;}
.ls6{letter-spacing:0.385298pt;}
.ls11{letter-spacing:7.100490pt;}
.ls10{letter-spacing:13.430385pt;}
.ls7{letter-spacing:15.632087pt;}
.ls2{letter-spacing:645.300626pt;}
.ls5{letter-spacing:648.162839pt;}
.wsa{word-spacing:-12.714831pt;}
.ws7{word-spacing:-12.604746pt;}
.ws3{word-spacing:-12.549704pt;}
.ws8{word-spacing:-12.494661pt;}
.ws0{word-spacing:-12.439619pt;}
.ws6{word-spacing:-12.384576pt;}
.ws5{word-spacing:-12.329533pt;}
.ws4{word-spacing:-12.164406pt;}
.ws9{word-spacing:-12.109363pt;}
.wsb{word-spacing:-12.054321pt;}
.ws12{word-spacing:-11.420506pt;}
.ws13{word-spacing:-10.478360pt;}
.wsf{word-spacing:-10.397264pt;}
.ws14{word-spacing:-10.387081pt;}
.ws11{word-spacing:-10.296720pt;}
.wsc{word-spacing:-9.370996pt;}
.ws10{word-spacing:-9.329714pt;}
.wsd{word-spacing:-9.315953pt;}
.wse{word-spacing:-9.205868pt;}
.ws1{word-spacing:-8.272346pt;}
.ws2{word-spacing:0.000000pt;}
._6{margin-left:-2768.302827pt;}
._7{margin-left:-961.897493pt;}
._2{margin-left:-1.011132pt;}
._9{width:0.998380pt;}
._a{width:2.028960pt;}
._15{width:3.192468pt;}
._c{width:4.238277pt;}
._4{width:5.239501pt;}
._5{width:6.388515pt;}
._8{width:7.959246pt;}
._12{width:8.938820pt;}
._f{width:9.852618pt;}
._10{width:10.751647pt;}
._11{width:13.650555pt;}
._b{width:14.641321pt;}
._0{width:15.907300pt;}
._1{width:16.916413pt;}
._3{width:17.809204pt;}
._13{width:19.430024pt;}
._16{width:20.452990pt;}
._18{width:21.544484pt;}
._1b{width:22.599649pt;}
._1c{width:23.498311pt;}
._22{width:24.438897pt;}
._17{width:25.576443pt;}
._1a{width:27.246067pt;}
._d{width:28.383613pt;}
._14{width:29.833068pt;}
._19{width:30.988961pt;}
._20{width:32.695281pt;}
._1f{width:33.686047pt;}
._e{width:43.593708pt;}
._24{width:52.620687pt;}
._23{width:83.426173pt;}
._21{width:111.222666pt;}
._1e{width:138.854031pt;}
._1d{width:648.162839pt;}
.fs1{font-size:36.603302pt;}
.fs6{font-size:41.281920pt;}
.fs2{font-size:45.960538pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:50.363942pt;}
.fs0{font-size:55.042560pt;}
.fs4{font-size:58.666667pt;}
.ye3{bottom:-3.302554pt;}
.yf5{bottom:-3.233750pt;}
.ydc{bottom:-2.958538pt;}
.ye1{bottom:-2.752128pt;}
.ye9{bottom:-0.275213pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.752128pt;}
.ye2{bottom:3.027341pt;}
.ydb{bottom:3.302554pt;}
.yf2{bottom:3.371357pt;}
.yde{bottom:3.508963pt;}
.ya2{bottom:3.921782pt;}
.ya9{bottom:4.541011pt;}
.ya8{bottom:4.678618pt;}
.ycc{bottom:5.091437pt;}
.yb5{bottom:5.160240pt;}
.ya4{bottom:5.435453pt;}
.yd1{bottom:5.504256pt;}
.yd3{bottom:5.917075pt;}
.ye5{bottom:5.985878pt;}
.ye8{bottom:6.536304pt;}
.yef{bottom:9.013219pt;}
.yd8{bottom:9.082022pt;}
.yc9{bottom:9.494842pt;}
.ya0{bottom:9.632448pt;}
.ye0{bottom:10.320480pt;}
.yb3{bottom:11.627741pt;}
.ya6{bottom:12.797395pt;}
.yad{bottom:13.623034pt;}
.ya1{bottom:15.343114pt;}
.yeb{bottom:15.411917pt;}
.yca{bottom:16.856784pt;}
.ya3{bottom:16.925587pt;}
.ye7{bottom:19.127290pt;}
.yee{bottom:21.948221pt;}
.yc0{bottom:23.255482pt;}
.yf0{bottom:27.934099pt;}
.yed{bottom:34.539206pt;}
.yb8{bottom:41.281920pt;}
.y3{bottom:44.240458pt;}
.y1{bottom:45.280000pt;}
.y2{bottom:61.097242pt;}
.yd4{bottom:78.917270pt;}
.y13c{bottom:81.600595pt;}
.y35{bottom:86.554426pt;}
.y89{bottom:89.994586pt;}
.y5a{bottom:92.196288pt;}
.y85{bottom:94.535597pt;}
.y107{bottom:98.388576pt;}
.y6e{bottom:101.415917pt;}
.y125{bottom:103.342406pt;}
.y34{bottom:111.736397pt;}
.y88{bottom:115.176557pt;}
.y106{bottom:119.442355pt;}
.y84{bottom:119.717568pt;}
.y124{bottom:120.130387pt;}
.y59{bottom:120.818419pt;}
.y6d{bottom:126.597888pt;}
.y13b{bottom:131.964538pt;}
.yd2{bottom:136.650650pt;}
.y33{bottom:136.918368pt;}
.y87{bottom:140.358528pt;}
.y105{bottom:140.564938pt;}
.y83{bottom:144.899539pt;}
.y58{bottom:146.000390pt;}
.y13a{bottom:148.752518pt;}
.y6c{bottom:151.779859pt;}
.y123{bottom:153.706349pt;}
.yd0{bottom:155.571530pt;}
.y104{bottom:155.976854pt;}
.y32{bottom:162.100339pt;}
.y86{bottom:165.540499pt;}
.y82{bottom:170.081510pt;}
.y122{bottom:170.494330pt;}
.y57{bottom:171.251165pt;}
.ycf{bottom:173.597968pt;}
.y103{bottom:176.342602pt;}
.y139{bottom:182.328480pt;}
.y31{bottom:187.282310pt;}
.y6b{bottom:190.722470pt;}
.yce{bottom:190.798768pt;}
.y81{bottom:195.332285pt;}
.y56{bottom:196.433136pt;}
.y138{bottom:199.185264pt;}
.y121{bottom:204.139094pt;}
.ycd{bottom:207.999568pt;}
.y30{bottom:212.533085pt;}
.y6a{bottom:215.973245pt;}
.y80{bottom:220.514256pt;}
.y120{bottom:220.927075pt;}
.y55{bottom:221.615107pt;}
.ycb{bottom:225.200368pt;}
.y137{bottom:232.761226pt;}
.y2f{bottom:237.715056pt;}
.y69{bottom:241.155216pt;}
.yc7{bottom:241.774445pt;}
.yc8{bottom:243.570822pt;}
.y7f{bottom:245.696227pt;}
.y54{bottom:246.797078pt;}
.y136{bottom:249.549206pt;}
.y11f{bottom:254.503037pt;}
.y2e{bottom:262.897027pt;}
.yc6{bottom:265.855565pt;}
.y68{bottom:266.337187pt;}
.y7e{bottom:270.878198pt;}
.y11e{bottom:271.291018pt;}
.y53{bottom:272.047853pt;}
.y135{bottom:283.125168pt;}
.y2d{bottom:288.078998pt;}
.yc5{bottom:289.111046pt;}
.y67{bottom:291.519158pt;}
.y52{bottom:297.229824pt;}
.y7d{bottom:299.592067pt;}
.y9b{bottom:299.936083pt;}
.y11d{bottom:304.889914pt;}
.y2c{bottom:313.352707pt;}
.y66{bottom:316.792867pt;}
.y11c{bottom:321.746698pt;}
.y7c{bottom:324.774038pt;}
.y9a{bottom:325.186858pt;}
.y134{bottom:333.580848pt;}
.y51{bottom:336.195370pt;}
.y2b{bottom:338.534678pt;}
.y65{bottom:341.974838pt;}
.yc4{bottom:347.830605pt;}
.y7b{bottom:349.956010pt;}
.y99{bottom:350.368829pt;}
.y11b{bottom:355.322659pt;}
.y2a{bottom:363.716650pt;}
.y50{bottom:364.817501pt;}
.y64{bottom:367.156810pt;}
.yc3{bottom:368.471565pt;}
.y11a{bottom:372.110640pt;}
.y7a{bottom:375.137981pt;}
.y98{bottom:375.550800pt;}
.y133{bottom:383.944790pt;}
.yc2{bottom:386.566806pt;}
.y29{bottom:388.898621pt;}
.y4f{bottom:389.999472pt;}
.y63{bottom:392.338781pt;}
.y79{bottom:400.319952pt;}
.y97{bottom:400.732771pt;}
.y119{bottom:405.686602pt;}
.ybf{bottom:406.313325pt;}
.y28{bottom:414.080592pt;}
.y4e{bottom:415.250246pt;}
.y62{bottom:417.520752pt;}
.y118{bottom:422.474582pt;}
.yc1{bottom:424.408566pt;}
.y78{bottom:425.570726pt;}
.y96{bottom:425.914742pt;}
.y132{bottom:434.377536pt;}
.y27{bottom:439.331366pt;}
.y4d{bottom:440.432218pt;}
.ybe{bottom:442.435005pt;}
.y61{bottom:442.771526pt;}
.y77{bottom:450.752698pt;}
.y95{bottom:451.165517pt;}
.y12{bottom:453.917645pt;}
.y117{bottom:456.119347pt;}
.ybd{bottom:463.075965pt;}
.y26{bottom:464.513338pt;}
.y4c{bottom:465.614189pt;}
.y60{bottom:467.953498pt;}
.y116{bottom:472.907328pt;}
.y76{bottom:475.934669pt;}
.y94{bottom:476.347488pt;}
.ybc{bottom:481.171206pt;}
.y131{bottom:484.741478pt;}
.y11{bottom:487.562410pt;}
.y25{bottom:489.695309pt;}
.y4b{bottom:490.796160pt;}
.y102{bottom:491.208979pt;}
.y5f{bottom:493.135469pt;}
.yfc{bottom:500.291002pt;}
.y75{bottom:501.116640pt;}
.y93{bottom:501.529459pt;}
.yb7{bottom:501.812166pt;}
.y115{bottom:506.483290pt;}
.y24{bottom:514.877280pt;}
.y4a{bottom:515.978131pt;}
.y101{bottom:516.459754pt;}
.y5e{bottom:518.317440pt;}
.ybb{bottom:519.838605pt;}
.y10{bottom:521.138371pt;}
.y114{bottom:523.271270pt;}
.yfb{bottom:525.472973pt;}
.y74{bottom:526.298611pt;}
.y92{bottom:526.711430pt;}
.y130{bottom:535.105421pt;}
.yba{bottom:537.933846pt;}
.y100{bottom:539.646432pt;}
.y23{bottom:540.059251pt;}
.y49{bottom:541.228906pt;}
.y5d{bottom:543.499411pt;}
.y9c{bottom:544.600262pt;}
.yfa{bottom:548.659651pt;}
.y73{bottom:551.549386pt;}
.y91{bottom:551.893402pt;}
.yf{bottom:554.714333pt;}
.yb9{bottom:555.960285pt;}
.y113{bottom:556.916035pt;}
.yff{bottom:560.631408pt;}
.y22{bottom:565.332960pt;}
.y48{bottom:566.433811pt;}
.y5c{bottom:568.773120pt;}
.y112{bottom:573.726950pt;}
.yb6{bottom:574.055526pt;}
.y72{bottom:576.754291pt;}
.y90{bottom:577.167110pt;}
.y12f{bottom:585.561101pt;}
.yfe{bottom:586.386739pt;}
.ye{bottom:588.313229pt;}
.y21{bottom:590.514931pt;}
.y47{bottom:591.615782pt;}
.y5b{bottom:593.955091pt;}
.yb4{bottom:594.696486pt;}
.y71{bottom:601.936262pt;}
.y8f{bottom:602.349082pt;}
.yf9{bottom:605.360982pt;}
.yfd{bottom:606.821290pt;}
.y111{bottom:607.302912pt;}
.yb1{bottom:613.013578pt;}
.yd{bottom:613.564003pt;}
.yb2{bottom:614.465939pt;}
.y20{bottom:615.696902pt;}
.y46{bottom:616.797754pt;}
.y3c{bottom:619.137062pt;}
.yf8{bottom:619.144557pt;}
.y110{bottom:624.090893pt;}
.y70{bottom:627.118234pt;}
.y8e{bottom:627.531053pt;}
.yf7{bottom:632.836394pt;}
.y12e{bottom:635.925043pt;}
.yb0{bottom:637.163501pt;}
.yc{bottom:638.745974pt;}
.y1f{bottom:640.878874pt;}
.y45{bottom:641.979725pt;}
.y3b{bottom:644.319034pt;}
.yf6{bottom:646.528230pt;}
.y6f{bottom:652.300205pt;}
.y8d{bottom:652.713024pt;}
.y10f{bottom:657.666854pt;}
.yf4{bottom:660.220067pt;}
.yaf{bottom:662.345472pt;}
.y1e{bottom:666.060845pt;}
.y44{bottom:667.230499pt;}
.y3a{bottom:669.501005pt;}
.yb{bottom:672.321936pt;}
.yf3{bottom:673.911904pt;}
.y10e{bottom:674.523638pt;}
.y8c{bottom:677.963798pt;}
.y12d{bottom:686.357789pt;}
.y1d{bottom:691.311619pt;}
.y43{bottom:692.412470pt;}
.y16{bottom:693.065853pt;}
.y39{bottom:694.751779pt;}
.y8b{bottom:701.150477pt;}
.yf1{bottom:701.708397pt;}
.ya{bottom:702.526541pt;}
.y12c{bottom:703.145770pt;}
.y10d{bottom:708.099600pt;}
.y1c{bottom:716.493590pt;}
.yec{bottom:716.638691pt;}
.y42{bottom:717.594442pt;}
.y38{bottom:719.933750pt;}
.y8a{bottom:722.135453pt;}
.yac{bottom:722.418160pt;}
.y10c{bottom:724.887581pt;}
.y9{bottom:730.529443pt;}
.y12b{bottom:736.721731pt;}
.yae{bottom:740.375795pt;}
.y1b{bottom:741.675562pt;}
.y41{bottom:742.776413pt;}
.y37{bottom:745.115722pt;}
.y12a{bottom:753.509712pt;}
.yea{bottom:754.962074pt;}
.yaa{bottom:757.163776pt;}
.y10b{bottom:758.463542pt;}
.y8{bottom:761.903702pt;}
.y1a{bottom:766.857533pt;}
.y40{bottom:768.027187pt;}
.y36{bottom:770.297693pt;}
.yab{bottom:773.401331pt;}
.y10a{bottom:775.251523pt;}
.ye6{bottom:780.763274pt;}
.y129{bottom:787.085674pt;}
.ya5{bottom:790.189312pt;}
.y19{bottom:792.108307pt;}
.y3f{bottom:793.209158pt;}
.ye4{bottom:794.455110pt;}
.y7{bottom:795.548467pt;}
.y128{bottom:803.942458pt;}
.ya7{bottom:806.426867pt;}
.y109{bottom:808.896288pt;}
.ydf{bottom:814.132826pt;}
.y18{bottom:817.290278pt;}
.y9e{bottom:817.771901pt;}
.y3e{bottom:818.391130pt;}
.y6{bottom:820.730438pt;}
.y9f{bottom:824.315699pt;}
.y108{bottom:825.684269pt;}
.ydd{bottom:827.824662pt;}
.y127{bottom:837.541354pt;}
.y17{bottom:842.495184pt;}
.y9d{bottom:843.596035pt;}
.yda{bottom:844.543840pt;}
.y5{bottom:845.935344pt;}
.y126{bottom:854.329334pt;}
.yd6{bottom:856.806250pt;}
.y3d{bottom:857.356675pt;}
.yd7{bottom:859.405331pt;}
.y4{bottom:871.117315pt;}
.yd5{bottom:872.218166pt;}
.y15{bottom:1005.333333pt;}
.y14{bottom:1020.000000pt;}
.y13{bottom:1034.880000pt;}
.h27{height:13.072608pt;}
.h21{height:13.141411pt;}
.h28{height:13.164346pt;}
.h1e{height:13.760640pt;}
.h1f{height:14.104656pt;}
.he{height:16.168752pt;}
.hf{height:16.237555pt;}
.h19{height:17.200800pt;}
.h1b{height:18.025292pt;}
.h14{height:18.026438pt;}
.h13{height:18.049373pt;}
.h17{height:18.095242pt;}
.h1c{height:18.919733pt;}
.h22{height:19.127290pt;}
.h1d{height:25.199172pt;}
.h24{height:25.250774pt;}
.h1a{height:26.007610pt;}
.ha{height:26.076413pt;}
.h20{height:27.796493pt;}
.h11{height:30.961440pt;}
.hb{height:31.989457pt;}
.hc{height:32.406307pt;}
.h23{height:32.819126pt;}
.hd{height:33.219045pt;}
.h10{height:34.126387pt;}
.h15{height:34.896795pt;}
.h12{height:35.614928pt;}
.h5{height:36.983870pt;}
.h26{height:37.772957pt;}
.h9{height:39.027137pt;}
.h3{height:42.652609pt;}
.h2{height:44.292060pt;}
.h7{height:50.062500pt;}
.h18{height:54.216922pt;}
.h4{height:54.773798pt;}
.h6{height:57.300165pt;}
.h8{height:61.187500pt;}
.h25{height:63.574157pt;}
.h16{height:90.269798pt;}
.h1{height:965.446502pt;}
.h0{height:1056.000000pt;}
.w12{width:45.410112pt;}
.w14{width:45.433046pt;}
.w9{width:48.712666pt;}
.w8{width:48.781469pt;}
.w7{width:48.804403pt;}
.w13{width:52.084022pt;}
.w11{width:52.152826pt;}
.w1a{width:55.868198pt;}
.w1f{width:58.551523pt;}
.w18{width:58.826736pt;}
.w20{width:59.744112pt;}
.w19{width:60.019325pt;}
.w4{width:64.468598pt;}
.wb{width:68.321578pt;}
.wa{width:72.720396pt;}
.w3{width:77.265994pt;}
.w1c{width:94.759207pt;}
.w15{width:95.034420pt;}
.w6{width:97.494134pt;}
.w10{width:97.517069pt;}
.wf{width:97.562938pt;}
.w5{width:97.585872pt;}
.w1e{width:98.480314pt;}
.w21{width:98.755526pt;}
.w17{width:99.030739pt;}
.w1d{width:123.708154pt;}
.w16{width:124.052170pt;}
.wd{width:146.642554pt;}
.wc{width:179.874499pt;}
.w1b{width:219.091176pt;}
.we{width:220.881206pt;}
.w2{width:682.663917pt;}
.w1{width:682.665350pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.192288pt;}
.x2f{left:7.981171pt;}
.x36{left:8.944416pt;}
.x19{left:10.320480pt;}
.x11{left:11.857085pt;}
.x38{left:12.935002pt;}
.x1e{left:13.967050pt;}
.x35{left:14.999098pt;}
.xe{left:17.407210pt;}
.x2e{left:18.920880pt;}
.x15{left:20.021731pt;}
.x14{left:21.053779pt;}
.x20{left:22.705056pt;}
.xc{left:24.149923pt;}
.x34{left:27.934099pt;}
.x33{left:29.447770pt;}
.x2d{left:30.777965pt;}
.x12{left:32.429242pt;}
.x22{left:33.644765pt;}
.x2a{left:36.281074pt;}
.x23{left:37.704154pt;}
.x9{left:39.766816pt;}
.x1f{left:41.901149pt;}
.x21{left:43.690032pt;}
.x2c{left:45.134899pt;}
.x6{left:46.715939pt;}
.x7{left:48.960000pt;}
.x4{left:53.665063pt;}
.x32{left:55.752380pt;}
.x5{left:60.615619pt;}
.x1{left:66.666667pt;}
.x1c{left:71.234246pt;}
.x3{left:81.256579pt;}
.x37{left:97.034300pt;}
.x3b{left:122.561434pt;}
.x29{left:161.547426pt;}
.x18{left:174.229003pt;}
.x24{left:200.030203pt;}
.xb{left:239.592043pt;}
.x1a{left:246.953985pt;}
.x2b{left:256.586433pt;}
.x1b{left:315.275563pt;}
.xd{left:316.858036pt;}
.xa{left:334.360618pt;}
.x2{left:337.869581pt;}
.x10{left:381.326635pt;}
.x25{left:420.911409pt;}
.x16{left:430.131038pt;}
.x39{left:460.132867pt;}
.x27{left:473.064235pt;}
.x13{left:478.912507pt;}
.x3a{left:492.745584pt;}
.x1d{left:495.150062pt;}
.x26{left:518.474347pt;}
.x17{left:527.625172pt;}
.x30{left:538.564881pt;}
.x28{left:570.558369pt;}
.x31{left:598.584206pt;}
.x8{left:790.666667pt;}
}




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