
    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_2fcd4b8f8a0cdec17efc8cb4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.985000;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_5317980316a40cc13f47050a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.810000;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_9faa5b0a982aef41263e407d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_7de9a177385f278bef8a92e0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.031000;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_15e22b1037220c55ede1eed6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_d3a3d506f52e1927d6528d6c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_ac1bf05d71a512e0cfafefc2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976046;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_7644850f8c2b209f929d04ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.913000;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;}
.m7{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);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,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);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-115.578000px;}
.vb{vertical-align:-82.398000px;}
.v2{vertical-align:-61.878000px;}
.v7{vertical-align:-55.884000px;}
.v6{vertical-align:-50.034000px;}
.vc{vertical-align:-45.768000px;}
.vd{vertical-align:-36.738000px;}
.vf{vertical-align:-27.132000px;}
.va{vertical-align:-4.878000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:4.878000px;}
.ve{vertical-align:9.132000px;}
.v5{vertical-align:50.034000px;}
.v3{vertical-align:61.878000px;}
.v1{vertical-align:74.268000px;}
.v4{vertical-align:93.810000px;}
.ls1b{letter-spacing:0.000000px;}
.ls19{letter-spacing:1.222616px;}
.ls18{letter-spacing:1.225753px;}
.ls17{letter-spacing:1.228616px;}
.lsb{letter-spacing:1.238034px;}
.lsa{letter-spacing:1.466587px;}
.ls9{letter-spacing:1.467538px;}
.lse{letter-spacing:1.470370px;}
.ls8{letter-spacing:1.472587px;}
.ls7{letter-spacing:1.473538px;}
.lsf{letter-spacing:1.476370px;}
.ls10{letter-spacing:2.098804px;}
.ls11{letter-spacing:2.104804px;}
.lsc{letter-spacing:2.114556px;}
.ls5{letter-spacing:2.115036px;}
.ls4{letter-spacing:2.117784px;}
.lsd{letter-spacing:2.120556px;}
.ls6{letter-spacing:2.120892px;}
.ls12{letter-spacing:2.135564px;}
.ls2{letter-spacing:2.989463px;}
.ls1{letter-spacing:2.991702px;}
.ls3{letter-spacing:2.992219px;}
.ls13{letter-spacing:41.872056px;}
.ls15{letter-spacing:43.370412px;}
.ls16{letter-spacing:44.009564px;}
.ls1a{letter-spacing:44.025617px;}
.ls14{letter-spacing:68.135564px;}
.ls0{letter-spacing:256.929702px;}
.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;}
}
.ws5{word-spacing:-0.244184px;}
.ws7{word-spacing:-0.169524px;}
.ws32{word-spacing:-0.155442px;}
.ws31{word-spacing:-0.141310px;}
.ws33{word-spacing:-0.117758px;}
.ws3e{word-spacing:-0.098152px;}
.ws5f{word-spacing:0.000000px;}
.ws56{word-spacing:24.141095px;}
.ws3d{word-spacing:24.142548px;}
.ws54{word-spacing:24.143388px;}
.ws38{word-spacing:24.145441px;}
.ws55{word-spacing:24.147048px;}
.ws1b{word-spacing:28.649556px;}
.ws1c{word-spacing:31.700988px;}
.ws1e{word-spacing:31.754597px;}
.ws1f{word-spacing:31.757942px;}
.ws1d{word-spacing:32.040036px;}
.ws30{word-spacing:34.762309px;}
.ws34{word-spacing:35.044930px;}
.ws5b{word-spacing:35.769564px;}
.ws5a{word-spacing:35.939088px;}
.ws2c{word-spacing:40.007664px;}
.ws2d{word-spacing:40.036550px;}
.ws2e{word-spacing:40.346712px;}
.ws29{word-spacing:40.675889px;}
.ws28{word-spacing:40.685760px;}
.ws42{word-spacing:40.927911px;}
.ws27{word-spacing:41.024808px;}
.ws41{word-spacing:41.034472px;}
.ws2b{word-spacing:41.112772px;}
.ws2a{word-spacing:41.194332px;}
.ws2f{word-spacing:41.363856px;}
.ws19{word-spacing:41.533380px;}
.ws16{word-spacing:41.567021px;}
.ws17{word-spacing:41.649304px;}
.ws1a{word-spacing:41.675405px;}
.ws36{word-spacing:41.697852px;}
.ws26{word-spacing:41.698116px;}
.ws25{word-spacing:41.698584px;}
.ws44{word-spacing:41.699208px;}
.ws24{word-spacing:41.699364px;}
.ws4c{word-spacing:41.700156px;}
.ws45{word-spacing:41.700720px;}
.ws35{word-spacing:41.701944px;}
.wse{word-spacing:41.702904px;}
.ws4b{word-spacing:41.703192px;}
.ws46{word-spacing:41.704056px;}
.ws47{word-spacing:41.704104px;}
.ws43{word-spacing:41.704932px;}
.ws49{word-spacing:41.707212px;}
.ws57{word-spacing:41.707884px;}
.ws59{word-spacing:41.708220px;}
.ws18{word-spacing:41.732181px;}
.ws58{word-spacing:41.867424px;}
.ws2{word-spacing:41.872428px;}
.wsd{word-spacing:42.041952px;}
.wsf{word-spacing:42.047756px;}
.wsc{word-spacing:42.069412px;}
.ws10{word-spacing:42.079264px;}
.ws11{word-spacing:42.381000px;}
.wsa{word-spacing:42.550524px;}
.wsb{word-spacing:42.889572px;}
.ws6{word-spacing:43.059096px;}
.ws9{word-spacing:43.398144px;}
.ws8{word-spacing:43.623877px;}
.ws48{word-spacing:43.826724px;}
.ws22{word-spacing:46.390972px;}
.ws21{word-spacing:46.394319px;}
.ws20{word-spacing:46.449576px;}
.ws4a{word-spacing:48.686736px;}
.ws14{word-spacing:48.765350px;}
.ws15{word-spacing:48.798127px;}
.ws13{word-spacing:48.822912px;}
.ws12{word-spacing:48.869132px;}
.ws4{word-spacing:49.648339px;}
.ws1{word-spacing:50.258770px;}
.ws5c{word-spacing:52.213392px;}
.ws3f{word-spacing:53.061012px;}
.ws5e{word-spacing:56.451492px;}
.ws23{word-spacing:59.580994px;}
.ws5d{word-spacing:59.672448px;}
.ws40{word-spacing:72.556272px;}
.ws0{word-spacing:104.223577px;}
.ws3{word-spacing:211.279121px;}
.ws4f{word-spacing:434.688937px;}
.ws3b{word-spacing:521.476068px;}
.ws4e{word-spacing:568.315009px;}
.ws4d{word-spacing:686.873681px;}
.ws3c{word-spacing:951.487733px;}
.ws3a{word-spacing:976.455317px;}
.ws37{word-spacing:1001.247950px;}
.ws39{word-spacing:1008.895733px;}
.ws53{word-spacing:1080.436081px;}
.ws52{word-spacing:1086.126035px;}
.ws50{word-spacing:1126.470035px;}
.ws51{word-spacing:1127.449079px;}
._6{margin-left:-12.615562px;}
._16{margin-left:-10.790491px;}
._c{margin-left:-9.599301px;}
._2{margin-left:-7.722603px;}
._7{margin-left:-5.750785px;}
._1{margin-left:-4.219578px;}
._18{margin-left:-3.174397px;}
._0{margin-left:-2.109789px;}
._3{margin-left:-1.017144px;}
._12{width:1.059826px;}
._4{width:2.712384px;}
._9{width:4.973175px;}
._19{width:25.199486px;}
._15{width:26.427753px;}
._1a{width:28.287303px;}
._e{width:33.923322px;}
._b{width:41.196390px;}
._11{width:42.338564px;}
._8{width:44.436536px;}
._f{width:46.623121px;}
._10{width:48.808791px;}
._a{width:49.840056px;}
._d{width:53.514398px;}
._1c{width:58.146732px;}
._1d{width:68.996268px;}
._1f{width:79.167708px;}
._1b{width:83.975116px;}
._1e{width:95.131906px;}
._17{width:143.417304px;}
._5{width:381.096504px;}
._14{width:701.187420px;}
._13{width:711.958968px;}
.fc2{color:rgb(0,121,219);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:98.152200px;}
.fs9{font-size:117.758400px;}
.fs3{font-size:128.837400px;}
.fs7{font-size:141.310200px;}
.fs2{font-size:154.641000px;}
.fs8{font-size:155.442000px;}
.fs4{font-size:169.524000px;}
.fs5{font-size:186.477600px;}
.fs1{font-size:203.476800px;}
.fs6{font-size:244.184400px;}
.fs0{font-size:421.957800px;}
.y0{bottom:0.000000px;}
.y63{bottom:80.593500px;}
.yae{bottom:81.886500px;}
.yad{bottom:132.994500px;}
.y61{bottom:146.145000px;}
.yac{bottom:184.104000px;}
.y51{bottom:205.294500px;}
.y52{bottom:235.018500px;}
.yab{bottom:235.212000px;}
.yaa{bottom:282.447000px;}
.y53{bottom:297.559500px;}
.y5f{bottom:330.399000px;}
.y54{bottom:360.102000px;}
.ya9{bottom:375.508500px;}
.y62{bottom:377.505000px;}
.y5e{bottom:405.546000px;}
.y55{bottom:422.644500px;}
.ya8{bottom:426.616500px;}
.y5d{bottom:467.962500px;}
.ya7{bottom:477.724500px;}
.y56{bottom:485.185500px;}
.ya6{bottom:528.834000px;}
.y57{bottom:547.728000px;}
.y60{bottom:556.176000px;}
.ya5{bottom:579.942000px;}
.y58{bottom:610.270500px;}
.ya4{bottom:628.767000px;}
.y59{bottom:672.811500px;}
.ya3{bottom:721.827000px;}
.y5a{bottom:735.354000px;}
.ya2{bottom:772.935000px;}
.y5b{bottom:797.896500px;}
.ya1{bottom:824.044500px;}
.y5c{bottom:860.437500px;}
.ya0{bottom:875.152500px;}
.y50{bottom:920.337000px;}
.y9f{bottom:923.977500px;}
.y9e{bottom:1007.820000px;}
.y4f{bottom:1009.383000px;}
.y9d{bottom:1058.929500px;}
.y43{bottom:1074.934500px;}
.y44{bottom:1111.036500px;}
.y9c{bottom:1114.521000px;}
.y9b{bottom:1165.629000px;}
.y9a{bottom:1221.220500px;}
.y45{bottom:1236.121500px;}
.y4e{bottom:1263.123000px;}
.y99{bottom:1272.328500px;}
.y98{bottom:1327.920000px;}
.y46{bottom:1361.205000px;}
.y97{bottom:1379.028000px;}
.y96{bottom:1438.870500px;}
.y4c{bottom:1444.675500px;}
.y47{bottom:1486.288500px;}
.y4d{bottom:1494.709500px;}
.y4a{bottom:1507.218000px;}
.y95{bottom:1531.380000px;}
.y94{bottom:1582.488000px;}
.y4b{bottom:1594.777500px;}
.y48{bottom:1611.373500px;}
.y93{bottom:1638.079500px;}
.y92{bottom:1689.189000px;}
.y49{bottom:1736.457000px;}
.y91{bottom:1744.780500px;}
.y90{bottom:1795.888500px;}
.y42{bottom:1808.962500px;}
.y8f{bottom:1851.480000px;}
.y41{bottom:1898.008500px;}
.y8e{bottom:1902.588000px;}
.y8d{bottom:1953.696000px;}
.y2d{bottom:1963.560000px;}
.y2e{bottom:1993.284000px;}
.y8c{bottom:2000.932500px;}
.y38{bottom:2085.888000px;}
.y8b{bottom:2089.659000px;}
.y3e{bottom:2128.563000px;}
.y3c{bottom:2140.611000px;}
.y8a{bottom:2140.768500px;}
.y2f{bottom:2149.479000px;}
.y3d{bottom:2179.699500px;}
.y89{bottom:2191.876500px;}
.y3b{bottom:2203.152000px;}
.y33{bottom:2214.718500px;}
.y39{bottom:2234.422500px;}
.y7c{bottom:2263.380000px;}
.y37{bottom:2269.222500px;}
.y3a{bottom:2289.147000px;}
.y7d{bottom:2295.591000px;}
.y30{bottom:2305.831500px;}
.y7e{bottom:2398.210500px;}
.y34{bottom:2425.795500px;}
.y36{bottom:2433.613500px;}
.y31{bottom:2462.185500px;}
.y84{bottom:2499.378000px;}
.y7f{bottom:2500.830000px;}
.y85{bottom:2542.954500px;}
.y40{bottom:2551.279500px;}
.y35{bottom:2566.293000px;}
.y3f{bottom:2588.572500px;}
.y80{bottom:2603.449500px;}
.y32{bottom:2618.697000px;}
.y2c{bottom:2691.202500px;}
.y81{bottom:2706.069000px;}
.y83{bottom:2735.418000px;}
.y2b{bottom:2784.264000px;}
.y82{bottom:2808.687000px;}
.y2a{bottom:2835.372000px;}
.y88{bottom:2840.259000px;}
.y87{bottom:2881.294500px;}
.y29{bottom:2890.963500px;}
.y86{bottom:2922.330000px;}
.y28{bottom:2946.555000px;}
.y7b{bottom:2985.106500px;}
.y27{bottom:2995.380000px;}
.y7a{bottom:3078.168000px;}
.y1f{bottom:3116.569500px;}
.y1b{bottom:3117.178500px;}
.y21{bottom:3119.988000px;}
.y23{bottom:3120.358500px;}
.y1d{bottom:3120.411000px;}
.y25{bottom:3120.790500px;}
.y79{bottom:3129.276000px;}
.y1e{bottom:3159.160500px;}
.y1a{bottom:3159.769500px;}
.y20{bottom:3162.577500px;}
.y22{bottom:3162.948000px;}
.y1c{bottom:3163.002000px;}
.y24{bottom:3163.381500px;}
.y78{bottom:3180.384000px;}
.y77{bottom:3235.975500px;}
.y26{bottom:3244.969500px;}
.y76{bottom:3291.567000px;}
.y19{bottom:3313.512000px;}
.y75{bottom:3347.158500px;}
.y74{bottom:3402.750000px;}
.y18{bottom:3406.572000px;}
.y17{bottom:3457.681500px;}
.y73{bottom:3464.181000px;}
.y16{bottom:3508.789500px;}
.y72{bottom:3548.025000px;}
.y15{bottom:3559.897500px;}
.y71{bottom:3599.133000px;}
.y14{bottom:3615.489000px;}
.y70{bottom:3650.241000px;}
.y13{bottom:3671.080500px;}
.y6f{bottom:3705.832500px;}
.y12{bottom:3726.672000px;}
.y6e{bottom:3756.940500px;}
.y11{bottom:3786.514500px;}
.y6d{bottom:3812.532000px;}
.y6c{bottom:3863.641500px;}
.y10{bottom:3879.024000px;}
.y6b{bottom:3919.233000px;}
.yf{bottom:3930.132000px;}
.y6a{bottom:3970.341000px;}
.ye{bottom:3981.240000px;}
.y69{bottom:4031.038500px;}
.yd{bottom:4032.349500px;}
.yc{bottom:4083.457500px;}
.y68{bottom:4123.273500px;}
.yb{bottom:4134.565500px;}
.y67{bottom:4174.381500px;}
.ya{bottom:4185.673500px;}
.y66{bottom:4225.489500px;}
.y9{bottom:4236.783000px;}
.y65{bottom:4276.599000px;}
.y8{bottom:4287.891000px;}
.y64{bottom:4327.707000px;}
.y7{bottom:4338.999000px;}
.y6{bottom:4387.548000px;}
.y5{bottom:4563.882000px;}
.y4{bottom:4647.127500px;}
.y3{bottom:4713.705000px;}
.y2{bottom:4784.752500px;}
.y1{bottom:4915.456500px;}
.h12{height:77.442086px;}
.he{height:78.718064px;}
.h11{height:87.850064px;}
.hb{height:94.442237px;}
.h4{height:99.462473px;}
.hc{height:111.493748px;}
.ha{height:113.330780px;}
.h5{height:116.362022px;}
.h10{height:118.208780px;}
.h9{height:129.516336px;}
.h8{height:135.958248px;}
.hf{height:144.476237px;}
.h6{height:160.136242px;}
.hd{height:188.252237px;}
.h7{height:192.173123px;}
.h3{height:193.650852px;}
.h2{height:325.751422px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:40.321500px;}
.x7{left:42.519000px;}
.xc{left:63.780000px;}
.x1{left:138.520500px;}
.x38{left:187.267500px;}
.x2a{left:249.909000px;}
.x37{left:256.732500px;}
.x1f{left:287.995500px;}
.x2d{left:292.954500px;}
.x31{left:294.819000px;}
.x30{left:300.201000px;}
.x5{left:318.544500px;}
.x20{left:326.265000px;}
.xd{left:365.596500px;}
.xe{left:385.132500px;}
.x2b{left:443.244000px;}
.x2f{left:447.991500px;}
.x1e{left:454.813500px;}
.x21{left:486.546000px;}
.xf{left:550.587000px;}
.x10{left:584.076000px;}
.x2{left:586.398000px;}
.x2c{left:597.973500px;}
.x3{left:661.075500px;}
.x2e{left:725.557500px;}
.x4{left:728.082000px;}
.x1d{left:743.289000px;}
.x32{left:777.829500px;}
.x22{left:793.057500px;}
.x11{left:838.839000px;}
.x12{left:841.293000px;}
.x33{left:1081.882500px;}
.x13{left:1083.249000px;}
.x23{left:1095.388500px;}
.x26{left:1097.404500px;}
.x14{left:1104.198000px;}
.xa{left:1206.442500px;}
.x36{left:1223.290500px;}
.xb{left:1248.153000px;}
.x15{left:1282.122000px;}
.x16{left:1286.265000px;}
.x24{left:1399.882500px;}
.x27{left:1410.010500px;}
.x18{left:1477.746000px;}
.x17{left:1485.022500px;}
.x19{left:1679.692500px;}
.x1a{left:1691.562000px;}
.x34{left:1697.259000px;}
.x28{left:1703.935500px;}
.x25{left:1707.969000px;}
.x1c{left:1888.632000px;}
.x1b{left:1914.828000px;}
.x35{left:1993.201500px;}
.x29{left:2008.960500px;}
.x8{left:2077.458000px;}
.x9{left:2111.341500px;}
.x4a{left:2404.423500px;}
.x39{left:2406.499500px;}
.x46{left:2419.222500px;}
.x3b{left:2426.149500px;}
.x3a{left:2427.759000px;}
.x45{left:2439.613500px;}
.x3f{left:2493.424500px;}
.x3e{left:2504.565000px;}
.x3d{left:2518.330500px;}
.x3c{left:2579.080500px;}
.x40{left:2635.959000px;}
.x48{left:2763.471000px;}
.x49{left:2797.354500px;}
.x47{left:2845.116000px;}
.x4b{left:2869.660500px;}
.x4d{left:2888.701500px;}
.x4c{left:2923.530000px;}
.x44{left:2953.743000px;}
.x42{left:2958.270000px;}
.x43{left:2962.342500px;}
.x4e{left:3056.532000px;}
.x41{left:3297.676500px;}
@media print{
.v8{vertical-align:-102.736000pt;}
.vb{vertical-align:-73.242667pt;}
.v2{vertical-align:-55.002667pt;}
.v7{vertical-align:-49.674667pt;}
.v6{vertical-align:-44.474667pt;}
.vc{vertical-align:-40.682667pt;}
.vd{vertical-align:-32.656000pt;}
.vf{vertical-align:-24.117333pt;}
.va{vertical-align:-4.336000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:4.336000pt;}
.ve{vertical-align:8.117333pt;}
.v5{vertical-align:44.474667pt;}
.v3{vertical-align:55.002667pt;}
.v1{vertical-align:66.016000pt;}
.v4{vertical-align:83.386667pt;}
.ls1b{letter-spacing:0.000000pt;}
.ls19{letter-spacing:1.086770pt;}
.ls18{letter-spacing:1.089558pt;}
.ls17{letter-spacing:1.092103pt;}
.lsb{letter-spacing:1.100475pt;}
.lsa{letter-spacing:1.303633pt;}
.ls9{letter-spacing:1.304478pt;}
.lse{letter-spacing:1.306995pt;}
.ls8{letter-spacing:1.308966pt;}
.ls7{letter-spacing:1.309811pt;}
.lsf{letter-spacing:1.312329pt;}
.ls10{letter-spacing:1.865603pt;}
.ls11{letter-spacing:1.870937pt;}
.lsc{letter-spacing:1.879605pt;}
.ls5{letter-spacing:1.880032pt;}
.ls4{letter-spacing:1.882475pt;}
.lsd{letter-spacing:1.884939pt;}
.ls6{letter-spacing:1.885237pt;}
.ls12{letter-spacing:1.898279pt;}
.ls2{letter-spacing:2.657300pt;}
.ls1{letter-spacing:2.659291pt;}
.ls3{letter-spacing:2.659750pt;}
.ls13{letter-spacing:37.219605pt;}
.ls15{letter-spacing:38.551477pt;}
.ls16{letter-spacing:39.119613pt;}
.ls1a{letter-spacing:39.133882pt;}
.ls14{letter-spacing:60.564946pt;}
.ls0{letter-spacing:228.381957pt;}
.ws5{word-spacing:-0.217053pt;}
.ws7{word-spacing:-0.150688pt;}
.ws32{word-spacing:-0.138171pt;}
.ws31{word-spacing:-0.125609pt;}
.ws33{word-spacing:-0.104674pt;}
.ws3e{word-spacing:-0.087246pt;}
.ws5f{word-spacing:0.000000pt;}
.ws56{word-spacing:21.458751pt;}
.ws3d{word-spacing:21.460043pt;}
.ws54{word-spacing:21.460789pt;}
.ws38{word-spacing:21.462614pt;}
.ws55{word-spacing:21.464043pt;}
.ws1b{word-spacing:25.466272pt;}
.ws1c{word-spacing:28.178656pt;}
.ws1e{word-spacing:28.226309pt;}
.ws1f{word-spacing:28.229282pt;}
.ws1d{word-spacing:28.480032pt;}
.ws30{word-spacing:30.899830pt;}
.ws34{word-spacing:31.151049pt;}
.ws5b{word-spacing:31.795168pt;}
.ws5a{word-spacing:31.945856pt;}
.ws2c{word-spacing:35.562368pt;}
.ws2d{word-spacing:35.588045pt;}
.ws2e{word-spacing:35.863744pt;}
.ws29{word-spacing:36.156346pt;}
.ws28{word-spacing:36.165120pt;}
.ws42{word-spacing:36.380365pt;}
.ws27{word-spacing:36.466496pt;}
.ws41{word-spacing:36.475086pt;}
.ws2b{word-spacing:36.544686pt;}
.ws2a{word-spacing:36.617184pt;}
.ws2f{word-spacing:36.767872pt;}
.ws19{word-spacing:36.918560pt;}
.ws16{word-spacing:36.948463pt;}
.ws17{word-spacing:37.021603pt;}
.ws1a{word-spacing:37.044805pt;}
.ws36{word-spacing:37.064757pt;}
.ws26{word-spacing:37.064992pt;}
.ws25{word-spacing:37.065408pt;}
.ws44{word-spacing:37.065963pt;}
.ws24{word-spacing:37.066101pt;}
.ws4c{word-spacing:37.066805pt;}
.ws45{word-spacing:37.067307pt;}
.ws35{word-spacing:37.068395pt;}
.wse{word-spacing:37.069248pt;}
.ws4b{word-spacing:37.069504pt;}
.ws46{word-spacing:37.070272pt;}
.ws47{word-spacing:37.070315pt;}
.ws43{word-spacing:37.071051pt;}
.ws49{word-spacing:37.073077pt;}
.ws57{word-spacing:37.073675pt;}
.ws59{word-spacing:37.073973pt;}
.ws18{word-spacing:37.095272pt;}
.ws58{word-spacing:37.215488pt;}
.ws2{word-spacing:37.219936pt;}
.wsd{word-spacing:37.370624pt;}
.wsf{word-spacing:37.375783pt;}
.wsc{word-spacing:37.395033pt;}
.ws10{word-spacing:37.403790pt;}
.ws11{word-spacing:37.672000pt;}
.wsa{word-spacing:37.822688pt;}
.wsb{word-spacing:38.124064pt;}
.ws6{word-spacing:38.274752pt;}
.ws9{word-spacing:38.576128pt;}
.ws8{word-spacing:38.776780pt;}
.ws48{word-spacing:38.957088pt;}
.ws22{word-spacing:41.236419pt;}
.ws21{word-spacing:41.239395pt;}
.ws20{word-spacing:41.288512pt;}
.ws4a{word-spacing:43.277099pt;}
.ws14{word-spacing:43.346978pt;}
.ws15{word-spacing:43.376113pt;}
.ws13{word-spacing:43.398144pt;}
.ws12{word-spacing:43.439228pt;}
.ws4{word-spacing:44.131857pt;}
.ws1{word-spacing:44.674462pt;}
.ws5c{word-spacing:46.411904pt;}
.ws3f{word-spacing:47.165344pt;}
.ws5e{word-spacing:50.179104pt;}
.ws23{word-spacing:52.960883pt;}
.ws5d{word-spacing:53.042176pt;}
.ws40{word-spacing:64.494464pt;}
.ws0{word-spacing:92.643179pt;}
.ws3{word-spacing:187.803663pt;}
.ws4f{word-spacing:386.390166pt;}
.ws3b{word-spacing:463.534283pt;}
.ws4e{word-spacing:505.168897pt;}
.ws4d{word-spacing:610.554383pt;}
.ws3c{word-spacing:845.766874pt;}
.ws3a{word-spacing:867.960282pt;}
.ws37{word-spacing:889.998178pt;}
.ws39{word-spacing:896.796207pt;}
.ws53{word-spacing:960.387627pt;}
.ws52{word-spacing:965.445365pt;}
.ws50{word-spacing:1001.306698pt;}
.ws51{word-spacing:1002.176959pt;}
._6{margin-left:-11.213833pt;}
._16{margin-left:-9.591547pt;}
._c{margin-left:-8.532712pt;}
._2{margin-left:-6.864536pt;}
._7{margin-left:-5.111809pt;}
._1{margin-left:-3.750736pt;}
._18{margin-left:-2.821686pt;}
._0{margin-left:-1.875368pt;}
._3{margin-left:-0.904128pt;}
._12{width:0.942067pt;}
._4{width:2.411008pt;}
._9{width:4.420600pt;}
._19{width:22.399543pt;}
._15{width:23.491336pt;}
._1a{width:25.144269pt;}
._e{width:30.154064pt;}
._b{width:36.619014pt;}
._11{width:37.634279pt;}
._8{width:39.499143pt;}
._f{width:41.442774pt;}
._10{width:43.385592pt;}
._a{width:44.302272pt;}
._d{width:47.568354pt;}
._1c{width:51.685984pt;}
._1d{width:61.330016pt;}
._1f{width:70.371296pt;}
._1b{width:74.644548pt;}
._1e{width:84.561694pt;}
._17{width:127.482048pt;}
._5{width:338.752448pt;}
._14{width:623.277707pt;}
._13{width:632.852416pt;}
.fsa{font-size:87.246400pt;}
.fs9{font-size:104.674133pt;}
.fs3{font-size:114.522133pt;}
.fs7{font-size:125.609067pt;}
.fs2{font-size:137.458667pt;}
.fs8{font-size:138.170667pt;}
.fs4{font-size:150.688000pt;}
.fs5{font-size:165.757867pt;}
.fs1{font-size:180.868267pt;}
.fs6{font-size:217.052800pt;}
.fs0{font-size:375.073600pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:71.638667pt;}
.yae{bottom:72.788000pt;}
.yad{bottom:118.217333pt;}
.y61{bottom:129.906667pt;}
.yac{bottom:163.648000pt;}
.y51{bottom:182.484000pt;}
.y52{bottom:208.905333pt;}
.yab{bottom:209.077333pt;}
.yaa{bottom:251.064000pt;}
.y53{bottom:264.497333pt;}
.y5f{bottom:293.688000pt;}
.y54{bottom:320.090667pt;}
.ya9{bottom:333.785333pt;}
.y62{bottom:335.560000pt;}
.y5e{bottom:360.485333pt;}
.y55{bottom:375.684000pt;}
.ya8{bottom:379.214667pt;}
.y5d{bottom:415.966667pt;}
.ya7{bottom:424.644000pt;}
.y56{bottom:431.276000pt;}
.ya6{bottom:470.074667pt;}
.y57{bottom:486.869333pt;}
.y60{bottom:494.378667pt;}
.ya5{bottom:515.504000pt;}
.y58{bottom:542.462667pt;}
.ya4{bottom:558.904000pt;}
.y59{bottom:598.054667pt;}
.ya3{bottom:641.624000pt;}
.y5a{bottom:653.648000pt;}
.ya2{bottom:687.053333pt;}
.y5b{bottom:709.241333pt;}
.ya1{bottom:732.484000pt;}
.y5c{bottom:764.833333pt;}
.ya0{bottom:777.913333pt;}
.y50{bottom:818.077333pt;}
.y9f{bottom:821.313333pt;}
.y9e{bottom:895.840000pt;}
.y4f{bottom:897.229333pt;}
.y9d{bottom:941.270667pt;}
.y43{bottom:955.497333pt;}
.y44{bottom:987.588000pt;}
.y9c{bottom:990.685333pt;}
.y9b{bottom:1036.114667pt;}
.y9a{bottom:1085.529333pt;}
.y45{bottom:1098.774667pt;}
.y4e{bottom:1122.776000pt;}
.y99{bottom:1130.958667pt;}
.y98{bottom:1180.373333pt;}
.y46{bottom:1209.960000pt;}
.y97{bottom:1225.802667pt;}
.y96{bottom:1278.996000pt;}
.y4c{bottom:1284.156000pt;}
.y47{bottom:1321.145333pt;}
.y4d{bottom:1328.630667pt;}
.y4a{bottom:1339.749333pt;}
.y95{bottom:1361.226667pt;}
.y94{bottom:1406.656000pt;}
.y4b{bottom:1417.580000pt;}
.y48{bottom:1432.332000pt;}
.y93{bottom:1456.070667pt;}
.y92{bottom:1501.501333pt;}
.y49{bottom:1543.517333pt;}
.y91{bottom:1550.916000pt;}
.y90{bottom:1596.345333pt;}
.y42{bottom:1607.966667pt;}
.y8f{bottom:1645.760000pt;}
.y41{bottom:1687.118667pt;}
.y8e{bottom:1691.189333pt;}
.y8d{bottom:1736.618667pt;}
.y2d{bottom:1745.386667pt;}
.y2e{bottom:1771.808000pt;}
.y8c{bottom:1778.606667pt;}
.y38{bottom:1854.122667pt;}
.y8b{bottom:1857.474667pt;}
.y3e{bottom:1892.056000pt;}
.y3c{bottom:1902.765333pt;}
.y8a{bottom:1902.905333pt;}
.y2f{bottom:1910.648000pt;}
.y3d{bottom:1937.510667pt;}
.y89{bottom:1948.334667pt;}
.y3b{bottom:1958.357333pt;}
.y33{bottom:1968.638667pt;}
.y39{bottom:1986.153333pt;}
.y7c{bottom:2011.893333pt;}
.y37{bottom:2017.086667pt;}
.y3a{bottom:2034.797333pt;}
.y7d{bottom:2040.525333pt;}
.y30{bottom:2049.628000pt;}
.y7e{bottom:2131.742667pt;}
.y34{bottom:2156.262667pt;}
.y36{bottom:2163.212000pt;}
.y31{bottom:2188.609333pt;}
.y84{bottom:2221.669333pt;}
.y7f{bottom:2222.960000pt;}
.y85{bottom:2260.404000pt;}
.y40{bottom:2267.804000pt;}
.y35{bottom:2281.149333pt;}
.y3f{bottom:2300.953333pt;}
.y80{bottom:2314.177333pt;}
.y32{bottom:2327.730667pt;}
.y2c{bottom:2392.180000pt;}
.y81{bottom:2405.394667pt;}
.y83{bottom:2431.482667pt;}
.y2b{bottom:2474.901333pt;}
.y82{bottom:2496.610667pt;}
.y2a{bottom:2520.330667pt;}
.y88{bottom:2524.674667pt;}
.y87{bottom:2561.150667pt;}
.y29{bottom:2569.745333pt;}
.y86{bottom:2597.626667pt;}
.y28{bottom:2619.160000pt;}
.y7b{bottom:2653.428000pt;}
.y27{bottom:2662.560000pt;}
.y7a{bottom:2736.149333pt;}
.y1f{bottom:2770.284000pt;}
.y1b{bottom:2770.825333pt;}
.y21{bottom:2773.322667pt;}
.y23{bottom:2773.652000pt;}
.y1d{bottom:2773.698667pt;}
.y25{bottom:2774.036000pt;}
.y79{bottom:2781.578667pt;}
.y1e{bottom:2808.142667pt;}
.y1a{bottom:2808.684000pt;}
.y20{bottom:2811.180000pt;}
.y22{bottom:2811.509333pt;}
.y1c{bottom:2811.557333pt;}
.y24{bottom:2811.894667pt;}
.y78{bottom:2827.008000pt;}
.y77{bottom:2876.422667pt;}
.y26{bottom:2884.417333pt;}
.y76{bottom:2925.837333pt;}
.y19{bottom:2945.344000pt;}
.y75{bottom:2975.252000pt;}
.y74{bottom:3024.666667pt;}
.y18{bottom:3028.064000pt;}
.y17{bottom:3073.494667pt;}
.y73{bottom:3079.272000pt;}
.y16{bottom:3118.924000pt;}
.y72{bottom:3153.800000pt;}
.y15{bottom:3164.353333pt;}
.y71{bottom:3199.229333pt;}
.y14{bottom:3213.768000pt;}
.y70{bottom:3244.658667pt;}
.y13{bottom:3263.182667pt;}
.y6f{bottom:3294.073333pt;}
.y12{bottom:3312.597333pt;}
.y6e{bottom:3339.502667pt;}
.y11{bottom:3365.790667pt;}
.y6d{bottom:3388.917333pt;}
.y6c{bottom:3434.348000pt;}
.y10{bottom:3448.021333pt;}
.y6b{bottom:3483.762667pt;}
.yf{bottom:3493.450667pt;}
.y6a{bottom:3529.192000pt;}
.ye{bottom:3538.880000pt;}
.y69{bottom:3583.145333pt;}
.yd{bottom:3584.310667pt;}
.yc{bottom:3629.740000pt;}
.y68{bottom:3665.132000pt;}
.yb{bottom:3675.169333pt;}
.y67{bottom:3710.561333pt;}
.ya{bottom:3720.598667pt;}
.y66{bottom:3755.990667pt;}
.y9{bottom:3766.029333pt;}
.y65{bottom:3801.421333pt;}
.y8{bottom:3811.458667pt;}
.y64{bottom:3846.850667pt;}
.y7{bottom:3856.888000pt;}
.y6{bottom:3900.042667pt;}
.y5{bottom:4056.784000pt;}
.y4{bottom:4130.780000pt;}
.y3{bottom:4189.960000pt;}
.y2{bottom:4253.113333pt;}
.y1{bottom:4369.294667pt;}
.h12{height:68.837410pt;}
.he{height:69.971613pt;}
.h11{height:78.088946pt;}
.hb{height:83.948655pt;}
.h4{height:88.411087pt;}
.hc{height:99.105554pt;}
.ha{height:100.738471pt;}
.h5{height:103.432909pt;}
.h10{height:105.074471pt;}
.h9{height:115.125632pt;}
.h8{height:120.851776pt;}
.hf{height:128.423322pt;}
.h6{height:142.343326pt;}
.hd{height:167.335322pt;}
.h7{height:170.820554pt;}
.h3{height:172.134091pt;}
.h2{height:289.556819pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:35.841333pt;}
.x7{left:37.794667pt;}
.xc{left:56.693333pt;}
.x1{left:123.129333pt;}
.x38{left:166.460000pt;}
.x2a{left:222.141333pt;}
.x37{left:228.206667pt;}
.x1f{left:255.996000pt;}
.x2d{left:260.404000pt;}
.x31{left:262.061333pt;}
.x30{left:266.845333pt;}
.x5{left:283.150667pt;}
.x20{left:290.013333pt;}
.xd{left:324.974667pt;}
.xe{left:342.340000pt;}
.x2b{left:393.994667pt;}
.x2f{left:398.214667pt;}
.x1e{left:404.278667pt;}
.x21{left:432.485333pt;}
.xf{left:489.410667pt;}
.x10{left:519.178667pt;}
.x2{left:521.242667pt;}
.x2c{left:531.532000pt;}
.x3{left:587.622667pt;}
.x2e{left:644.940000pt;}
.x4{left:647.184000pt;}
.x1d{left:660.701333pt;}
.x32{left:691.404000pt;}
.x22{left:704.940000pt;}
.x11{left:745.634667pt;}
.x12{left:747.816000pt;}
.x33{left:961.673333pt;}
.x13{left:962.888000pt;}
.x23{left:973.678667pt;}
.x26{left:975.470667pt;}
.x14{left:981.509333pt;}
.xa{left:1072.393333pt;}
.x36{left:1087.369333pt;}
.xb{left:1109.469333pt;}
.x15{left:1139.664000pt;}
.x16{left:1143.346667pt;}
.x24{left:1244.340000pt;}
.x27{left:1253.342667pt;}
.x18{left:1313.552000pt;}
.x17{left:1320.020000pt;}
.x19{left:1493.060000pt;}
.x1a{left:1503.610667pt;}
.x34{left:1508.674667pt;}
.x28{left:1514.609333pt;}
.x25{left:1518.194667pt;}
.x1c{left:1678.784000pt;}
.x1b{left:1702.069333pt;}
.x35{left:1771.734667pt;}
.x29{left:1785.742667pt;}
.x8{left:1846.629333pt;}
.x9{left:1876.748000pt;}
.x4a{left:2137.265333pt;}
.x39{left:2139.110667pt;}
.x46{left:2150.420000pt;}
.x3b{left:2156.577333pt;}
.x3a{left:2158.008000pt;}
.x45{left:2168.545333pt;}
.x3f{left:2216.377333pt;}
.x3e{left:2226.280000pt;}
.x3d{left:2238.516000pt;}
.x3c{left:2292.516000pt;}
.x40{left:2343.074667pt;}
.x48{left:2456.418667pt;}
.x49{left:2486.537333pt;}
.x47{left:2528.992000pt;}
.x4b{left:2550.809333pt;}
.x4d{left:2567.734667pt;}
.x4c{left:2598.693333pt;}
.x44{left:2625.549333pt;}
.x42{left:2629.573333pt;}
.x43{left:2633.193333pt;}
.x4e{left:2716.917333pt;}
.x41{left:2931.268000pt;}
}




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