
    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_b066fa7e4771eed19bcd70e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_04bfb077a621126342f82cb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.624000;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_d29af695482cfadc1d99e5fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.716000;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_2ca0d0dc4efee40f0c975aa7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_d96bc50ca7bc7949b3315e03.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.896000;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_371156aff36caac30cabd0bb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.645000;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_44ebc6a9bbe30f7062f71542.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_58ec552123e941c35af8c836.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.400000;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_383f8f9be20b7358236b1daf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.258000;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_5f47ad3a5a90493d6b371aa6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;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:ffb;src:url('chunks/assets/font_906f33045132e139aa3086c9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854000;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);}
.vd{vertical-align:-55.332000px;}
.v5{vertical-align:-16.878000px;}
.v9{vertical-align:-11.814000px;}
.v8{vertical-align:-10.758000px;}
.va{vertical-align:-8.964000px;}
.v6{vertical-align:-6.384000px;}
.vc{vertical-align:-4.044000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.038000px;}
.v1{vertical-align:8.070000px;}
.v3{vertical-align:16.140000px;}
.v7{vertical-align:23.238000px;}
.v4{vertical-align:26.034000px;}
.vb{vertical-align:29.622000px;}
.ve{vertical-align:49.206000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.002237px;}
.lsa{letter-spacing:0.004082px;}
.lse{letter-spacing:0.015383px;}
.ls12{letter-spacing:0.215194px;}
.ls9{letter-spacing:2.987700px;}
.ls0{letter-spacing:2.989200px;}
.lsf{letter-spacing:2.989873px;}
.ls3{letter-spacing:2.993052px;}
.ls16{letter-spacing:2.993700px;}
.ls7{letter-spacing:3.557845px;}
.ls8{letter-spacing:3.615230px;}
.ls18{letter-spacing:10.472755px;}
.ls17{letter-spacing:10.759680px;}
.ls1b{letter-spacing:14.943900px;}
.lsd{letter-spacing:15.924326px;}
.ls4{letter-spacing:17.932800px;}
.lsc{letter-spacing:18.925873px;}
.ls13{letter-spacing:19.869542px;}
.ls11{letter-spacing:19.941274px;}
.ls1c{letter-spacing:20.921052px;}
.lsb{letter-spacing:22.913700px;}
.ls6{letter-spacing:55.603200px;}
.ls5{letter-spacing:58.429200px;}
.ls2{letter-spacing:60.671700px;}
.ls1a{letter-spacing:134.495100px;}
.ls15{letter-spacing:187.003238px;}
.ls14{letter-spacing:210.172416px;}
.ls19{letter-spacing:687.830477px;}
.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;}
}
.ws14{word-spacing:-51.789926px;}
.ws15{word-spacing:-28.692480px;}
.ws3{word-spacing:-25.823100px;}
.ws4{word-spacing:-17.932800px;}
.wse{word-spacing:-17.903995px;}
.wsa{word-spacing:-16.363650px;}
.ws10{word-spacing:-14.943900px;}
.wsd{word-spacing:-14.346150px;}
.ws8{word-spacing:-10.742410px;}
.ws1{word-spacing:-8.966400px;}
.ws13{word-spacing:-0.071731px;}
.ws9{word-spacing:-0.004253px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:1.793280px;}
.ws7{word-spacing:4.014221px;}
.ws5{word-spacing:4.303872px;}
.ws18{word-spacing:9.380947px;}
.ws11{word-spacing:14.342237px;}
.ws6{word-spacing:15.080690px;}
.wsb{word-spacing:17.853101px;}
.ws19{word-spacing:17.861069px;}
.wsc{word-spacing:30.485760px;}
.ws12{word-spacing:34.512492px;}
.ws16{word-spacing:35.805584px;}
.ws1c{word-spacing:42.966989px;}
.ws1a{word-spacing:59.775600px;}
.ws1b{word-spacing:119.551200px;}
.ws2{word-spacing:178.036838px;}
.ws17{word-spacing:613.441584px;}
._16{margin-left:-27.180768px;}
._12{margin-left:-22.401503px;}
._9{margin-left:-12.909656px;}
._18{margin-left:-10.759680px;}
._5{margin-left:-8.967763px;}
._d{margin-left:-7.460045px;}
._b{margin-left:-5.738496px;}
._1{margin-left:-4.483882px;}
._8{margin-left:-3.034206px;}
._0{margin-left:-1.613952px;}
._11{width:1.599595px;}
._6{width:3.294278px;}
._e{width:4.364851px;}
._4{width:5.784449px;}
._17{width:6.993792px;}
._15{width:10.226323px;}
._14{width:11.293037px;}
._7{width:18.530436px;}
._f{width:21.519360px;}
._a{width:22.775338px;}
._c{width:32.020644px;}
._10{width:89.233613px;}
._13{width:96.423372px;}
._3{width:186.441850px;}
._2{width:187.525210px;}
.fca{color:rgb(51,51,178);}
.fc9{color:rgb(21,155,82);}
.fc8{color:rgb(159,20,101);}
.fcb{color:rgb(122,122,205);}
.fc7{color:rgb(38,107,189);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(235,235,247);}
.fc3{color:rgb(122,0,0);}
.fc6{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(226,124,124);}
.fs1{font-size:29.887800px;}
.fs0{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs9{font-size:50.211840px;}
.fs7{font-size:57.384600px;}
.fs5{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yb0{bottom:24.036000px;}
.y38{bottom:33.486000px;}
.yd0{bottom:33.684000px;}
.ydf{bottom:34.650000px;}
.y99{bottom:42.685500px;}
.yaf{bottom:45.705000px;}
.ye{bottom:50.140500px;}
.yde{bottom:52.284000px;}
.yba{bottom:55.419000px;}
.ydc{bottom:56.317500px;}
.y37{bottom:59.637000px;}
.ycf{bottom:59.836500px;}
.ydd{bottom:59.886000px;}
.yae{bottom:63.637500px;}
.yc5{bottom:67.075500px;}
.yd{bottom:68.073000px;}
.y61{bottom:68.812500px;}
.y2c{bottom:71.205000px;}
.y75{bottom:71.919000px;}
.y91{bottom:73.458000px;}
.y2a{bottom:75.240000px;}
.yb9{bottom:77.088000px;}
.ydb{bottom:77.986500px;}
.y2b{bottom:78.808500px;}
.y98{bottom:80.950500px;}
.yad{bottom:81.570000px;}
.yc4{bottom:85.008000px;}
.y36{bottom:85.789500px;}
.yce{bottom:85.989000px;}
.y44{bottom:88.488000px;}
.y70{bottom:93.349500px;}
.y60{bottom:94.965000px;}
.y29{bottom:97.357500px;}
.y8b{bottom:97.948500px;}
.yac{bottom:99.504000px;}
.yda{bottom:99.655500px;}
.y90{bottom:100.740000px;}
.y27{bottom:101.392500px;}
.yb8{bottom:102.492000px;}
.yc3{bottom:102.940500px;}
.y28{bottom:104.961000px;}
.yc{bottom:107.947500px;}
.y18{bottom:110.440500px;}
.y35{bottom:111.942000px;}
.y17{bottom:114.475500px;}
.y43{bottom:114.595500px;}
.y56{bottom:115.080000px;}
.y15{bottom:116.130000px;}
.ycd{bottom:116.623500px;}
.yab{bottom:117.436500px;}
.y76{bottom:117.945000px;}
.y16{bottom:118.044000px;}
.y6f{bottom:118.755000px;}
.y83{bottom:119.205000px;}
.y68{bottom:119.563500px;}
.yc2{bottom:120.873000px;}
.yd9{bottom:121.324500px;}
.yb{bottom:122.145000px;}
.y8a{bottom:122.202000px;}
.y4c{bottom:122.701500px;}
.y5f{bottom:123.610500px;}
.y97{bottom:125.034000px;}
.y26{bottom:127.545000px;}
.yb7{bottom:127.897500px;}
.y8f{bottom:130.774500px;}
.y34{bottom:133.609500px;}
.yaa{bottom:135.369000px;}
.y55{bottom:136.749000px;}
.yc1{bottom:138.805500px;}
.y4b{bottom:140.335500px;}
.y42{bottom:140.793000px;}
.y67{bottom:141.231000px;}
.y89{bottom:142.480500px;}
.y6e{bottom:142.591500px;}
.yd8{bottom:142.993500px;}
.y5e{bottom:143.935500px;}
.y49{bottom:144.370500px;}
.y80{bottom:145.800000px;}
.ycc{bottom:147.259500px;}
.y4a{bottom:147.939000px;}
.y9d{bottom:150.676500px;}
.ya9{bottom:153.301500px;}
.y25{bottom:153.696000px;}
.ya{bottom:153.807000px;}
.y82{bottom:154.456500px;}
.y33{bottom:155.278500px;}
.yc0{bottom:156.738000px;}
.y54{bottom:158.416500px;}
.y53{bottom:158.418000px;}
.y96{bottom:160.900500px;}
.ya0{bottom:161.256000px;}
.y8e{bottom:161.758500px;}
.y88{bottom:162.805500px;}
.y66{bottom:162.900000px;}
.y74{bottom:163.971000px;}
.y6d{bottom:164.260500px;}
.yd7{bottom:164.662500px;}
.y5d{bottom:164.754000px;}
.y77{bottom:165.087000px;}
.y3b{bottom:166.383000px;}
.y7d{bottom:166.756500px;}
.y41{bottom:166.899000px;}
.ya8{bottom:171.234000px;}
.y9c{bottom:172.345500px;}
.yb6{bottom:174.612000px;}
.ybf{bottom:174.672000px;}
.y24{bottom:175.365000px;}
.y9{bottom:175.476000px;}
.ycb{bottom:177.894000px;}
.y81{bottom:178.888500px;}
.y14{bottom:179.524500px;}
.y32{bottom:181.431000px;}
.y48{bottom:182.440500px;}
.ye3{bottom:183.142500px;}
.y7f{bottom:183.793500px;}
.yd6{bottom:186.330000px;}
.y9f{bottom:187.408500px;}
.y87{bottom:188.104500px;}
.ya7{bottom:189.166500px;}
.y7e{bottom:189.172500px;}
.y6c{bottom:189.664500px;}
.y40{bottom:190.098000px;}
.y3a{bottom:192.535500px;}
.ybe{bottom:192.604500px;}
.y3f{bottom:193.051500px;}
.y5c{bottom:193.399500px;}
.y65{bottom:193.536000px;}
.y52{bottom:196.488000px;}
.yb5{bottom:196.639500px;}
.y95{bottom:196.765500px;}
.y1b{bottom:196.899000px;}
.y9b{bottom:198.496500px;}
.ye2{bottom:200.776500px;}
.y23{bottom:201.517500px;}
.y78{bottom:202.605000px;}
.y7a{bottom:202.606500px;}
.y63{bottom:202.611000px;}
.y19{bottom:202.708500px;}
.y31{bottom:203.100000px;}
.yca{bottom:204.046500px;}
.ye0{bottom:204.811500px;}
.y47{bottom:205.639500px;}
.ya6{bottom:207.100500px;}
.y1a{bottom:207.361500px;}
.yd5{bottom:207.999000px;}
.ye1{bottom:208.380000px;}
.y46{bottom:208.593000px;}
.y73{bottom:209.995500px;}
.ybd{bottom:210.537000px;}
.y86{bottom:212.866500px;}
.y6b{bottom:213.502500px;}
.y9e{bottom:213.561000px;}
.y5b{bottom:213.768000px;}
.yb4{bottom:214.572000px;}
.y51{bottom:215.652000px;}
.y39{bottom:215.734500px;}
.y3e{bottom:216.250500px;}
.y94{bottom:219.181500px;}
.y7c{bottom:219.330000px;}
.y50{bottom:219.687000px;}
.y4e{bottom:222.640500px;}
.y4f{bottom:223.255500px;}
.y9a{bottom:224.649000px;}
.ya5{bottom:225.033000px;}
.y79{bottom:226.510500px;}
.y22{bottom:227.668500px;}
.y30{bottom:229.251000px;}
.yd4{bottom:229.668000px;}
.y5a{bottom:234.046500px;}
.yc9{bottom:234.681000px;}
.y6a{bottom:235.170000px;}
.y13{bottom:237.348000px;}
.y85{bottom:239.019000px;}
.yb3{bottom:239.976000px;}
.y8{bottom:240.174000px;}
.y45{bottom:240.759000px;}
.y64{bottom:241.356000px;}
.y12{bottom:241.383000px;}
.ya4{bottom:242.965500px;}
.y10{bottom:242.979000px;}
.y6{bottom:244.209000px;}
.y11{bottom:244.951500px;}
.y21{bottom:245.302500px;}
.y8d{bottom:245.590500px;}
.y4d{bottom:245.839500px;}
.ybc{bottom:246.402000px;}
.y3d{bottom:246.885000px;}
.y7{bottom:247.777500px;}
.y1f{bottom:249.337500px;}
.y7b{bottom:249.964500px;}
.y2f{bottom:250.920000px;}
.yd3{bottom:251.337000px;}
.y20{bottom:252.906000px;}
.y59{bottom:254.371500px;}
.y72{bottom:256.021500px;}
.yb2{bottom:257.910000px;}
.yc8{bottom:260.833500px;}
.ya3{bottom:260.898000px;}
.y84{bottom:262.218000px;}
.y93{bottom:267.148500px;}
.y69{bottom:267.300000px;}
.y3c{bottom:268.554000px;}
.y5{bottom:272.334000px;}
.yd2{bottom:273.006000px;}
.y58{bottom:275.190000px;}
.y1e{bottom:275.490000px;}
.y8c{bottom:276.576000px;}
.ybb{bottom:277.038000px;}
.y2e{bottom:277.072500px;}
.ya2{bottom:278.830500px;}
.y71{bottom:278.932500px;}
.yb1{bottom:284.808000px;}
.yd1{bottom:294.675000px;}
.yc7{bottom:295.951500px;}
.y92{bottom:298.132500px;}
.y57{bottom:300.190500px;}
.y62{bottom:303.139500px;}
.y2d{bottom:303.223500px;}
.y4{bottom:305.209500px;}
.ya1{bottom:305.730000px;}
.y1d{bottom:350.226000px;}
.yc6{bottom:355.848000px;}
.yf{bottom:356.035500px;}
.y1c{bottom:360.688500px;}
.y3{bottom:396.690000px;}
.y1{bottom:398.707500px;}
.y2{bottom:399.478500px;}
.h20{height:0.000000px;}
.h3{height:26.480591px;}
.h2{height:31.776922px;}
.h1f{height:32.661470px;}
.h4{height:39.846922px;}
.h24{height:39.930101px;}
.h1c{height:40.826735px;}
.h8{height:42.369052px;}
.h1d{height:44.487690px;}
.h19{height:47.834776px;}
.h28{height:47.916442px;}
.h17{height:48.014776px;}
.h18{height:48.020776px;}
.h1b{height:48.992410px;}
.h29{height:49.781453px;}
.h1a{height:50.842756px;}
.h15{height:51.559843px;}
.h16{height:51.565843px;}
.h12{height:51.739843px;}
.h14{height:51.745843px;}
.h13{height:52.459843px;}
.hc{height:52.961182px;}
.h26{height:53.561182px;}
.h23{height:53.774776px;}
.h21{height:53.948776px;}
.h22{height:53.954776px;}
.he{height:56.935843px;}
.hd{height:57.169843px;}
.h7{height:63.553843px;}
.h11{height:64.267843px;}
.ha{height:64.273843px;}
.hb{height:68.403052px;}
.h1e{height:71.991052px;}
.h2a{height:79.687843px;}
.h9{height:79.693843px;}
.h10{height:80.413843px;}
.h6{height:91.517066px;}
.h27{height:92.549066px;}
.h5{height:92.555066px;}
.h25{height:112.759843px;}
.hf{height:114.755066px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x1{left:12.756000px;}
.x21{left:42.519000px;}
.x16{left:43.566000px;}
.x62{left:45.015000px;}
.x4e{left:47.500500px;}
.x43{left:51.486000px;}
.x53{left:52.531500px;}
.x4d{left:54.972000px;}
.x64{left:57.463500px;}
.x32{left:58.546500px;}
.x2{left:61.174500px;}
.x3{left:65.223000px;}
.x54{left:67.824000px;}
.x4{left:69.207000px;}
.x60{left:73.647000px;}
.x4c{left:76.149000px;}
.x22{left:77.637000px;}
.x23{left:82.138500px;}
.x1c{left:88.710000px;}
.x4f{left:92.095500px;}
.x3e{left:94.371000px;}
.x24{left:96.048000px;}
.x1f{left:97.155000px;}
.x61{left:99.381000px;}
.x8{left:105.762000px;}
.x20{left:108.628500px;}
.x5e{left:114.250500px;}
.x5a{left:115.972500px;}
.x44{left:119.253000px;}
.x41{left:120.705000px;}
.x65{left:127.486500px;}
.x28{left:129.444000px;}
.x2f{left:131.434500px;}
.x3f{left:135.342000px;}
.x4b{left:137.070000px;}
.x36{left:138.895500px;}
.x11{left:145.422000px;}
.x5f{left:147.502500px;}
.x3a{left:151.819500px;}
.x17{left:161.547000px;}
.x18{left:167.488500px;}
.x30{left:170.779500px;}
.xb{left:174.073500px;}
.x19{left:175.456500px;}
.x45{left:183.631500px;}
.x9{left:186.795000px;}
.x35{left:187.953000px;}
.x55{left:198.042000px;}
.x15{left:203.242500px;}
.x42{left:204.360000px;}
.x27{left:206.478000px;}
.xa{left:207.762000px;}
.x25{left:209.346000px;}
.x14{left:212.461500px;}
.xf{left:213.826500px;}
.x29{left:216.759000px;}
.x33{left:218.473500px;}
.x67{left:220.702500px;}
.x2a{left:222.700500px;}
.x1a{left:227.325000px;}
.x2b{left:230.668500px;}
.x1b{left:233.266500px;}
.x68{left:234.612000px;}
.xc{left:235.995000px;}
.x1d{left:237.226500px;}
.x56{left:239.386500px;}
.xd{left:241.936500px;}
.x1e{left:248.700000px;}
.xe{left:249.904500px;}
.x63{left:251.022000px;}
.x48{left:253.872000px;}
.x37{left:257.334000px;}
.x38{left:263.275500px;}
.x2c{left:265.380000px;}
.x50{left:268.041000px;}
.x57{left:270.072000px;}
.x39{left:271.243500px;}
.x2d{left:274.455000px;}
.x34{left:278.266500px;}
.x46{left:282.870000px;}
.x2e{left:285.928500px;}
.x3b{left:290.836500px;}
.x69{left:292.183500px;}
.x3c{left:296.779500px;}
.x58{left:299.730000px;}
.x52{left:303.336000px;}
.x3d{left:304.746000px;}
.x51{left:307.953000px;}
.x10{left:315.738000px;}
.x49{left:330.801000px;}
.x4a{left:360.535500px;}
.x12{left:361.689000px;}
.x5b{left:363.337500px;}
.x40{left:365.167500px;}
.x31{left:367.857000px;}
.x5c{left:372.411000px;}
.x13{left:374.637000px;}
.x5d{left:383.884500px;}
.x26{left:388.086000px;}
.x66{left:406.911000px;}
.x5{left:410.815500px;}
.x6{left:414.865500px;}
.x7{left:418.849500px;}
.x47{left:424.066500px;}
.x59{left:480.823500px;}
@media print{
.vd{vertical-align:-49.184000pt;}
.v5{vertical-align:-15.002667pt;}
.v9{vertical-align:-10.501333pt;}
.v8{vertical-align:-9.562667pt;}
.va{vertical-align:-7.968000pt;}
.v6{vertical-align:-5.674667pt;}
.vc{vertical-align:-3.594667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:0.922667pt;}
.v1{vertical-align:7.173333pt;}
.v3{vertical-align:14.346667pt;}
.v7{vertical-align:20.656000pt;}
.v4{vertical-align:23.141333pt;}
.vb{vertical-align:26.330667pt;}
.ve{vertical-align:43.738667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.001988pt;}
.lsa{letter-spacing:0.003628pt;}
.lse{letter-spacing:0.013674pt;}
.ls12{letter-spacing:0.191283pt;}
.ls9{letter-spacing:2.655733pt;}
.ls0{letter-spacing:2.657067pt;}
.lsf{letter-spacing:2.657665pt;}
.ls3{letter-spacing:2.660491pt;}
.ls16{letter-spacing:2.661067pt;}
.ls7{letter-spacing:3.162529pt;}
.ls8{letter-spacing:3.213538pt;}
.ls18{letter-spacing:9.309116pt;}
.ls17{letter-spacing:9.564160pt;}
.ls1b{letter-spacing:13.283467pt;}
.lsd{letter-spacing:14.154957pt;}
.ls4{letter-spacing:15.940267pt;}
.lsc{letter-spacing:16.822998pt;}
.ls13{letter-spacing:17.661815pt;}
.ls11{letter-spacing:17.725577pt;}
.ls1c{letter-spacing:18.596491pt;}
.lsb{letter-spacing:20.367733pt;}
.ls6{letter-spacing:49.425067pt;}
.ls5{letter-spacing:51.937067pt;}
.ls2{letter-spacing:53.930400pt;}
.ls1a{letter-spacing:119.551200pt;}
.ls15{letter-spacing:166.225101pt;}
.ls14{letter-spacing:186.819925pt;}
.ls19{letter-spacing:611.404868pt;}
.ws14{word-spacing:-46.035490pt;}
.ws15{word-spacing:-25.504427pt;}
.ws3{word-spacing:-22.953867pt;}
.ws4{word-spacing:-15.940267pt;}
.wse{word-spacing:-15.914662pt;}
.wsa{word-spacing:-14.545467pt;}
.ws10{word-spacing:-13.283467pt;}
.wsd{word-spacing:-12.752133pt;}
.ws8{word-spacing:-9.548809pt;}
.ws1{word-spacing:-7.970133pt;}
.ws13{word-spacing:-0.063761pt;}
.ws9{word-spacing:-0.003780pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:1.594027pt;}
.ws7{word-spacing:3.568196pt;}
.ws5{word-spacing:3.825664pt;}
.ws18{word-spacing:8.338620pt;}
.ws11{word-spacing:12.748655pt;}
.ws6{word-spacing:13.405058pt;}
.wsb{word-spacing:15.869423pt;}
.ws19{word-spacing:15.876506pt;}
.wsc{word-spacing:27.098453pt;}
.ws12{word-spacing:30.677770pt;}
.ws16{word-spacing:31.827186pt;}
.ws1c{word-spacing:38.192879pt;}
.ws1a{word-spacing:53.133867pt;}
.ws1b{word-spacing:106.267733pt;}
.ws2{word-spacing:158.254967pt;}
.ws17{word-spacing:545.281408pt;}
._16{margin-left:-24.160683pt;}
._12{margin-left:-19.912447pt;}
._9{margin-left:-11.475250pt;}
._18{margin-left:-9.564160pt;}
._5{margin-left:-7.971345pt;}
._d{margin-left:-6.631151pt;}
._b{margin-left:-5.100885pt;}
._1{margin-left:-3.985673pt;}
._8{margin-left:-2.697072pt;}
._0{margin-left:-1.434624pt;}
._11{width:1.421862pt;}
._6{width:2.928247pt;}
._e{width:3.879868pt;}
._4{width:5.141732pt;}
._17{width:6.216704pt;}
._15{width:9.090065pt;}
._14{width:10.038255pt;}
._7{width:16.471499pt;}
._f{width:19.128320pt;}
._a{width:20.244745pt;}
._c{width:28.462795pt;}
._10{width:79.318767pt;}
._13{width:85.709664pt;}
._3{width:165.726089pt;}
._2{width:166.689075pt;}
.fs1{font-size:26.566933pt;}
.fs0{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs9{font-size:44.632747pt;}
.fs7{font-size:51.008533pt;}
.fs5{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yb0{bottom:21.365333pt;}
.y38{bottom:29.765333pt;}
.yd0{bottom:29.941333pt;}
.ydf{bottom:30.800000pt;}
.y99{bottom:37.942667pt;}
.yaf{bottom:40.626667pt;}
.ye{bottom:44.569333pt;}
.yde{bottom:46.474667pt;}
.yba{bottom:49.261333pt;}
.ydc{bottom:50.060000pt;}
.y37{bottom:53.010667pt;}
.ycf{bottom:53.188000pt;}
.ydd{bottom:53.232000pt;}
.yae{bottom:56.566667pt;}
.yc5{bottom:59.622667pt;}
.yd{bottom:60.509333pt;}
.y61{bottom:61.166667pt;}
.y2c{bottom:63.293333pt;}
.y75{bottom:63.928000pt;}
.y91{bottom:65.296000pt;}
.y2a{bottom:66.880000pt;}
.yb9{bottom:68.522667pt;}
.ydb{bottom:69.321333pt;}
.y2b{bottom:70.052000pt;}
.y98{bottom:71.956000pt;}
.yad{bottom:72.506667pt;}
.yc4{bottom:75.562667pt;}
.y36{bottom:76.257333pt;}
.yce{bottom:76.434667pt;}
.y44{bottom:78.656000pt;}
.y70{bottom:82.977333pt;}
.y60{bottom:84.413333pt;}
.y29{bottom:86.540000pt;}
.y8b{bottom:87.065333pt;}
.yac{bottom:88.448000pt;}
.yda{bottom:88.582667pt;}
.y90{bottom:89.546667pt;}
.y27{bottom:90.126667pt;}
.yb8{bottom:91.104000pt;}
.yc3{bottom:91.502667pt;}
.y28{bottom:93.298667pt;}
.yc{bottom:95.953333pt;}
.y18{bottom:98.169333pt;}
.y35{bottom:99.504000pt;}
.y17{bottom:101.756000pt;}
.y43{bottom:101.862667pt;}
.y56{bottom:102.293333pt;}
.y15{bottom:103.226667pt;}
.ycd{bottom:103.665333pt;}
.yab{bottom:104.388000pt;}
.y76{bottom:104.840000pt;}
.y16{bottom:104.928000pt;}
.y6f{bottom:105.560000pt;}
.y83{bottom:105.960000pt;}
.y68{bottom:106.278667pt;}
.yc2{bottom:107.442667pt;}
.yd9{bottom:107.844000pt;}
.yb{bottom:108.573333pt;}
.y8a{bottom:108.624000pt;}
.y4c{bottom:109.068000pt;}
.y5f{bottom:109.876000pt;}
.y97{bottom:111.141333pt;}
.y26{bottom:113.373333pt;}
.yb7{bottom:113.686667pt;}
.y8f{bottom:116.244000pt;}
.y34{bottom:118.764000pt;}
.yaa{bottom:120.328000pt;}
.y55{bottom:121.554667pt;}
.yc1{bottom:123.382667pt;}
.y4b{bottom:124.742667pt;}
.y42{bottom:125.149333pt;}
.y67{bottom:125.538667pt;}
.y89{bottom:126.649333pt;}
.y6e{bottom:126.748000pt;}
.yd8{bottom:127.105333pt;}
.y5e{bottom:127.942667pt;}
.y49{bottom:128.329333pt;}
.y80{bottom:129.600000pt;}
.ycc{bottom:130.897333pt;}
.y4a{bottom:131.501333pt;}
.y9d{bottom:133.934667pt;}
.ya9{bottom:136.268000pt;}
.y25{bottom:136.618667pt;}
.ya{bottom:136.717333pt;}
.y82{bottom:137.294667pt;}
.y33{bottom:138.025333pt;}
.yc0{bottom:139.322667pt;}
.y54{bottom:140.814667pt;}
.y53{bottom:140.816000pt;}
.y96{bottom:143.022667pt;}
.ya0{bottom:143.338667pt;}
.y8e{bottom:143.785333pt;}
.y88{bottom:144.716000pt;}
.y66{bottom:144.800000pt;}
.y74{bottom:145.752000pt;}
.y6d{bottom:146.009333pt;}
.yd7{bottom:146.366667pt;}
.y5d{bottom:146.448000pt;}
.y77{bottom:146.744000pt;}
.y3b{bottom:147.896000pt;}
.y7d{bottom:148.228000pt;}
.y41{bottom:148.354667pt;}
.ya8{bottom:152.208000pt;}
.y9c{bottom:153.196000pt;}
.yb6{bottom:155.210667pt;}
.ybf{bottom:155.264000pt;}
.y24{bottom:155.880000pt;}
.y9{bottom:155.978667pt;}
.ycb{bottom:158.128000pt;}
.y81{bottom:159.012000pt;}
.y14{bottom:159.577333pt;}
.y32{bottom:161.272000pt;}
.y48{bottom:162.169333pt;}
.ye3{bottom:162.793333pt;}
.y7f{bottom:163.372000pt;}
.yd6{bottom:165.626667pt;}
.y9f{bottom:166.585333pt;}
.y87{bottom:167.204000pt;}
.ya7{bottom:168.148000pt;}
.y7e{bottom:168.153333pt;}
.y6c{bottom:168.590667pt;}
.y40{bottom:168.976000pt;}
.y3a{bottom:171.142667pt;}
.ybe{bottom:171.204000pt;}
.y3f{bottom:171.601333pt;}
.y5c{bottom:171.910667pt;}
.y65{bottom:172.032000pt;}
.y52{bottom:174.656000pt;}
.yb5{bottom:174.790667pt;}
.y95{bottom:174.902667pt;}
.y1b{bottom:175.021333pt;}
.y9b{bottom:176.441333pt;}
.ye2{bottom:178.468000pt;}
.y23{bottom:179.126667pt;}
.y78{bottom:180.093333pt;}
.y7a{bottom:180.094667pt;}
.y63{bottom:180.098667pt;}
.y19{bottom:180.185333pt;}
.y31{bottom:180.533333pt;}
.yca{bottom:181.374667pt;}
.ye0{bottom:182.054667pt;}
.y47{bottom:182.790667pt;}
.ya6{bottom:184.089333pt;}
.y1a{bottom:184.321333pt;}
.yd5{bottom:184.888000pt;}
.ye1{bottom:185.226667pt;}
.y46{bottom:185.416000pt;}
.y73{bottom:186.662667pt;}
.ybd{bottom:187.144000pt;}
.y86{bottom:189.214667pt;}
.y6b{bottom:189.780000pt;}
.y9e{bottom:189.832000pt;}
.y5b{bottom:190.016000pt;}
.yb4{bottom:190.730667pt;}
.y51{bottom:191.690667pt;}
.y39{bottom:191.764000pt;}
.y3e{bottom:192.222667pt;}
.y94{bottom:194.828000pt;}
.y7c{bottom:194.960000pt;}
.y50{bottom:195.277333pt;}
.y4e{bottom:197.902667pt;}
.y4f{bottom:198.449333pt;}
.y9a{bottom:199.688000pt;}
.ya5{bottom:200.029333pt;}
.y79{bottom:201.342667pt;}
.y22{bottom:202.372000pt;}
.y30{bottom:203.778667pt;}
.yd4{bottom:204.149333pt;}
.y5a{bottom:208.041333pt;}
.yc9{bottom:208.605333pt;}
.y6a{bottom:209.040000pt;}
.y13{bottom:210.976000pt;}
.y85{bottom:212.461333pt;}
.yb3{bottom:213.312000pt;}
.y8{bottom:213.488000pt;}
.y45{bottom:214.008000pt;}
.y64{bottom:214.538667pt;}
.y12{bottom:214.562667pt;}
.ya4{bottom:215.969333pt;}
.y10{bottom:215.981333pt;}
.y6{bottom:217.074667pt;}
.y11{bottom:217.734667pt;}
.y21{bottom:218.046667pt;}
.y8d{bottom:218.302667pt;}
.y4d{bottom:218.524000pt;}
.ybc{bottom:219.024000pt;}
.y3d{bottom:219.453333pt;}
.y7{bottom:220.246667pt;}
.y1f{bottom:221.633333pt;}
.y7b{bottom:222.190667pt;}
.y2f{bottom:223.040000pt;}
.yd3{bottom:223.410667pt;}
.y20{bottom:224.805333pt;}
.y59{bottom:226.108000pt;}
.y72{bottom:227.574667pt;}
.yb2{bottom:229.253333pt;}
.yc8{bottom:231.852000pt;}
.ya3{bottom:231.909333pt;}
.y84{bottom:233.082667pt;}
.y93{bottom:237.465333pt;}
.y69{bottom:237.600000pt;}
.y3c{bottom:238.714667pt;}
.y5{bottom:242.074667pt;}
.yd2{bottom:242.672000pt;}
.y58{bottom:244.613333pt;}
.y1e{bottom:244.880000pt;}
.y8c{bottom:245.845333pt;}
.ybb{bottom:246.256000pt;}
.y2e{bottom:246.286667pt;}
.ya2{bottom:247.849333pt;}
.y71{bottom:247.940000pt;}
.yb1{bottom:253.162667pt;}
.yd1{bottom:261.933333pt;}
.yc7{bottom:263.068000pt;}
.y92{bottom:265.006667pt;}
.y57{bottom:266.836000pt;}
.y62{bottom:269.457333pt;}
.y2d{bottom:269.532000pt;}
.y4{bottom:271.297333pt;}
.ya1{bottom:271.760000pt;}
.y1d{bottom:311.312000pt;}
.yc6{bottom:316.309333pt;}
.yf{bottom:316.476000pt;}
.y1c{bottom:320.612000pt;}
.y3{bottom:352.613333pt;}
.y1{bottom:354.406667pt;}
.y2{bottom:355.092000pt;}
.h20{height:0.000000pt;}
.h3{height:23.538303pt;}
.h2{height:28.246153pt;}
.h1f{height:29.032418pt;}
.h4{height:35.419486pt;}
.h24{height:35.493423pt;}
.h1c{height:36.290431pt;}
.h8{height:37.661379pt;}
.h1d{height:39.544614pt;}
.h19{height:42.519801pt;}
.h28{height:42.592393pt;}
.h17{height:42.679801pt;}
.h18{height:42.685134pt;}
.h1b{height:43.548809pt;}
.h29{height:44.250180pt;}
.h1a{height:45.193561pt;}
.h15{height:45.830972pt;}
.h16{height:45.836305pt;}
.h12{height:45.990972pt;}
.h14{height:45.996305pt;}
.h13{height:46.630972pt;}
.hc{height:47.076606pt;}
.h26{height:47.609939pt;}
.h23{height:47.799801pt;}
.h21{height:47.954467pt;}
.h22{height:47.959801pt;}
.he{height:50.609638pt;}
.hd{height:50.817638pt;}
.h7{height:56.492305pt;}
.h11{height:57.126972pt;}
.ha{height:57.132305pt;}
.hb{height:60.802713pt;}
.h1e{height:63.992046pt;}
.h2a{height:70.833638pt;}
.h9{height:70.838972pt;}
.h10{height:71.478972pt;}
.h6{height:81.348503pt;}
.h27{height:82.265837pt;}
.h5{height:82.271170pt;}
.h25{height:100.230972pt;}
.hf{height:102.004503pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x1{left:11.338667pt;}
.x21{left:37.794667pt;}
.x16{left:38.725333pt;}
.x62{left:40.013333pt;}
.x4e{left:42.222667pt;}
.x43{left:45.765333pt;}
.x53{left:46.694667pt;}
.x4d{left:48.864000pt;}
.x64{left:51.078667pt;}
.x32{left:52.041333pt;}
.x2{left:54.377333pt;}
.x3{left:57.976000pt;}
.x54{left:60.288000pt;}
.x4{left:61.517333pt;}
.x60{left:65.464000pt;}
.x4c{left:67.688000pt;}
.x22{left:69.010667pt;}
.x23{left:73.012000pt;}
.x1c{left:78.853333pt;}
.x4f{left:81.862667pt;}
.x3e{left:83.885333pt;}
.x24{left:85.376000pt;}
.x1f{left:86.360000pt;}
.x61{left:88.338667pt;}
.x8{left:94.010667pt;}
.x20{left:96.558667pt;}
.x5e{left:101.556000pt;}
.x5a{left:103.086667pt;}
.x44{left:106.002667pt;}
.x41{left:107.293333pt;}
.x65{left:113.321333pt;}
.x28{left:115.061333pt;}
.x2f{left:116.830667pt;}
.x3f{left:120.304000pt;}
.x4b{left:121.840000pt;}
.x36{left:123.462667pt;}
.x11{left:129.264000pt;}
.x5f{left:131.113333pt;}
.x3a{left:134.950667pt;}
.x17{left:143.597333pt;}
.x18{left:148.878667pt;}
.x30{left:151.804000pt;}
.xb{left:154.732000pt;}
.x19{left:155.961333pt;}
.x45{left:163.228000pt;}
.x9{left:166.040000pt;}
.x35{left:167.069333pt;}
.x55{left:176.037333pt;}
.x15{left:180.660000pt;}
.x42{left:181.653333pt;}
.x27{left:183.536000pt;}
.xa{left:184.677333pt;}
.x25{left:186.085333pt;}
.x14{left:188.854667pt;}
.xf{left:190.068000pt;}
.x29{left:192.674667pt;}
.x33{left:194.198667pt;}
.x67{left:196.180000pt;}
.x2a{left:197.956000pt;}
.x1a{left:202.066667pt;}
.x2b{left:205.038667pt;}
.x1b{left:207.348000pt;}
.x68{left:208.544000pt;}
.xc{left:209.773333pt;}
.x1d{left:210.868000pt;}
.x56{left:212.788000pt;}
.xd{left:215.054667pt;}
.x1e{left:221.066667pt;}
.xe{left:222.137333pt;}
.x63{left:223.130667pt;}
.x48{left:225.664000pt;}
.x37{left:228.741333pt;}
.x38{left:234.022667pt;}
.x2c{left:235.893333pt;}
.x50{left:238.258667pt;}
.x57{left:240.064000pt;}
.x39{left:241.105333pt;}
.x2d{left:243.960000pt;}
.x34{left:247.348000pt;}
.x46{left:251.440000pt;}
.x2e{left:254.158667pt;}
.x3b{left:258.521333pt;}
.x69{left:259.718667pt;}
.x3c{left:263.804000pt;}
.x58{left:266.426667pt;}
.x52{left:269.632000pt;}
.x3d{left:270.885333pt;}
.x51{left:273.736000pt;}
.x10{left:280.656000pt;}
.x49{left:294.045333pt;}
.x4a{left:320.476000pt;}
.x12{left:321.501333pt;}
.x5b{left:322.966667pt;}
.x40{left:324.593333pt;}
.x31{left:326.984000pt;}
.x5c{left:331.032000pt;}
.x13{left:333.010667pt;}
.x5d{left:341.230667pt;}
.x26{left:344.965333pt;}
.x66{left:361.698667pt;}
.x5{left:365.169333pt;}
.x6{left:368.769333pt;}
.x7{left:372.310667pt;}
.x47{left:376.948000pt;}
.x59{left:427.398667pt;}
}




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