
    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_21b8d58d35d17041643e3105.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_8fb894c9baf8924a6bd7085b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873000;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_10c80d50beca2176addaa26a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_406f8278eb9c70b550042ecc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_f7bc195a02e74bafb3cb2cf9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_4d5f96e327a6f0d59f331ec7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965332;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_40ab3fcb6ae9fc84fdfa5307.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_44c76b00c9d43effcb7f307d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.735352;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_1e8c2479179a89e4abb2f2be.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.873000;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_a5f09ed6ac412d52a8cf216c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873000;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_9e4b66f654dacb987947d8a2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.951000;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_e22923244df4e5efd58d89ef.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.947754;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;}
.m3{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,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);}
.m1{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v9{vertical-align:-17.037000px;}
.va{vertical-align:-15.300000px;}
.vb{vertical-align:-13.842000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:4.937400px;}
.v5{vertical-align:10.519200px;}
.v6{vertical-align:12.036000px;}
.v3{vertical-align:13.072800px;}
.v2{vertical-align:14.512800px;}
.v1{vertical-align:15.952800px;}
.v4{vertical-align:17.632800px;}
.v7{vertical-align:19.859400px;}
.ls4{letter-spacing:-0.020310px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.019200px;}
.ls3{letter-spacing:0.074472px;}
.ls1{letter-spacing:0.125473px;}
.ls2{letter-spacing:0.186179px;}
.ls12{letter-spacing:38.016060px;}
.ls8{letter-spacing:47.132700px;}
.ls6{letter-spacing:52.656060px;}
.ls11{letter-spacing:57.792000px;}
.lsa{letter-spacing:59.132700px;}
.ls9{letter-spacing:72.534000px;}
.ls7{letter-spacing:90.534060px;}
.lse{letter-spacing:91.632000px;}
.lsc{letter-spacing:95.568060px;}
.ls5{letter-spacing:100.680060px;}
.lsd{letter-spacing:103.632060px;}
.ls10{letter-spacing:111.792000px;}
.ls15{letter-spacing:144.092880px;}
.ls14{letter-spacing:152.652000px;}
.ls13{letter-spacing:153.225480px;}
.lsf{letter-spacing:163.632060px;}
.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;}
}
.ws7{word-spacing:-144.000000px;}
.ws10{word-spacing:-132.480000px;}
.ws11{word-spacing:-100.800000px;}
.wsf{word-spacing:-64.800000px;}
.ws8{word-spacing:-48.384000px;}
.wsb{word-spacing:-45.240000px;}
.wse{word-spacing:-45.036000px;}
.wsa{word-spacing:-43.200000px;}
.wsc{word-spacing:-41.760000px;}
.wsd{word-spacing:-40.320000px;}
.ws9{word-spacing:-31.104000px;}
.ws4{word-spacing:-0.558537px;}
.ws5{word-spacing:-0.446830px;}
.ws3{word-spacing:-0.411620px;}
.ws1{word-spacing:-0.394343px;}
.ws2{word-spacing:-0.376418px;}
.ws6{word-spacing:-0.372358px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-54.300000px;}
._12{margin-left:-52.080000px;}
._15{margin-left:-34.707360px;}
._b{margin-left:-25.418400px;}
._13{margin-left:-20.287560px;}
._11{margin-left:-17.280000px;}
._d{margin-left:-15.321600px;}
._e{margin-left:-13.680000px;}
._f{margin-left:-12.343560px;}
._c{margin-left:-10.483200px;}
._2{margin-left:-8.640000px;}
._1{margin-left:-6.720000px;}
._17{margin-left:-5.710680px;}
._4{margin-left:-4.500000px;}
._9{margin-left:-3.400440px;}
._0{margin-left:-2.400000px;}
._7{margin-left:-1.015560px;}
._6{width:1.031566px;}
._8{width:3.060000px;}
._a{width:4.416000px;}
._14{width:5.595960px;}
._3{width:7.200000px;}
._5{width:8.640000px;}
._10{width:13.056000px;}
.fc7{color:rgb(134,16,1);}
.fc5{color:rgb(81,167,249);}
.fc4{color:rgb(0,153,204);}
.fc2{color:transparent;}
.fc8{color:rgb(255,255,255);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(136,136,136);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:96.000000px;}
.fs6{font-size:101.552256px;}
.fs13{font-size:103.680000px;}
.fs16{font-size:108.000000px;}
.fs19{font-size:114.000000px;}
.fs14{font-size:126.720000px;}
.fs15{font-size:144.000000px;}
.fs22{font-size:152.280000px;}
.fs17{font-size:156.000000px;}
.fs1f{font-size:160.380000px;}
.fs11{font-size:161.280000px;}
.fs1a{font-size:162.000000px;}
.fsc{font-size:181.560000px;}
.fsf{font-size:184.320000px;}
.fs1b{font-size:192.000000px;}
.fs12{font-size:195.840000px;}
.fsd{font-size:202.920000px;}
.fs21{font-size:203.040000px;}
.fsa{font-size:204.000000px;}
.fs1e{font-size:213.840000px;}
.fs1c{font-size:216.000000px;}
.fs10{font-size:218.880000px;}
.fsb{font-size:228.000000px;}
.fs3{font-size:250.945632px;}
.fs1{font-size:300.000000px;}
.fs9{font-size:307.800000px;}
.fs20{font-size:336.000000px;}
.fs7{font-size:338.520000px;}
.fse{font-size:372.000000px;}
.fs5{font-size:372.358272px;}
.fs2{font-size:394.343136px;}
.fs4{font-size:411.619560px;}
.fs18{font-size:412.800000px;}
.fs1d{font-size:441.600000px;}
.fs0{font-size:480.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:9.000000px;}
.y4d{bottom:14.159700px;}
.yf{bottom:21.844326px;}
.y6e{bottom:22.759800px;}
.y4a{bottom:30.059700px;}
.y48{bottom:31.154850px;}
.y51{bottom:31.469400px;}
.y59{bottom:31.588800px;}
.y75{bottom:31.852020px;}
.y53{bottom:31.874250px;}
.y5b{bottom:31.993650px;}
.y55{bottom:32.279100px;}
.y5d{bottom:32.398440px;}
.y4f{bottom:32.564550px;}
.y57{bottom:32.683950px;}
.y74{bottom:34.124700px;}
.y72{bottom:34.759800px;}
.y70{bottom:34.852020px;}
.y6b{bottom:35.605650px;}
.y71{bottom:38.605650px;}
.y6d{bottom:55.759800px;}
.y4c{bottom:57.659700px;}
.y7{bottom:61.500000px;}
.y8c{bottom:62.720025px;}
.y8f{bottom:64.386285px;}
.ya{bottom:72.000000px;}
.y2e{bottom:75.536220px;}
.y45{bottom:90.000000px;}
.y6f{bottom:94.147980px;}
.y29{bottom:119.974170px;}
.y5c{bottom:128.101560px;}
.ya5{bottom:132.000000px;}
.y86{bottom:139.500000px;}
.y91{bottom:171.113715px;}
.y8e{bottom:171.279975px;}
.y5{bottom:183.000000px;}
.y28{bottom:183.163800px;}
.y12{bottom:192.000000px;}
.y5a{bottom:194.506350px;}
.y3e{bottom:197.289150px;}
.y73{bottom:205.875300px;}
.y90{bottom:214.613715px;}
.y8d{bottom:214.779975px;}
.y3d{bottom:231.000000px;}
.y98{bottom:235.500000px;}
.y44{bottom:241.500000px;}
.y27{bottom:246.353400px;}
.y3c{bottom:251.855550px;}
.y9f{bottom:258.000000px;}
.y58{bottom:260.911200px;}
.y7c{bottom:265.500000px;}
.y85{bottom:267.000000px;}
.y1c{bottom:267.031800px;}
.y3b{bottom:285.000000px;}
.y43{bottom:288.000000px;}
.y97{bottom:300.000000px;}
.y3a{bottom:306.421950px;}
.y26{bottom:309.543000px;}
.y9{bottom:311.950542px;}
.y9e{bottom:318.000000px;}
.y56{bottom:327.316050px;}
.y7b{bottom:330.000000px;}
.y84{bottom:331.500000px;}
.y42{bottom:334.500000px;}
.y1b{bottom:338.671800px;}
.y39{bottom:340.500000px;}
.y38{bottom:360.988350px;}
.y25{bottom:372.732600px;}
.y2c{bottom:390.000000px;}
.y54{bottom:393.720900px;}
.y37{bottom:394.500000px;}
.y83{bottom:396.000000px;}
.y1a{bottom:410.311800px;}
.y89{bottom:417.000000px;}
.y36{bottom:417.265650px;}
.ya4{bottom:433.960500px;}
.y24{bottom:435.922200px;}
.y9d{bottom:436.500000px;}
.y4{bottom:439.500000px;}
.y35{bottom:452.849850px;}
.y7a{bottom:459.000000px;}
.y52{bottom:460.125750px;}
.y68{bottom:463.500000px;}
.y19{bottom:481.951800px;}
.y9c{bottom:496.500000px;}
.y23{bottom:499.111800px;}
.y34{bottom:499.774650px;}
.y67{bottom:503.427750px;}
.y82{bottom:522.000000px;}
.y79{bottom:523.500000px;}
.y50{bottom:526.530600px;}
.y2b{bottom:534.000000px;}
.yc{bottom:546.000000px;}
.y33{bottom:546.699450px;}
.y88{bottom:549.000000px;}
.ya3{bottom:550.500000px;}
.y66{bottom:553.407750px;}
.y96{bottom:555.000000px;}
.y9b{bottom:556.500000px;}
.y18{bottom:558.000000px;}
.y22{bottom:562.301400px;}
.y3{bottom:583.500000px;}
.y8b{bottom:586.500000px;}
.y78{bottom:588.000000px;}
.y81{bottom:590.759250px;}
.y4e{bottom:592.935450px;}
.y32{bottom:593.624250px;}
.y65{bottom:603.387750px;}
.y6{bottom:604.500000px;}
.y17{bottom:616.591800px;}
.y95{bottom:619.500000px;}
.y21{bottom:625.491000px;}
.y77{bottom:652.500000px;}
.y8a{bottom:654.825000px;}
.y64{bottom:657.000000px;}
.y4b{bottom:659.340300px;}
.ya2{bottom:669.000000px;}
.y9a{bottom:676.500000px;}
.y2a{bottom:678.000000px;}
.y87{bottom:681.000000px;}
.y94{bottom:684.000000px;}
.y16{bottom:688.231800px;}
.y20{bottom:688.680600px;}
.y63{bottom:700.500000px;}
.y41{bottom:703.500000px;}
.y80{bottom:714.000000px;}
.y2{bottom:727.500000px;}
.ya1{bottom:729.000000px;}
.y62{bottom:740.367750px;}
.y40{bottom:742.500000px;}
.y10{bottom:748.500000px;}
.y49{bottom:751.440300px;}
.y1f{bottom:751.870200px;}
.y15{bottom:759.871800px;}
.y31{bottom:762.379950px;}
.y7f{bottom:778.500000px;}
.y3f{bottom:786.000000px;}
.ya0{bottom:789.000000px;}
.y61{bottom:790.347750px;}
.y6a{bottom:790.894350px;}
.y6c{bottom:791.740200px;}
.y99{bottom:795.000000px;}
.y1e{bottom:815.059800px;}
.y30{bottom:815.535150px;}
.y47{bottom:819.345150px;}
.y14{bottom:831.511800px;}
.y60{bottom:840.327750px;}
.yb{bottom:860.132760px;}
.y1{bottom:871.500000px;}
.y1d{bottom:878.249400px;}
.y7e{bottom:879.000000px;}
.y5f{bottom:890.307750px;}
.y93{bottom:900.000000px;}
.y8{bottom:929.339016px;}
.y76{bottom:942.000000px;}
.y5e{bottom:946.711800px;}
.y69{bottom:970.500000px;}
.y2f{bottom:985.500000px;}
.y92{bottom:1000.500000px;}
.ye{bottom:1001.558982px;}
.y7d{bottom:1011.000000px;}
.y46{bottom:1032.000000px;}
.y11{bottom:1035.000000px;}
.y2d{bottom:1044.000000px;}
.y13{bottom:1062.000000px;}
.h37{height:63.404850px;}
.h39{height:64.904850px;}
.h25{height:68.859375px;}
.ha{height:69.420487px;}
.hc{height:72.000000px;}
.h45{height:79.812000px;}
.h34{height:83.592000px;}
.h47{height:84.246000px;}
.h2c{height:85.185720px;}
.h38{height:90.599985px;}
.h2e{height:94.294920px;}
.h32{height:95.091720px;}
.h30{height:96.560520px;}
.h33{height:97.632000px;}
.h2f{height:98.081280px;}
.h31{height:98.826120px;}
.h46{height:98.935545px;}
.h43{height:98.935560px;}
.h36{height:105.768000px;}
.h44{height:106.416000px;}
.h35{height:111.456000px;}
.h48{height:121.500000px;}
.h2d{height:124.830720px;}
.h41{height:125.745000px;}
.h3e{height:125.985000px;}
.h1d{height:136.650480px;}
.h17{height:138.100080px;}
.h29{height:140.032920px;}
.h2a{height:141.732120px;}
.h49{height:141.750000px;}
.h52{height:143.310960px;}
.h4d{height:148.475160px;}
.h21{height:151.113840px;}
.h2b{height:151.380120px;}
.h10{height:151.384800px;}
.h15{height:151.624800px;}
.h22{height:151.872240px;}
.h4e{height:151.884000px;}
.h23{height:152.630760px;}
.he{height:154.264800px;}
.h13{height:154.504800px;}
.h1e{height:154.838640px;}
.h20{height:156.355440px;}
.h51{height:157.152960px;}
.h26{height:162.523080px;}
.h4c{height:165.512160px;}
.h4a{height:167.184000px;}
.h19{height:167.579280px;}
.h28{height:167.903640px;}
.h1a{height:168.337680px;}
.h1b{height:169.096080px;}
.h1c{height:169.854480px;}
.h5{height:170.687141px;}
.h1f{height:172.129680px;}
.h18{height:172.820880px;}
.h3a{height:175.048800px;}
.h11{height:175.528800px;}
.h16{height:175.768800px;}
.h12{height:176.472000px;}
.h27{height:185.893320px;}
.h40{height:188.841000px;}
.h3d{height:189.081000px;}
.hf{height:190.984800px;}
.h14{height:191.224800px;}
.h3b{height:191.241000px;}
.h3f{height:192.921000px;}
.h3c{height:193.161000px;}
.h2{height:203.400000px;}
.hd{height:238.237200px;}
.h9{height:254.541787px;}
.h50{height:260.064000px;}
.hb{height:262.014480px;}
.h4{height:268.222651px;}
.h7{height:279.973656px;}
.h24{height:287.928000px;}
.h42{height:305.059200px;}
.h4b{height:341.798400px;}
.h1{height:371.520000px;}
.h4f{height:414.935550px;}
.h6{height:1008.000000px;}
.h3{height:1071.000000px;}
.h8{height:1134.000000px;}
.h0{height:1152.000000px;}
.wd{width:154.333350px;}
.w9{width:180.888000px;}
.w5{width:193.060050px;}
.wa{width:220.806450px;}
.wc{width:228.726600px;}
.w6{width:235.564050px;}
.w7{width:252.374550px;}
.w8{width:274.980000px;}
.we{width:274.996950px;}
.wb{width:276.696600px;}
.w4{width:356.899950px;}
.w12{width:422.536650px;}
.w11{width:424.680900px;}
.w10{width:1044.218550px;}
.wf{width:1334.964000px;}
.w3{width:1383.000000px;}
.w1{width:1452.000000px;}
.w2{width:1515.000000px;}
.w0{width:1536.000000px;}
.x0{left:0.000000px;}
.x26{left:5.250000px;}
.x40{left:9.404700px;}
.xa{left:10.500000px;}
.x3c{left:11.706765px;}
.x9{left:16.133340px;}
.x3d{left:24.507900px;}
.x3b{left:35.427450px;}
.x12{left:37.500000px;}
.x39{left:38.628750px;}
.x31{left:41.725950px;}
.x42{left:45.838500px;}
.x2a{left:59.250000px;}
.x2e{left:67.290000px;}
.x7{left:70.500000px;}
.xd{left:76.500000px;}
.x2d{left:80.350050px;}
.x15{left:84.479985px;}
.x33{left:87.850050px;}
.x30{left:92.790000px;}
.x25{left:95.250000px;}
.x2b{left:100.290000px;}
.x32{left:109.290000px;}
.x52{left:114.669450px;}
.x2f{left:118.225950px;}
.x37{left:124.500000px;}
.x2c{left:128.351400px;}
.x16{left:138.479985px;}
.x4f{left:145.584900px;}
.x46{left:147.000000px;}
.x38{left:154.871250px;}
.x35{left:168.000000px;}
.x49{left:171.000000px;}
.x17{left:180.000000px;}
.x53{left:182.169450px;}
.x50{left:186.084900px;}
.x10{left:192.000000px;}
.x22{left:201.000000px;}
.x3{left:202.500000px;}
.xc{left:207.000000px;}
.x4a{left:210.000000px;}
.x57{left:213.000000px;}
.x1e{left:216.000000px;}
.x1c{left:219.000000px;}
.x1{left:223.500000px;}
.x54{left:228.000000px;}
.x1d{left:229.500000px;}
.x1f{left:237.000000px;}
.x4{left:246.000000px;}
.x4b{left:249.000000px;}
.x56{left:262.500000px;}
.x36{left:265.500000px;}
.x45{left:287.866950px;}
.x47{left:324.000000px;}
.xe{left:345.846650px;}
.x4d{left:348.000000px;}
.x5a{left:354.000000px;}
.x4e{left:377.915100px;}
.x23{left:385.500000px;}
.x44{left:390.133050px;}
.x13{left:403.500000px;}
.x24{left:405.000000px;}
.x59{left:408.000000px;}
.x5{left:409.500000px;}
.x18{left:415.500000px;}
.x8{left:442.344591px;}
.x6{left:444.000000px;}
.x11{left:447.000000px;}
.x2{left:454.500000px;}
.xb{left:461.537272px;}
.x43{left:466.481970px;}
.x34{left:487.500000px;}
.x48{left:496.500000px;}
.x21{left:502.500000px;}
.x58{left:517.500000px;}
.x14{left:519.000000px;}
.x3e{left:538.987950px;}
.x19{left:556.500000px;}
.x55{left:570.000000px;}
.x1b{left:607.500000px;}
.x4c{left:639.000000px;}
.x51{left:641.330550px;}
.x27{left:648.210000px;}
.x3a{left:782.072550px;}
.x28{left:885.274050px;}
.x3f{left:1007.595300px;}
.x29{left:1139.148600px;}
.x20{left:1158.000000px;}
.x41{left:1172.161500px;}
.xf{left:1355.758688px;}
.x1a{left:1424.824800px;}
@media print{
.v9{vertical-align:-15.144000pt;}
.va{vertical-align:-13.600000pt;}
.vb{vertical-align:-12.304000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.388800pt;}
.v5{vertical-align:9.350400pt;}
.v6{vertical-align:10.698667pt;}
.v3{vertical-align:11.620267pt;}
.v2{vertical-align:12.900267pt;}
.v1{vertical-align:14.180267pt;}
.v4{vertical-align:15.673600pt;}
.v7{vertical-align:17.652800pt;}
.ls4{letter-spacing:-0.018054pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017067pt;}
.ls3{letter-spacing:0.066197pt;}
.ls1{letter-spacing:0.111531pt;}
.ls2{letter-spacing:0.165493pt;}
.ls12{letter-spacing:33.792053pt;}
.ls8{letter-spacing:41.895733pt;}
.ls6{letter-spacing:46.805387pt;}
.ls11{letter-spacing:51.370667pt;}
.lsa{letter-spacing:52.562400pt;}
.ls9{letter-spacing:64.474667pt;}
.ls7{letter-spacing:80.474720pt;}
.lse{letter-spacing:81.450667pt;}
.lsc{letter-spacing:84.949387pt;}
.ls5{letter-spacing:89.493387pt;}
.lsd{letter-spacing:92.117387pt;}
.ls10{letter-spacing:99.370667pt;}
.ls15{letter-spacing:128.082560pt;}
.ls14{letter-spacing:135.690667pt;}
.ls13{letter-spacing:136.200427pt;}
.lsf{letter-spacing:145.450720pt;}
.ws7{word-spacing:-128.000000pt;}
.ws10{word-spacing:-117.760000pt;}
.ws11{word-spacing:-89.600000pt;}
.wsf{word-spacing:-57.600000pt;}
.ws8{word-spacing:-43.008000pt;}
.wsb{word-spacing:-40.213333pt;}
.wse{word-spacing:-40.032000pt;}
.wsa{word-spacing:-38.400000pt;}
.wsc{word-spacing:-37.120000pt;}
.wsd{word-spacing:-35.840000pt;}
.ws9{word-spacing:-27.648000pt;}
.ws4{word-spacing:-0.496478pt;}
.ws5{word-spacing:-0.397182pt;}
.ws3{word-spacing:-0.365884pt;}
.ws1{word-spacing:-0.350527pt;}
.ws2{word-spacing:-0.334594pt;}
.ws6{word-spacing:-0.330985pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-48.266667pt;}
._12{margin-left:-46.293333pt;}
._15{margin-left:-30.850987pt;}
._b{margin-left:-22.594133pt;}
._13{margin-left:-18.033387pt;}
._11{margin-left:-15.360000pt;}
._d{margin-left:-13.619200pt;}
._e{margin-left:-12.160000pt;}
._f{margin-left:-10.972053pt;}
._c{margin-left:-9.318400pt;}
._2{margin-left:-7.680000pt;}
._1{margin-left:-5.973333pt;}
._17{margin-left:-5.076160pt;}
._4{margin-left:-4.000000pt;}
._9{margin-left:-3.022613pt;}
._0{margin-left:-2.133333pt;}
._7{margin-left:-0.902720pt;}
._6{width:0.916947pt;}
._8{width:2.720000pt;}
._a{width:3.925333pt;}
._14{width:4.974187pt;}
._3{width:6.400000pt;}
._5{width:7.680000pt;}
._10{width:11.605333pt;}
.fs8{font-size:85.333333pt;}
.fs6{font-size:90.268672pt;}
.fs13{font-size:92.160000pt;}
.fs16{font-size:96.000000pt;}
.fs19{font-size:101.333333pt;}
.fs14{font-size:112.640000pt;}
.fs15{font-size:128.000000pt;}
.fs22{font-size:135.360000pt;}
.fs17{font-size:138.666667pt;}
.fs1f{font-size:142.560000pt;}
.fs11{font-size:143.360000pt;}
.fs1a{font-size:144.000000pt;}
.fsc{font-size:161.386667pt;}
.fsf{font-size:163.840000pt;}
.fs1b{font-size:170.666667pt;}
.fs12{font-size:174.080000pt;}
.fsd{font-size:180.373333pt;}
.fs21{font-size:180.480000pt;}
.fsa{font-size:181.333333pt;}
.fs1e{font-size:190.080000pt;}
.fs1c{font-size:192.000000pt;}
.fs10{font-size:194.560000pt;}
.fsb{font-size:202.666667pt;}
.fs3{font-size:223.062784pt;}
.fs1{font-size:266.666667pt;}
.fs9{font-size:273.600000pt;}
.fs20{font-size:298.666667pt;}
.fs7{font-size:300.906667pt;}
.fse{font-size:330.666667pt;}
.fs5{font-size:330.985131pt;}
.fs2{font-size:350.527232pt;}
.fs4{font-size:365.884053pt;}
.fs18{font-size:366.933333pt;}
.fs1d{font-size:392.533333pt;}
.fs0{font-size:426.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:8.000000pt;}
.y4d{bottom:12.586400pt;}
.yf{bottom:19.417179pt;}
.y6e{bottom:20.230933pt;}
.y4a{bottom:26.719733pt;}
.y48{bottom:27.693200pt;}
.y51{bottom:27.972800pt;}
.y59{bottom:28.078933pt;}
.y75{bottom:28.312907pt;}
.y53{bottom:28.332667pt;}
.y5b{bottom:28.438800pt;}
.y55{bottom:28.692533pt;}
.y5d{bottom:28.798613pt;}
.y4f{bottom:28.946267pt;}
.y57{bottom:29.052400pt;}
.y74{bottom:30.333067pt;}
.y72{bottom:30.897600pt;}
.y70{bottom:30.979573pt;}
.y6b{bottom:31.649467pt;}
.y71{bottom:34.316133pt;}
.y6d{bottom:49.564267pt;}
.y4c{bottom:51.253067pt;}
.y7{bottom:54.666667pt;}
.y8c{bottom:55.751133pt;}
.y8f{bottom:57.232253pt;}
.ya{bottom:64.000000pt;}
.y2e{bottom:67.143307pt;}
.y45{bottom:80.000000pt;}
.y6f{bottom:83.687093pt;}
.y29{bottom:106.643707pt;}
.y5c{bottom:113.868053pt;}
.ya5{bottom:117.333333pt;}
.y86{bottom:124.000000pt;}
.y91{bottom:152.101080pt;}
.y8e{bottom:152.248867pt;}
.y5{bottom:162.666667pt;}
.y28{bottom:162.812267pt;}
.y12{bottom:170.666667pt;}
.y5a{bottom:172.894533pt;}
.y3e{bottom:175.368133pt;}
.y73{bottom:183.000267pt;}
.y90{bottom:190.767747pt;}
.y8d{bottom:190.915533pt;}
.y3d{bottom:205.333333pt;}
.y98{bottom:209.333333pt;}
.y44{bottom:214.666667pt;}
.y27{bottom:218.980800pt;}
.y3c{bottom:223.871600pt;}
.y9f{bottom:229.333333pt;}
.y58{bottom:231.921067pt;}
.y7c{bottom:236.000000pt;}
.y85{bottom:237.333333pt;}
.y1c{bottom:237.361600pt;}
.y3b{bottom:253.333333pt;}
.y43{bottom:256.000000pt;}
.y97{bottom:266.666667pt;}
.y3a{bottom:272.375067pt;}
.y26{bottom:275.149333pt;}
.y9{bottom:277.289371pt;}
.y9e{bottom:282.666667pt;}
.y56{bottom:290.947600pt;}
.y7b{bottom:293.333333pt;}
.y84{bottom:294.666667pt;}
.y42{bottom:297.333333pt;}
.y1b{bottom:301.041600pt;}
.y39{bottom:302.666667pt;}
.y38{bottom:320.878533pt;}
.y25{bottom:331.317867pt;}
.y2c{bottom:346.666667pt;}
.y54{bottom:349.974133pt;}
.y37{bottom:350.666667pt;}
.y83{bottom:352.000000pt;}
.y1a{bottom:364.721600pt;}
.y89{bottom:370.666667pt;}
.y36{bottom:370.902800pt;}
.ya4{bottom:385.742667pt;}
.y24{bottom:387.486400pt;}
.y9d{bottom:388.000000pt;}
.y4{bottom:390.666667pt;}
.y35{bottom:402.533200pt;}
.y7a{bottom:408.000000pt;}
.y52{bottom:409.000667pt;}
.y68{bottom:412.000000pt;}
.y19{bottom:428.401600pt;}
.y9c{bottom:441.333333pt;}
.y23{bottom:443.654933pt;}
.y34{bottom:444.244133pt;}
.y67{bottom:447.491333pt;}
.y82{bottom:464.000000pt;}
.y79{bottom:465.333333pt;}
.y50{bottom:468.027200pt;}
.y2b{bottom:474.666667pt;}
.yc{bottom:485.333333pt;}
.y33{bottom:485.955067pt;}
.y88{bottom:488.000000pt;}
.ya3{bottom:489.333333pt;}
.y66{bottom:491.918000pt;}
.y96{bottom:493.333333pt;}
.y9b{bottom:494.666667pt;}
.y18{bottom:496.000000pt;}
.y22{bottom:499.823467pt;}
.y3{bottom:518.666667pt;}
.y8b{bottom:521.333333pt;}
.y78{bottom:522.666667pt;}
.y81{bottom:525.119333pt;}
.y4e{bottom:527.053733pt;}
.y32{bottom:527.666000pt;}
.y65{bottom:536.344667pt;}
.y6{bottom:537.333333pt;}
.y17{bottom:548.081600pt;}
.y95{bottom:550.666667pt;}
.y21{bottom:555.992000pt;}
.y77{bottom:580.000000pt;}
.y8a{bottom:582.066667pt;}
.y64{bottom:584.000000pt;}
.y4b{bottom:586.080267pt;}
.ya2{bottom:594.666667pt;}
.y9a{bottom:601.333333pt;}
.y2a{bottom:602.666667pt;}
.y87{bottom:605.333333pt;}
.y94{bottom:608.000000pt;}
.y16{bottom:611.761600pt;}
.y20{bottom:612.160533pt;}
.y63{bottom:622.666667pt;}
.y41{bottom:625.333333pt;}
.y80{bottom:634.666667pt;}
.y2{bottom:646.666667pt;}
.ya1{bottom:648.000000pt;}
.y62{bottom:658.104667pt;}
.y40{bottom:660.000000pt;}
.y10{bottom:665.333333pt;}
.y49{bottom:667.946933pt;}
.y1f{bottom:668.329067pt;}
.y15{bottom:675.441600pt;}
.y31{bottom:677.671067pt;}
.y7f{bottom:692.000000pt;}
.y3f{bottom:698.666667pt;}
.ya0{bottom:701.333333pt;}
.y61{bottom:702.531333pt;}
.y6a{bottom:703.017200pt;}
.y6c{bottom:703.769067pt;}
.y99{bottom:706.666667pt;}
.y1e{bottom:724.497600pt;}
.y30{bottom:724.920133pt;}
.y47{bottom:728.306800pt;}
.y14{bottom:739.121600pt;}
.y60{bottom:746.958000pt;}
.yb{bottom:764.562453pt;}
.y1{bottom:774.666667pt;}
.y1d{bottom:780.666133pt;}
.y7e{bottom:781.333333pt;}
.y5f{bottom:791.384667pt;}
.y93{bottom:800.000000pt;}
.y8{bottom:826.079125pt;}
.y76{bottom:837.333333pt;}
.y5e{bottom:841.521600pt;}
.y69{bottom:862.666667pt;}
.y2f{bottom:876.000000pt;}
.y92{bottom:889.333333pt;}
.ye{bottom:890.274651pt;}
.y7d{bottom:898.666667pt;}
.y46{bottom:917.333333pt;}
.y11{bottom:920.000000pt;}
.y2d{bottom:928.000000pt;}
.y13{bottom:944.000000pt;}
.h37{height:56.359867pt;}
.h39{height:57.693200pt;}
.h25{height:61.208333pt;}
.ha{height:61.707100pt;}
.hc{height:64.000000pt;}
.h45{height:70.944000pt;}
.h34{height:74.304000pt;}
.h47{height:74.885333pt;}
.h2c{height:75.720640pt;}
.h38{height:80.533320pt;}
.h2e{height:83.817707pt;}
.h32{height:84.525973pt;}
.h30{height:85.831573pt;}
.h33{height:86.784000pt;}
.h2f{height:87.183360pt;}
.h31{height:87.845440pt;}
.h46{height:87.942707pt;}
.h43{height:87.942720pt;}
.h36{height:94.016000pt;}
.h44{height:94.592000pt;}
.h35{height:99.072000pt;}
.h48{height:108.000000pt;}
.h2d{height:110.960640pt;}
.h41{height:111.773333pt;}
.h3e{height:111.986667pt;}
.h1d{height:121.467093pt;}
.h17{height:122.755627pt;}
.h29{height:124.473707pt;}
.h2a{height:125.984107pt;}
.h49{height:126.000000pt;}
.h52{height:127.387520pt;}
.h4d{height:131.977920pt;}
.h21{height:134.323413pt;}
.h2b{height:134.560107pt;}
.h10{height:134.564267pt;}
.h15{height:134.777600pt;}
.h22{height:134.997547pt;}
.h4e{height:135.008000pt;}
.h23{height:135.671787pt;}
.he{height:137.124267pt;}
.h13{height:137.337600pt;}
.h1e{height:137.634347pt;}
.h20{height:138.982613pt;}
.h51{height:139.691520pt;}
.h26{height:144.464960pt;}
.h4c{height:147.121920pt;}
.h4a{height:148.608000pt;}
.h19{height:148.959360pt;}
.h28{height:149.247680pt;}
.h1a{height:149.633493pt;}
.h1b{height:150.307627pt;}
.h1c{height:150.981760pt;}
.h5{height:151.721903pt;}
.h1f{height:153.004160pt;}
.h18{height:153.618560pt;}
.h3a{height:155.598933pt;}
.h11{height:156.025600pt;}
.h16{height:156.238933pt;}
.h12{height:156.864000pt;}
.h27{height:165.238507pt;}
.h40{height:167.858667pt;}
.h3d{height:168.072000pt;}
.hf{height:169.764267pt;}
.h14{height:169.977600pt;}
.h3b{height:169.992000pt;}
.h3f{height:171.485333pt;}
.h3c{height:171.698667pt;}
.h2{height:180.800000pt;}
.hd{height:211.766400pt;}
.h9{height:226.259367pt;}
.h50{height:231.168000pt;}
.hb{height:232.901760pt;}
.h4{height:238.420134pt;}
.h7{height:248.865472pt;}
.h24{height:255.936000pt;}
.h42{height:271.163733pt;}
.h4b{height:303.820800pt;}
.h1{height:330.240000pt;}
.h4f{height:368.831600pt;}
.h6{height:896.000000pt;}
.h3{height:952.000000pt;}
.h8{height:1008.000000pt;}
.h0{height:1024.000000pt;}
.wd{width:137.185200pt;}
.w9{width:160.789333pt;}
.w5{width:171.608933pt;}
.wa{width:196.272400pt;}
.wc{width:203.312533pt;}
.w6{width:209.390267pt;}
.w7{width:224.332933pt;}
.w8{width:244.426667pt;}
.we{width:244.441733pt;}
.wb{width:245.952533pt;}
.w4{width:317.244400pt;}
.w12{width:375.588133pt;}
.w11{width:377.494133pt;}
.w10{width:928.194267pt;}
.wf{width:1186.634667pt;}
.w3{width:1229.333333pt;}
.w1{width:1290.666667pt;}
.w2{width:1346.666667pt;}
.w0{width:1365.333333pt;}
.x0{left:0.000000pt;}
.x26{left:4.666667pt;}
.x40{left:8.359733pt;}
.xa{left:9.333333pt;}
.x3c{left:10.406013pt;}
.x9{left:14.340747pt;}
.x3d{left:21.784800pt;}
.x3b{left:31.491067pt;}
.x12{left:33.333333pt;}
.x39{left:34.336667pt;}
.x31{left:37.089733pt;}
.x42{left:40.745333pt;}
.x2a{left:52.666667pt;}
.x2e{left:59.813333pt;}
.x7{left:62.666667pt;}
.xd{left:68.000000pt;}
.x2d{left:71.422267pt;}
.x15{left:75.093320pt;}
.x33{left:78.088933pt;}
.x30{left:82.480000pt;}
.x25{left:84.666667pt;}
.x2b{left:89.146667pt;}
.x32{left:97.146667pt;}
.x52{left:101.928400pt;}
.x2f{left:105.089733pt;}
.x37{left:110.666667pt;}
.x2c{left:114.090133pt;}
.x16{left:123.093320pt;}
.x4f{left:129.408800pt;}
.x46{left:130.666667pt;}
.x38{left:137.663333pt;}
.x35{left:149.333333pt;}
.x49{left:152.000000pt;}
.x17{left:160.000000pt;}
.x53{left:161.928400pt;}
.x50{left:165.408800pt;}
.x10{left:170.666667pt;}
.x22{left:178.666667pt;}
.x3{left:180.000000pt;}
.xc{left:184.000000pt;}
.x4a{left:186.666667pt;}
.x57{left:189.333333pt;}
.x1e{left:192.000000pt;}
.x1c{left:194.666667pt;}
.x1{left:198.666667pt;}
.x54{left:202.666667pt;}
.x1d{left:204.000000pt;}
.x1f{left:210.666667pt;}
.x4{left:218.666667pt;}
.x4b{left:221.333333pt;}
.x56{left:233.333333pt;}
.x36{left:236.000000pt;}
.x45{left:255.881733pt;}
.x47{left:288.000000pt;}
.xe{left:307.419244pt;}
.x4d{left:309.333333pt;}
.x5a{left:314.666667pt;}
.x4e{left:335.924533pt;}
.x23{left:342.666667pt;}
.x44{left:346.784933pt;}
.x13{left:358.666667pt;}
.x24{left:360.000000pt;}
.x59{left:362.666667pt;}
.x5{left:364.000000pt;}
.x18{left:369.333333pt;}
.x8{left:393.195192pt;}
.x6{left:394.666667pt;}
.x11{left:397.333333pt;}
.x2{left:404.000000pt;}
.xb{left:410.255353pt;}
.x43{left:414.650640pt;}
.x34{left:433.333333pt;}
.x48{left:441.333333pt;}
.x21{left:446.666667pt;}
.x58{left:460.000000pt;}
.x14{left:461.333333pt;}
.x3e{left:479.100400pt;}
.x19{left:494.666667pt;}
.x55{left:506.666667pt;}
.x1b{left:540.000000pt;}
.x4c{left:568.000000pt;}
.x51{left:570.071600pt;}
.x27{left:576.186667pt;}
.x3a{left:695.175600pt;}
.x28{left:786.910267pt;}
.x3f{left:895.640267pt;}
.x29{left:1012.576533pt;}
.x20{left:1029.333333pt;}
.x41{left:1041.921333pt;}
.xf{left:1205.118834pt;}
.x1a{left:1266.510933pt;}
}




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