
    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_8c451296d34e3b54ed767a5a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922000;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_e20a4e72cfd39258f1792bd8.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112000;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_58fc24409b3eaa9916c4925e.woff')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_3408686d443349d563628576.woff')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_e55c4f2b8ae724b1b97d51b3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.023000;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_d36967fcedd287b883ab3087.woff')format("woff");}.ff6{font-family:ff6;line-height:0.456000;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_92cc556487e4fecea2c6fc1d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.949000;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_4dff6c9bc51ca80b2aec6723.woff')format("woff");}.ff8{font-family:ff8;line-height:0.504000;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_e2d6b9fea3c757b335e9cb77.woff')format("woff");}.ff9{font-family:ff9;line-height:1.820000;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_9811ebef3cdfc1cf3d7b99b5.woff')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_926a36ebc10c6d68ab500437.woff')format("woff");}.ffb{font-family:ffb;line-height:0.914000;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:ffc;src:url('chunks/assets/font_01b8ad53c293e74c7eb9dfd0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.916000;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);}
.v2{vertical-align:-80.976000px;}
.va{vertical-align:-27.888000px;}
.v3{vertical-align:-7.470000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.178000px;}
.vb{vertical-align:45.582000px;}
.v8{vertical-align:76.758000px;}
.v1{vertical-align:97.164000px;}
.v7{vertical-align:125.766000px;}
.v5{vertical-align:127.524000px;}
.v6{vertical-align:132.696000px;}
.vc{vertical-align:143.460000px;}
.v9{vertical-align:204.282000px;}
.vd{vertical-align:253.290000px;}
.ls2b{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.001395px;}
.lsd{letter-spacing:0.002452px;}
.ls12{letter-spacing:0.003654px;}
.ls21{letter-spacing:0.004172px;}
.ls22{letter-spacing:0.004717px;}
.lsb{letter-spacing:0.007197px;}
.ls18{letter-spacing:0.007224px;}
.lsa{letter-spacing:0.010172px;}
.ls1d{letter-spacing:2.986200px;}
.ls0{letter-spacing:2.989136px;}
.ls15{letter-spacing:2.996162px;}
.ls28{letter-spacing:2.996253px;}
.ls3{letter-spacing:4.694995px;}
.ls7{letter-spacing:4.700995px;}
.ls11{letter-spacing:7.175266px;}
.ls5{letter-spacing:11.356071px;}
.ls1b{letter-spacing:11.359197px;}
.ls2{letter-spacing:11.362172px;}
.lse{letter-spacing:14.348253px;}
.ls26{letter-spacing:30.992961px;}
.lsc{letter-spacing:31.786172px;}
.ls6{letter-spacing:31.788303px;}
.lsf{letter-spacing:36.476995px;}
.ls9{letter-spacing:38.153266px;}
.ls29{letter-spacing:38.164172px;}
.ls24{letter-spacing:41.312452px;}
.ls17{letter-spacing:41.316303px;}
.ls16{letter-spacing:41.317224px;}
.ls1e{letter-spacing:41.318452px;}
.ls27{letter-spacing:41.318961px;}
.ls10{letter-spacing:43.452303px;}
.ls23{letter-spacing:46.010995px;}
.ls1a{letter-spacing:51.632405px;}
.ls8{letter-spacing:51.680978px;}
.ls19{letter-spacing:54.633856px;}
.ls1f{letter-spacing:58.086303px;}
.ls14{letter-spacing:58.282717px;}
.ls20{letter-spacing:59.777607px;}
.ls2a{letter-spacing:73.708717px;}
.ls25{letter-spacing:77.298303px;}
.ls1{letter-spacing:81.822600px;}
.ls13{letter-spacing:95.943856px;}
.ls4{letter-spacing:1256.588961px;}
.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;}
}
.ws2d{word-spacing:-154.128780px;}
.ws29{word-spacing:-144.632378px;}
.ws2f{word-spacing:-140.226482px;}
.ws33{word-spacing:-98.904541px;}
.ws2{word-spacing:-88.122157px;}
.ws31{word-spacing:-87.411497px;}
.ws2c{word-spacing:-86.012108px;}
.ws5e{word-spacing:-72.880342px;}
.ws2e{word-spacing:-51.866881px;}
.ws35{word-spacing:-51.368108px;}
.ws14{word-spacing:-48.000103px;}
.ws5b{word-spacing:-45.025658px;}
.ws22{word-spacing:-44.096144px;}
.ws4c{word-spacing:-43.724339px;}
.ws1a{word-spacing:-43.352533px;}
.ws1{word-spacing:-42.088131px;}
.ws5c{word-spacing:-41.307602px;}
.ws21{word-spacing:-38.519060px;}
.ws4a{word-spacing:-38.333157px;}
.ws3d{word-spacing:-37.217741px;}
.ws49{word-spacing:-36.660032px;}
.ws37{word-spacing:-36.288227px;}
.ws48{word-spacing:-35.358713px;}
.ws3{word-spacing:-35.078080px;}
.ws4{word-spacing:-34.854937px;}
.ws13{word-spacing:-32.198365px;}
.ws38{word-spacing:-31.454754px;}
.ws3a{word-spacing:-31.268851px;}
.ws24{word-spacing:-30.153434px;}
.ws23{word-spacing:-29.409823px;}
.ws1c{word-spacing:-29.223920px;}
.ws26{word-spacing:-29.038017px;}
.ws51{word-spacing:-28.666212px;}
.ws12{word-spacing:-28.294406px;}
.ws46{word-spacing:-27.736698px;}
.ws4e{word-spacing:-27.550795px;}
.ws18{word-spacing:-27.364892px;}
.wsb{word-spacing:-26.807184px;}
.ws4d{word-spacing:-26.435378px;}
.ws58{word-spacing:-25.505864px;}
.ws5d{word-spacing:-24.365780px;}
.ws5f{word-spacing:-24.210781px;}
.wsd{word-spacing:-24.204545px;}
.ws19{word-spacing:-23.832739px;}
.ws25{word-spacing:-23.646836px;}
.ws41{word-spacing:-23.460933px;}
.wsc{word-spacing:-22.345517px;}
.ws17{word-spacing:-21.973711px;}
.ws4b{word-spacing:-21.416003px;}
.ws8{word-spacing:-20.858294px;}
.ws57{word-spacing:-20.672391px;}
.ws10{word-spacing:-20.114683px;}
.ws11{word-spacing:-18.813363px;}
.ws16{word-spacing:-17.697947px;}
.wsa{word-spacing:-16.582530px;}
.ws1b{word-spacing:-15.095307px;}
.ws5a{word-spacing:-14.165793px;}
.ws52{word-spacing:-13.422182px;}
.ws56{word-spacing:-13.050377px;}
.wsf{word-spacing:-12.864474px;}
.ws39{word-spacing:-12.678571px;}
.ws47{word-spacing:-12.306765px;}
.ws53{word-spacing:-12.120863px;}
.ws20{word-spacing:-11.377251px;}
.ws40{word-spacing:-11.191349px;}
.ws45{word-spacing:-10.819543px;}
.ws3e{word-spacing:-10.261835px;}
.ws9{word-spacing:-9.704126px;}
.ws6{word-spacing:-9.146418px;}
.ws43{word-spacing:-8.031001px;}
.ws50{word-spacing:-7.659195px;}
.ws4f{word-spacing:-6.915584px;}
.ws54{word-spacing:-6.543779px;}
.ws15{word-spacing:-5.800167px;}
.ws1f{word-spacing:-5.614265px;}
.ws55{word-spacing:-4.684751px;}
.wse{word-spacing:-3.941139px;}
.ws3f{word-spacing:-3.383431px;}
.ws5{word-spacing:-0.267736px;}
.ws59{word-spacing:-0.154999px;}
.ws34{word-spacing:-0.059776px;}
.ws42{word-spacing:-0.037181px;}
.ws61{word-spacing:0.000000px;}
.ws44{word-spacing:5.911709px;}
.ws7{word-spacing:8.886154px;}
.ws32{word-spacing:51.421593px;}
.ws2a{word-spacing:51.427593px;}
.ws36{word-spacing:51.495076px;}
.ws3c{word-spacing:56.574489px;}
.ws3b{word-spacing:56.729488px;}
.ws27{word-spacing:67.854522px;}
.ws30{word-spacing:68.040425px;}
.ws2b{word-spacing:77.511625px;}
.ws28{word-spacing:77.607013px;}
.ws60{word-spacing:81.670338px;}
.ws1d{word-spacing:97.723713px;}
.ws1e{word-spacing:97.991449px;}
.ws0{word-spacing:141.112764px;}
._1d{margin-left:-40.078158px;}
._16{margin-left:-24.631730px;}
._2{margin-left:-20.883424px;}
._1e{margin-left:-17.103058px;}
._e{margin-left:-14.423860px;}
._0{margin-left:-11.952174px;}
._27{margin-left:-8.032086px;}
._4{margin-left:-6.693405px;}
._6{margin-left:-4.910031px;}
._24{margin-left:-3.818243px;}
._1b{width:1.116321px;}
._3{width:2.954229px;}
._c{width:4.833473px;}
._5{width:6.471147px;}
._8{width:8.299822px;}
._1{width:11.952174px;}
._28{width:44.769788px;}
._19{width:46.366355px;}
._2b{width:48.520631px;}
._21{width:51.834095px;}
._26{width:53.168201px;}
._1c{width:59.303897px;}
._f{width:64.322369px;}
._7{width:68.951187px;}
._13{width:71.167986px;}
._d{width:73.508164px;}
._18{width:74.962600px;}
._1a{width:77.674584px;}
._25{width:79.380496px;}
._12{width:80.419354px;}
._1f{width:81.986052px;}
._9{width:83.175110px;}
._29{width:85.701191px;}
._17{width:87.636777px;}
._11{width:90.130072px;}
._15{width:94.296491px;}
._a{width:105.931810px;}
._14{width:111.990044px;}
._22{width:119.098122px;}
._20{width:126.785710px;}
._b{width:135.894947px;}
._23{width:141.362686px;}
._2a{width:144.894839px;}
._10{width:153.555713px;}
._2c{width:154.688603px;}
.fc3{color:transparent;}
.fc2{color:rgb(20,66,129);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(28,130,185);}
.fs7{font-size:59.775600px;}
.fs6{font-size:130.131600px;}
.fs8{font-size:154.998600px;}
.fs3{font-size:156.199200px;}
.fs5{font-size:185.902800px;}
.fs2{font-size:187.414200px;}
.fs4{font-size:223.143000px;}
.fs1{font-size:267.736200px;}
.fs0{font-size:385.554000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:105.055500px;}
.y71{bottom:224.070000px;}
.y9a{bottom:230.787000px;}
.y4d{bottom:270.346500px;}
.y99{bottom:284.491500px;}
.y70{bottom:288.516000px;}
.y4c{bottom:323.923500px;}
.y98{bottom:338.196000px;}
.y4b{bottom:344.409000px;}
.y6f{bottom:352.962000px;}
.y4a{bottom:353.973000px;}
.y44{bottom:355.804500px;}
.y49{bottom:362.940000px;}
.y48{bottom:371.907000px;}
.y47{bottom:380.872500px;}
.y46{bottom:389.839500px;}
.y97{bottom:391.900500px;}
.y45{bottom:416.140500px;}
.y6e{bottom:417.406500px;}
.y42{bottom:429.687000px;}
.y96{bottom:456.666000px;}
.y43{bottom:461.568000px;}
.y41{bottom:493.009500px;}
.y6d{bottom:503.112000px;}
.y95{bottom:510.370500px;}
.y94{bottom:564.075000px;}
.y6c{bottom:567.558000px;}
.y93{bottom:617.779500px;}
.y6b{bottom:632.002500px;}
.y40{bottom:637.530000px;}
.y3f{bottom:658.015500px;}
.y3e{bottom:667.579500px;}
.y38{bottom:669.411000px;}
.y92{bottom:673.933500px;}
.y3d{bottom:676.546500px;}
.y3c{bottom:685.512000px;}
.y3b{bottom:694.479000px;}
.y6a{bottom:696.448500px;}
.y3a{bottom:703.446000px;}
.y91{bottom:727.638000px;}
.y39{bottom:729.747000px;}
.y37{bottom:755.656500px;}
.y69{bottom:760.894500px;}
.y90{bottom:783.792000px;}
.y68{bottom:825.339000px;}
.y8f{bottom:869.496000px;}
.y67{bottom:889.785000px;}
.y36{bottom:905.005500px;}
.y8e{bottom:933.942000px;}
.y35{bottom:969.450000px;}
.y66{bottom:975.490500px;}
.y8d{bottom:998.388000px;}
.y34{bottom:1033.896000px;}
.y65{bottom:1039.936500px;}
.y8c{bottom:1062.832500px;}
.y33{bottom:1100.209500px;}
.y64{bottom:1104.381000px;}
.y8b{bottom:1127.278500px;}
.y63{bottom:1168.827000px;}
.y30{bottom:1199.868000px;}
.y31{bottom:1231.749000px;}
.y32{bottom:1233.042000px;}
.y62{bottom:1233.273000px;}
.y8a{bottom:1237.612500px;}
.y2f{bottom:1263.190500px;}
.y61{bottom:1297.717500px;}
.y2e{bottom:1332.175500px;}
.y60{bottom:1362.163500px;}
.y2d{bottom:1398.489000px;}
.y5f{bottom:1450.234500px;}
.y2c{bottom:1477.041000px;}
.y5e{bottom:1514.680500px;}
.y2b{bottom:1559.329500px;}
.y89{bottom:1621.068000px;}
.y2a{bottom:1652.016000px;}
.y29{bottom:1763.539500px;}
.y28{bottom:1827.985500px;}
.y27{bottom:1892.431500px;}
.y26{bottom:1956.876000px;}
.y25{bottom:2021.322000px;}
.y88{bottom:2039.685000px;}
.y24{bottom:2085.768000px;}
.y87{bottom:2104.131000px;}
.y23{bottom:2150.212500px;}
.y86{bottom:2168.575500px;}
.y5d{bottom:2194.653000px;}
.y22{bottom:2214.658500px;}
.y85{bottom:2233.021500px;}
.y5c{bottom:2259.099000px;}
.y84{bottom:2297.467500px;}
.y5b{bottom:2323.545000px;}
.y21{bottom:2327.155500px;}
.y83{bottom:2361.912000px;}
.y5a{bottom:2387.989500px;}
.y20{bottom:2391.601500px;}
.y82{bottom:2426.358000px;}
.y59{bottom:2452.435500px;}
.y81{bottom:2490.804000px;}
.y58{bottom:2516.881500px;}
.y1f{bottom:2546.617500px;}
.y80{bottom:2555.248500px;}
.y57{bottom:2602.585500px;}
.y1e{bottom:2611.063500px;}
.y7f{bottom:2644.323000px;}
.y56{bottom:2667.031500px;}
.y1d{bottom:2675.509500px;}
.y7e{bottom:2708.769000px;}
.y55{bottom:2731.477500px;}
.y1c{bottom:2739.954000px;}
.y54{bottom:2795.922000px;}
.y1b{bottom:2804.400000px;}
.y53{bottom:2860.368000px;}
.y1a{bottom:2868.846000px;}
.y52{bottom:2924.814000px;}
.y19{bottom:2933.290500px;}
.y51{bottom:2989.258500px;}
.y18{bottom:2997.736500px;}
.y17{bottom:3062.182500px;}
.y50{bottom:3101.961000px;}
.y16{bottom:3126.627000px;}
.y15{bottom:3191.073000px;}
.y14{bottom:3255.519000px;}
.y4f{bottom:3280.809000px;}
.y7d{bottom:3286.167000px;}
.y13{bottom:3319.963500px;}
.y7c{bottom:3350.613000px;}
.y12{bottom:3384.409500px;}
.y7b{bottom:3415.059000px;}
.y11{bottom:3448.855500px;}
.y7a{bottom:3479.503500px;}
.y10{bottom:3513.300000px;}
.y79{bottom:3543.949500px;}
.yf{bottom:3577.746000px;}
.y78{bottom:3608.395500px;}
.ye{bottom:3642.192000px;}
.y77{bottom:3672.840000px;}
.yd{bottom:3706.636500px;}
.y76{bottom:3737.286000px;}
.yc{bottom:3771.082500px;}
.y75{bottom:3801.732000px;}
.yb{bottom:3835.528500px;}
.ya{bottom:3899.973000px;}
.y74{bottom:3916.438500px;}
.y9{bottom:3964.419000px;}
.y73{bottom:4073.665500px;}
.y8{bottom:4076.916000px;}
.y72{bottom:4138.111500px;}
.y4e{bottom:4138.588500px;}
.y7{bottom:4295.934000px;}
.y6{bottom:4382.622000px;}
.y5{bottom:4469.308500px;}
.y4{bottom:4557.361500px;}
.y3{bottom:4727.772000px;}
.y2{bottom:4814.946000px;}
.y1{bottom:4902.120000px;}
.h12{height:2.988780px;}
.hb{height:83.656260px;}
.h1a{height:107.569028px;}
.h1b{height:110.049006px;}
.hd{height:114.516125px;}
.h18{height:116.248950px;}
.ha{height:132.362794px;}
.h7{height:133.106405px;}
.h19{height:133.608793px;}
.h4{height:134.643710px;}
.h9{height:137.196266px;}
.h8{height:152.778214px;}
.h1c{height:159.770388px;}
.h6{height:160.248214px;}
.h11{height:165.637883px;}
.h10{height:169.411699px;}
.h5{height:191.699119px;}
.h14{height:205.830214px;}
.he{height:258.128794px;}
.h3{height:258.715040px;}
.h17{height:259.886794px;}
.hc{height:264.720266px;}
.h2{height:276.056664px;}
.hf{height:296.935699px;}
.h13{height:303.704794px;}
.h16{height:303.710794px;}
.h15{height:385.652794px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x9{left:106.299000px;}
.xc{left:144.424500px;}
.xf{left:188.118000px;}
.x19{left:203.061000px;}
.x23{left:204.855000px;}
.x10{left:213.148500px;}
.x24{left:214.947000px;}
.x12{left:216.960000px;}
.x28{left:236.388000px;}
.x11{left:239.194500px;}
.xa{left:270.921000px;}
.xb{left:303.840000px;}
.x29{left:354.157500px;}
.x2a{left:364.120500px;}
.x13{left:404.610000px;}
.x1a{left:428.089500px;}
.x15{left:431.601000px;}
.x14{left:434.440500px;}
.x8{left:438.564000px;}
.x2b{left:462.645000px;}
.x2c{left:521.001000px;}
.x1c{left:537.564000px;}
.x2d{left:541.822500px;}
.xd{left:558.109500px;}
.x25{left:565.771500px;}
.x16{left:574.561500px;}
.x26{left:609.723000px;}
.x2{left:614.968500px;}
.x2e{left:620.104500px;}
.x2f{left:640.395000px;}
.xe{left:648.468000px;}
.x5{left:671.793000px;}
.x1b{left:678.981000px;}
.x27{left:728.761500px;}
.x1{left:758.418000px;}
.x7{left:796.366500px;}
.x6{left:810.243000px;}
.x1d{left:824.323500px;}
.x1e{left:834.286500px;}
.x4{left:842.683500px;}
.x17{left:846.448500px;}
.x30{left:898.368000px;}
.x18{left:926.269500px;}
.x1f{left:932.811000px;}
.x20{left:981.564000px;}
.x21{left:1002.385500px;}
.x22{left:1066.947000px;}
.x31{left:1091.854500px;}
.x3a{left:1127.373000px;}
.x3{left:1247.329500px;}
.x32{left:1267.252500px;}
.x33{left:1380.777000px;}
.x34{left:1587.079500px;}
.x35{left:2428.204500px;}
.x39{left:2506.248000px;}
.x38{left:2649.630000px;}
.x36{left:2654.595000px;}
.x37{left:2722.827000px;}
@media print{
.v2{vertical-align:-71.978667pt;}
.va{vertical-align:-24.789333pt;}
.v3{vertical-align:-6.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.602667pt;}
.vb{vertical-align:40.517333pt;}
.v8{vertical-align:68.229333pt;}
.v1{vertical-align:86.368000pt;}
.v7{vertical-align:111.792000pt;}
.v5{vertical-align:113.354667pt;}
.v6{vertical-align:117.952000pt;}
.vc{vertical-align:127.520000pt;}
.v9{vertical-align:181.584000pt;}
.vd{vertical-align:225.146667pt;}
.ls2b{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.001240pt;}
.lsd{letter-spacing:0.002180pt;}
.ls12{letter-spacing:0.003248pt;}
.ls21{letter-spacing:0.003708pt;}
.ls22{letter-spacing:0.004193pt;}
.lsb{letter-spacing:0.006397pt;}
.ls18{letter-spacing:0.006421pt;}
.lsa{letter-spacing:0.009042pt;}
.ls1d{letter-spacing:2.654400pt;}
.ls0{letter-spacing:2.657010pt;}
.ls15{letter-spacing:2.663255pt;}
.ls28{letter-spacing:2.663336pt;}
.ls3{letter-spacing:4.173329pt;}
.ls7{letter-spacing:4.178662pt;}
.ls11{letter-spacing:6.378014pt;}
.ls5{letter-spacing:10.094285pt;}
.ls1b{letter-spacing:10.097064pt;}
.ls2{letter-spacing:10.099708pt;}
.lse{letter-spacing:12.754002pt;}
.ls26{letter-spacing:27.549299pt;}
.lsc{letter-spacing:28.254375pt;}
.ls6{letter-spacing:28.256269pt;}
.lsf{letter-spacing:32.423995pt;}
.ls9{letter-spacing:33.914014pt;}
.ls29{letter-spacing:33.923708pt;}
.ls24{letter-spacing:36.722180pt;}
.ls17{letter-spacing:36.725602pt;}
.ls16{letter-spacing:36.726421pt;}
.ls1e{letter-spacing:36.727513pt;}
.ls27{letter-spacing:36.727965pt;}
.ls10{letter-spacing:38.624269pt;}
.ls23{letter-spacing:40.898662pt;}
.ls1a{letter-spacing:45.895471pt;}
.ls8{letter-spacing:45.938647pt;}
.ls19{letter-spacing:48.563427pt;}
.ls1f{letter-spacing:51.632269pt;}
.ls14{letter-spacing:51.806860pt;}
.ls20{letter-spacing:53.135651pt;}
.ls2a{letter-spacing:65.518860pt;}
.ls25{letter-spacing:68.709602pt;}
.ls1{letter-spacing:72.731200pt;}
.ls13{letter-spacing:85.283427pt;}
.ls4{letter-spacing:1116.967965pt;}
.ws2d{word-spacing:-137.003360pt;}
.ws29{word-spacing:-128.562114pt;}
.ws2f{word-spacing:-124.645762pt;}
.ws33{word-spacing:-87.915148pt;}
.ws2{word-spacing:-78.330806pt;}
.ws31{word-spacing:-77.699108pt;}
.ws2c{word-spacing:-76.455207pt;}
.ws5e{word-spacing:-64.782526pt;}
.ws2e{word-spacing:-46.103894pt;}
.ws35{word-spacing:-45.660540pt;}
.ws14{word-spacing:-42.666758pt;}
.ws5b{word-spacing:-40.022807pt;}
.ws22{word-spacing:-39.196573pt;}
.ws4c{word-spacing:-38.866079pt;}
.ws1a{word-spacing:-38.535585pt;}
.ws1{word-spacing:-37.411672pt;}
.ws5c{word-spacing:-36.717869pt;}
.ws21{word-spacing:-34.239165pt;}
.ws4a{word-spacing:-34.073918pt;}
.ws3d{word-spacing:-33.082436pt;}
.ws49{word-spacing:-32.586695pt;}
.ws37{word-spacing:-32.256201pt;}
.ws48{word-spacing:-31.429967pt;}
.ws3{word-spacing:-31.180515pt;}
.ws4{word-spacing:-30.982166pt;}
.ws13{word-spacing:-28.620769pt;}
.ws38{word-spacing:-27.959781pt;}
.ws3a{word-spacing:-27.794534pt;}
.ws24{word-spacing:-26.803053pt;}
.ws23{word-spacing:-26.142065pt;}
.ws1c{word-spacing:-25.976818pt;}
.ws26{word-spacing:-25.811571pt;}
.ws51{word-spacing:-25.481077pt;}
.ws12{word-spacing:-25.150583pt;}
.ws46{word-spacing:-24.654842pt;}
.ws4e{word-spacing:-24.489596pt;}
.ws18{word-spacing:-24.324349pt;}
.wsb{word-spacing:-23.828608pt;}
.ws4d{word-spacing:-23.498114pt;}
.ws58{word-spacing:-22.671879pt;}
.ws5d{word-spacing:-21.658471pt;}
.ws5f{word-spacing:-21.520695pt;}
.wsd{word-spacing:-21.515151pt;}
.ws19{word-spacing:-21.184657pt;}
.ws25{word-spacing:-21.019410pt;}
.ws41{word-spacing:-20.854163pt;}
.wsc{word-spacing:-19.862681pt;}
.ws17{word-spacing:-19.532188pt;}
.ws4b{word-spacing:-19.036447pt;}
.ws8{word-spacing:-18.540706pt;}
.ws57{word-spacing:-18.375459pt;}
.ws10{word-spacing:-17.879718pt;}
.ws11{word-spacing:-16.722990pt;}
.ws16{word-spacing:-15.731508pt;}
.wsa{word-spacing:-14.740026pt;}
.ws1b{word-spacing:-13.418051pt;}
.ws5a{word-spacing:-12.591816pt;}
.ws52{word-spacing:-11.930829pt;}
.ws56{word-spacing:-11.600335pt;}
.wsf{word-spacing:-11.435088pt;}
.ws39{word-spacing:-11.269841pt;}
.ws47{word-spacing:-10.939347pt;}
.ws53{word-spacing:-10.774100pt;}
.ws20{word-spacing:-10.113112pt;}
.ws40{word-spacing:-9.947865pt;}
.ws45{word-spacing:-9.617372pt;}
.ws3e{word-spacing:-9.121631pt;}
.ws9{word-spacing:-8.625890pt;}
.ws6{word-spacing:-8.130149pt;}
.ws43{word-spacing:-7.138668pt;}
.ws50{word-spacing:-6.808174pt;}
.ws4f{word-spacing:-6.147186pt;}
.ws54{word-spacing:-5.816692pt;}
.ws15{word-spacing:-5.155704pt;}
.ws1f{word-spacing:-4.990457pt;}
.ws55{word-spacing:-4.164223pt;}
.wse{word-spacing:-3.503235pt;}
.ws3f{word-spacing:-3.007494pt;}
.ws5{word-spacing:-0.237988pt;}
.ws59{word-spacing:-0.137777pt;}
.ws34{word-spacing:-0.053134pt;}
.ws42{word-spacing:-0.033049pt;}
.ws61{word-spacing:0.000000pt;}
.ws44{word-spacing:5.254852pt;}
.ws7{word-spacing:7.898803pt;}
.ws32{word-spacing:45.708083pt;}
.ws2a{word-spacing:45.713416pt;}
.ws36{word-spacing:45.773401pt;}
.ws3c{word-spacing:50.288435pt;}
.ws3b{word-spacing:50.426211pt;}
.ws27{word-spacing:60.315131pt;}
.ws30{word-spacing:60.480378pt;}
.ws2b{word-spacing:68.899223pt;}
.ws28{word-spacing:68.984012pt;}
.ws60{word-spacing:72.595856pt;}
.ws1d{word-spacing:86.865523pt;}
.ws1e{word-spacing:87.103510pt;}
.ws0{word-spacing:125.433568pt;}
._1d{margin-left:-35.625029pt;}
._16{margin-left:-21.894871pt;}
._2{margin-left:-18.563043pt;}
._1e{margin-left:-15.202718pt;}
._e{margin-left:-12.821209pt;}
._0{margin-left:-10.624155pt;}
._27{margin-left:-7.139632pt;}
._4{margin-left:-5.949693pt;}
._6{margin-left:-4.364472pt;}
._24{margin-left:-3.393994pt;}
._1b{width:0.992285pt;}
._3{width:2.625981pt;}
._c{width:4.296420pt;}
._5{width:5.752131pt;}
._8{width:7.377620pt;}
._1{width:10.624155pt;}
._28{width:39.795367pt;}
._19{width:41.214538pt;}
._2b{width:43.129450pt;}
._21{width:46.074751pt;}
._26{width:47.260623pt;}
._1c{width:52.714575pt;}
._f{width:57.175439pt;}
._7{width:61.289944pt;}
._13{width:63.260432pt;}
._d{width:65.340590pt;}
._18{width:66.633422pt;}
._1a{width:69.044075pt;}
._25{width:70.560441pt;}
._12{width:71.483870pt;}
._1f{width:72.876491pt;}
._9{width:73.933431pt;}
._29{width:76.178836pt;}
._17{width:77.899357pt;}
._11{width:80.115619pt;}
._15{width:83.819103pt;}
._a{width:94.161609pt;}
._14{width:99.546706pt;}
._22{width:105.864997pt;}
._20{width:112.698409pt;}
._b{width:120.795508pt;}
._23{width:125.655721pt;}
._2a{width:128.795413pt;}
._10{width:136.493967pt;}
._2c{width:137.500980pt;}
.fs7{font-size:53.133867pt;}
.fs6{font-size:115.672533pt;}
.fs8{font-size:137.776533pt;}
.fs3{font-size:138.843733pt;}
.fs5{font-size:165.246933pt;}
.fs2{font-size:166.590400pt;}
.fs4{font-size:198.349333pt;}
.fs1{font-size:237.987733pt;}
.fs0{font-size:342.714667pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:93.382667pt;}
.y71{bottom:199.173333pt;}
.y9a{bottom:205.144000pt;}
.y4d{bottom:240.308000pt;}
.y99{bottom:252.881333pt;}
.y70{bottom:256.458667pt;}
.y4c{bottom:287.932000pt;}
.y98{bottom:300.618667pt;}
.y4b{bottom:306.141333pt;}
.y6f{bottom:313.744000pt;}
.y4a{bottom:314.642667pt;}
.y44{bottom:316.270667pt;}
.y49{bottom:322.613333pt;}
.y48{bottom:330.584000pt;}
.y47{bottom:338.553333pt;}
.y46{bottom:346.524000pt;}
.y97{bottom:348.356000pt;}
.y45{bottom:369.902667pt;}
.y6e{bottom:371.028000pt;}
.y42{bottom:381.944000pt;}
.y96{bottom:405.925333pt;}
.y43{bottom:410.282667pt;}
.y41{bottom:438.230667pt;}
.y6d{bottom:447.210667pt;}
.y95{bottom:453.662667pt;}
.y94{bottom:501.400000pt;}
.y6c{bottom:504.496000pt;}
.y93{bottom:549.137333pt;}
.y6b{bottom:561.780000pt;}
.y40{bottom:566.693333pt;}
.y3f{bottom:584.902667pt;}
.y3e{bottom:593.404000pt;}
.y38{bottom:595.032000pt;}
.y92{bottom:599.052000pt;}
.y3d{bottom:601.374667pt;}
.y3c{bottom:609.344000pt;}
.y3b{bottom:617.314667pt;}
.y6a{bottom:619.065333pt;}
.y3a{bottom:625.285333pt;}
.y91{bottom:646.789333pt;}
.y39{bottom:648.664000pt;}
.y37{bottom:671.694667pt;}
.y69{bottom:676.350667pt;}
.y90{bottom:696.704000pt;}
.y68{bottom:733.634667pt;}
.y8f{bottom:772.885333pt;}
.y67{bottom:790.920000pt;}
.y36{bottom:804.449333pt;}
.y8e{bottom:830.170667pt;}
.y35{bottom:861.733333pt;}
.y66{bottom:867.102667pt;}
.y8d{bottom:887.456000pt;}
.y34{bottom:919.018667pt;}
.y65{bottom:924.388000pt;}
.y8c{bottom:944.740000pt;}
.y33{bottom:977.964000pt;}
.y64{bottom:981.672000pt;}
.y8b{bottom:1002.025333pt;}
.y63{bottom:1038.957333pt;}
.y30{bottom:1066.549333pt;}
.y31{bottom:1094.888000pt;}
.y32{bottom:1096.037333pt;}
.y62{bottom:1096.242667pt;}
.y8a{bottom:1100.100000pt;}
.y2f{bottom:1122.836000pt;}
.y61{bottom:1153.526667pt;}
.y2e{bottom:1184.156000pt;}
.y60{bottom:1210.812000pt;}
.y2d{bottom:1243.101333pt;}
.y5f{bottom:1289.097333pt;}
.y2c{bottom:1312.925333pt;}
.y5e{bottom:1346.382667pt;}
.y2b{bottom:1386.070667pt;}
.y89{bottom:1440.949333pt;}
.y2a{bottom:1468.458667pt;}
.y29{bottom:1567.590667pt;}
.y28{bottom:1624.876000pt;}
.y27{bottom:1682.161333pt;}
.y26{bottom:1739.445333pt;}
.y25{bottom:1796.730667pt;}
.y88{bottom:1813.053333pt;}
.y24{bottom:1854.016000pt;}
.y87{bottom:1870.338667pt;}
.y23{bottom:1911.300000pt;}
.y86{bottom:1927.622667pt;}
.y5d{bottom:1950.802667pt;}
.y22{bottom:1968.585333pt;}
.y85{bottom:1984.908000pt;}
.y5c{bottom:2008.088000pt;}
.y84{bottom:2042.193333pt;}
.y5b{bottom:2065.373333pt;}
.y21{bottom:2068.582667pt;}
.y83{bottom:2099.477333pt;}
.y5a{bottom:2122.657333pt;}
.y20{bottom:2125.868000pt;}
.y82{bottom:2156.762667pt;}
.y59{bottom:2179.942667pt;}
.y81{bottom:2214.048000pt;}
.y58{bottom:2237.228000pt;}
.y1f{bottom:2263.660000pt;}
.y80{bottom:2271.332000pt;}
.y57{bottom:2313.409333pt;}
.y1e{bottom:2320.945333pt;}
.y7f{bottom:2350.509333pt;}
.y56{bottom:2370.694667pt;}
.y1d{bottom:2378.230667pt;}
.y7e{bottom:2407.794667pt;}
.y55{bottom:2427.980000pt;}
.y1c{bottom:2435.514667pt;}
.y54{bottom:2485.264000pt;}
.y1b{bottom:2492.800000pt;}
.y53{bottom:2542.549333pt;}
.y1a{bottom:2550.085333pt;}
.y52{bottom:2599.834667pt;}
.y19{bottom:2607.369333pt;}
.y51{bottom:2657.118667pt;}
.y18{bottom:2664.654667pt;}
.y17{bottom:2721.940000pt;}
.y50{bottom:2757.298667pt;}
.y16{bottom:2779.224000pt;}
.y15{bottom:2836.509333pt;}
.y14{bottom:2893.794667pt;}
.y4f{bottom:2916.274667pt;}
.y7d{bottom:2921.037333pt;}
.y13{bottom:2951.078667pt;}
.y7c{bottom:2978.322667pt;}
.y12{bottom:3008.364000pt;}
.y7b{bottom:3035.608000pt;}
.y11{bottom:3065.649333pt;}
.y7a{bottom:3092.892000pt;}
.y10{bottom:3122.933333pt;}
.y79{bottom:3150.177333pt;}
.yf{bottom:3180.218667pt;}
.y78{bottom:3207.462667pt;}
.ye{bottom:3237.504000pt;}
.y77{bottom:3264.746667pt;}
.yd{bottom:3294.788000pt;}
.y76{bottom:3322.032000pt;}
.yc{bottom:3352.073333pt;}
.y75{bottom:3379.317333pt;}
.yb{bottom:3409.358667pt;}
.ya{bottom:3466.642667pt;}
.y74{bottom:3481.278667pt;}
.y9{bottom:3523.928000pt;}
.y73{bottom:3621.036000pt;}
.y8{bottom:3623.925333pt;}
.y72{bottom:3678.321333pt;}
.y4e{bottom:3678.745333pt;}
.y7{bottom:3818.608000pt;}
.y6{bottom:3895.664000pt;}
.y5{bottom:3972.718667pt;}
.y4{bottom:4050.988000pt;}
.y3{bottom:4202.464000pt;}
.y2{bottom:4279.952000pt;}
.y1{bottom:4357.440000pt;}
.h12{height:2.656693pt;}
.hb{height:74.361120pt;}
.h1a{height:95.616914pt;}
.h1b{height:97.821339pt;}
.hd{height:101.792111pt;}
.h18{height:103.332400pt;}
.ha{height:117.655817pt;}
.h7{height:118.316804pt;}
.h19{height:118.763372pt;}
.h4{height:119.683298pt;}
.h9{height:121.952237pt;}
.h8{height:135.802857pt;}
.h1c{height:142.018123pt;}
.h6{height:142.442857pt;}
.h11{height:147.233674pt;}
.h10{height:150.588177pt;}
.h5{height:170.399217pt;}
.h14{height:182.960190pt;}
.he{height:229.447817pt;}
.h3{height:229.968925pt;}
.h17{height:231.010483pt;}
.hc{height:235.306903pt;}
.h2{height:245.383701pt;}
.hf{height:263.942844pt;}
.h13{height:269.959817pt;}
.h16{height:269.965150pt;}
.h15{height:342.802483pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x9{left:94.488000pt;}
.xc{left:128.377333pt;}
.xf{left:167.216000pt;}
.x19{left:180.498667pt;}
.x23{left:182.093333pt;}
.x10{left:189.465333pt;}
.x24{left:191.064000pt;}
.x12{left:192.853333pt;}
.x28{left:210.122667pt;}
.x11{left:212.617333pt;}
.xa{left:240.818667pt;}
.xb{left:270.080000pt;}
.x29{left:314.806667pt;}
.x2a{left:323.662667pt;}
.x13{left:359.653333pt;}
.x1a{left:380.524000pt;}
.x15{left:383.645333pt;}
.x14{left:386.169333pt;}
.x8{left:389.834667pt;}
.x2b{left:411.240000pt;}
.x2c{left:463.112000pt;}
.x1c{left:477.834667pt;}
.x2d{left:481.620000pt;}
.xd{left:496.097333pt;}
.x25{left:502.908000pt;}
.x16{left:510.721333pt;}
.x26{left:541.976000pt;}
.x2{left:546.638667pt;}
.x2e{left:551.204000pt;}
.x2f{left:569.240000pt;}
.xe{left:576.416000pt;}
.x5{left:597.149333pt;}
.x1b{left:603.538667pt;}
.x27{left:647.788000pt;}
.x1{left:674.149333pt;}
.x7{left:707.881333pt;}
.x6{left:720.216000pt;}
.x1d{left:732.732000pt;}
.x1e{left:741.588000pt;}
.x4{left:749.052000pt;}
.x17{left:752.398667pt;}
.x30{left:798.549333pt;}
.x18{left:823.350667pt;}
.x1f{left:829.165333pt;}
.x20{left:872.501333pt;}
.x21{left:891.009333pt;}
.x22{left:948.397333pt;}
.x31{left:970.537333pt;}
.x3a{left:1002.109333pt;}
.x3{left:1108.737333pt;}
.x32{left:1126.446667pt;}
.x33{left:1227.357333pt;}
.x34{left:1410.737333pt;}
.x35{left:2158.404000pt;}
.x39{left:2227.776000pt;}
.x38{left:2355.226667pt;}
.x36{left:2359.640000pt;}
.x37{left:2420.290667pt;}
}




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