
    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_8af118b53c9f0a497c4acb7a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_c908eb10b780e41bc7a0c126.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_3a60ac46dea200eb79a8d989.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_58ae262fbf5787b2ce5fe43d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_96d576a33f58c484f66d3783.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d2f86b603207f60abebb1005.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_4ca13e80c9aef2eebca4e339.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_03c31209dc5e322a610f060e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_8c2b2b51bf8003ad85a26343.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_f93248cf573c39fc19cf6105.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_e81299198ec16c90d1ee7666.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_8df79ff5ff98e2406a287729.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;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:ffd;src:url('chunks/assets/font_44d498c3dedeb7f3d5c47d94.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.063477;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:ffe;src:url('chunks/assets/font_66f5ec935c8eb3cc9ab12a4a.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.138704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138704,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.186077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186077,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.192788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192788,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.244880,0.000000,-0.081618,0.236302,0,0);-ms-transform:matrix(0.244880,0.000000,-0.081618,0.236302,0,0);-webkit-transform:matrix(0.244880,0.000000,-0.081618,0.236302,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);}
.m6{transform:matrix(0.259033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259033,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259076,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vd{vertical-align:-44.569412px;}
.v6{vertical-align:-27.360000px;}
.vc{vertical-align:-26.323156px;}
.v9{vertical-align:-24.329603px;}
.va{vertical-align:-22.334281px;}
.v5{vertical-align:-15.840000px;}
.v3{vertical-align:-14.400000px;}
.v11{vertical-align:-10.800000px;}
.v2{vertical-align:-5.760000px;}
.vb{vertical-align:-4.126301px;}
.vf{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:14.400000px;}
.v1{vertical-align:27.360000px;}
.v10{vertical-align:31.680000px;}
.v8{vertical-align:36.000000px;}
.v7{vertical-align:42.456000px;}
.ve{vertical-align:45.360000px;}
.v14{vertical-align:48.240000px;}
.v13{vertical-align:54.720000px;}
.v12{vertical-align:56.880000px;}
.v15{vertical-align:102.960000px;}
.ls2b{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.298200px;}
.ls28{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.262200px;}
.ls4{letter-spacing:-0.058320px;}
.ls27{letter-spacing:-0.045360px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.071429px;}
.ls29{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.096480px;}
.ls5{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.172200px;}
.ls25{letter-spacing:0.208800px;}
.ls1d{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.385200px;}
.ls7{letter-spacing:0.720000px;}
.ls16{letter-spacing:1.014471px;}
.ls8{letter-spacing:2.160000px;}
.ls1c{letter-spacing:2.368800px;}
.lse{letter-spacing:2.801520px;}
.ls9{letter-spacing:3.917520px;}
.lsf{letter-spacing:3.939120px;}
.lsa{letter-spacing:4.245840px;}
.lsc{letter-spacing:4.424400px;}
.lsb{letter-spacing:4.659120px;}
.ls0{letter-spacing:5.040000px;}
.ls21{letter-spacing:16.056000px;}
.lsd{letter-spacing:19.241280px;}
.ls23{letter-spacing:19.656000px;}
.ls22{letter-spacing:19.776000px;}
.ls1f{letter-spacing:19.897920px;}
.ls18{letter-spacing:20.376000px;}
.ls17{letter-spacing:24.337920px;}
.ls20{letter-spacing:42.696000px;}
.ls1{letter-spacing:44.640000px;}
.ls1b{letter-spacing:56.376000px;}
.ls1e{letter-spacing:65.736000px;}
.ls2a{letter-spacing:102.384000px;}
.ls24{letter-spacing:138.384000px;}
.ls12{letter-spacing:1611.016425px;}
.ls10{letter-spacing:1629.030140px;}
.ls11{letter-spacing:1965.921798px;}
.ls13{letter-spacing:2075.521267px;}
.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;}
}
.wse{word-spacing:-62.633155px;}
.wsc{word-spacing:-39.468579px;}
.ws17{word-spacing:-39.425246px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.953208px;}
.ws6{word-spacing:-15.840000px;}
.ws20{word-spacing:-15.552000px;}
.ws0{word-spacing:-13.447440px;}
.ws1c{word-spacing:-12.060000px;}
.ws1d{word-spacing:-12.014640px;}
.ws8{word-spacing:-11.418600px;}
.ws18{word-spacing:-11.342880px;}
.ws7{word-spacing:-11.246400px;}
.ws19{word-spacing:-9.396000px;}
.ws21{word-spacing:-0.288000px;}
.ws14{word-spacing:-0.143242px;}
.ws15{word-spacing:-0.071813px;}
.wsf{word-spacing:-0.041937px;}
.ws2{word-spacing:0.000000px;}
.ws1e{word-spacing:0.216000px;}
.ws1f{word-spacing:1.728000px;}
.ws9{word-spacing:4.536000px;}
.ws5{word-spacing:5.256000px;}
.ws4{word-spacing:6.120000px;}
.ws1b{word-spacing:14.432760px;}
.wsa{word-spacing:14.748240px;}
.ws1a{word-spacing:64.526400px;}
.ws11{word-spacing:232.451922px;}
.wsb{word-spacing:318.104929px;}
.wsd{word-spacing:484.482823px;}
.ws10{word-spacing:1317.271291px;}
.ws16{word-spacing:1912.649583px;}
.ws12{word-spacing:2381.323098px;}
._2a{margin-left:-2344.703830px;}
._25{margin-left:-632.450765px;}
._28{margin-left:-561.024931px;}
._26{margin-left:-501.098796px;}
._3c{margin-left:-250.288741px;}
._1f{margin-left:-248.319789px;}
._2b{margin-left:-229.894339px;}
._1b{margin-left:-214.379190px;}
._21{margin-left:-207.301488px;}
._3e{margin-left:-204.672479px;}
._3a{margin-left:-197.926742px;}
._35{margin-left:-195.581500px;}
._27{margin-left:-191.919348px;}
._30{margin-left:-174.743086px;}
._2e{margin-left:-173.432273px;}
._3d{margin-left:-172.128495px;}
._1c{margin-left:-168.105825px;}
._24{margin-left:-164.907543px;}
._29{margin-left:-162.610809px;}
._36{margin-left:-144.519968px;}
._31{margin-left:-138.012873px;}
._1d{margin-left:-136.701404px;}
._39{margin-left:-131.845765px;}
._20{margin-left:-129.505739px;}
._23{margin-left:-128.249447px;}
._3b{margin-left:-124.271852px;}
._33{margin-left:-116.957811px;}
._1e{margin-left:-115.232372px;}
._38{margin-left:-96.349623px;}
._34{margin-left:-89.886044px;}
._2d{margin-left:-87.670394px;}
._22{margin-left:-86.567676px;}
._2f{margin-left:-83.112803px;}
._3f{margin-left:-78.014456px;}
._2c{margin-left:-52.435470px;}
._37{margin-left:-50.561223px;}
._32{margin-left:-46.879052px;}
._d{margin-left:-8.232000px;}
._1{margin-left:-6.696000px;}
._4{margin-left:-5.256000px;}
._5{margin-left:-3.744000px;}
._2{margin-left:-2.376000px;}
._3{margin-left:-1.040400px;}
._0{width:1.544400px;}
._c{width:2.592000px;}
._7{width:4.164000px;}
._6{width:5.304000px;}
._f{width:6.351600px;}
._13{width:7.672800px;}
._11{width:8.688000px;}
._10{width:10.584000px;}
._19{width:11.748000px;}
._e{width:12.960000px;}
._12{width:14.432400px;}
._46{width:16.464000px;}
._40{width:18.348000px;}
._42{width:19.395600px;}
._41{width:20.415600px;}
._1a{width:21.756000px;}
._8{width:23.184000px;}
._9{width:24.280800px;}
._43{width:27.984000px;}
._14{width:39.240000px;}
._a{width:43.776000px;}
._b{width:44.936400px;}
._16{width:47.880000px;}
._15{width:49.104000px;}
._44{width:50.304000px;}
._45{width:51.840000px;}
._17{width:2385.985920px;}
._18{width:2481.432000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:2.880000px;}
.fsf{font-size:41.760000px;}
.fsa{font-size:41.936568px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fse{font-size:71.812834px;}
.fs8{font-size:71.891765px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fsc{font-size:95.083380px;}
.fsd{font-size:98.507255px;}
.fs9{font-size:107.834698px;}
.fsb{font-size:114.085893px;}
.fs7{font-size:132.087626px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.060000px;}
.y31{bottom:3.240000px;}
.y90{bottom:4.129626px;}
.y87{bottom:4.232632px;}
.y6f{bottom:5.726452px;}
.y72{bottom:5.726468px;}
.y36{bottom:7.020000px;}
.y7e{bottom:8.571986px;}
.y81{bottom:8.571991px;}
.y83{bottom:8.571995px;}
.y6e{bottom:8.785346px;}
.y71{bottom:8.785363px;}
.y32{bottom:10.080000px;}
.y7f{bottom:11.061717px;}
.y8b{bottom:11.061722px;}
.y84{bottom:11.061726px;}
.y7d{bottom:11.275224px;}
.y80{bottom:11.275229px;}
.y82{bottom:11.275234px;}
.y85{bottom:11.275238px;}
.y76{bottom:12.093290px;}
.y78{bottom:12.093295px;}
.y7a{bottom:12.093299px;}
.y7c{bottom:12.093304px;}
.y77{bottom:12.342192px;}
.y79{bottom:12.342197px;}
.y7b{bottom:12.342201px;}
.y88{bottom:14.867603px;}
.y75{bottom:17.925776px;}
.y8f{bottom:18.013718px;}
.y92{bottom:18.013736px;}
.y6d{bottom:18.033404px;}
.y8e{bottom:18.049154px;}
.y8d{bottom:18.119984px;}
.y70{bottom:24.008158px;}
.y73{bottom:24.008174px;}
.y86{bottom:24.506563px;}
.y91{bottom:29.156088px;}
.y35{bottom:30.780000px;}
.y89{bottom:30.802770px;}
.y8a{bottom:31.050475px;}
.y74{bottom:33.896316px;}
.y34{bottom:54.540000px;}
.y7{bottom:57.636000px;}
.y69{bottom:91.116000px;}
.y68{bottom:114.876000px;}
.yb8{bottom:119.376000px;}
.y67{bottom:134.856000px;}
.yb7{bottom:143.136000px;}
.y66{bottom:143.856000px;}
.yb6{bottom:166.890000px;}
.y65{bottom:172.470000px;}
.y8c{bottom:185.189980px;}
.yb5{bottom:190.650000px;}
.y2f{bottom:194.790000px;}
.y64{bottom:196.230000px;}
.yb4{bottom:214.590000px;}
.y2e{bottom:218.550000px;}
.y63{bottom:219.990000px;}
.yb3{bottom:238.350000px;}
.y2d{bottom:242.310000px;}
.y62{bottom:243.930000px;}
.yb2{bottom:262.110000px;}
.y2c{bottom:266.250000px;}
.y61{bottom:268.230000px;}
.yb1{bottom:285.915000px;}
.y2b{bottom:290.055000px;}
.y5f{bottom:292.575000px;}
.y47{bottom:296.355000px;}
.y60{bottom:299.415000px;}
.yb0{bottom:309.855000px;}
.y2a{bottom:313.815000px;}
.y5e{bottom:318.855000px;}
.y46{bottom:320.115000px;}
.y6c{bottom:331.139980px;}
.yaf{bottom:333.615000px;}
.y29{bottom:337.575000px;}
.y5d{bottom:343.155000px;}
.y45{bottom:343.875000px;}
.yae{bottom:357.375000px;}
.y28{bottom:361.515000px;}
.y5c{bottom:367.455000px;}
.y44{bottom:367.815000px;}
.yad{bottom:381.135000px;}
.y27{bottom:385.275000px;}
.y6b{bottom:386.355000px;}
.y43{bottom:391.575000px;}
.yac{bottom:405.075000px;}
.y26{bottom:409.035000px;}
.y6a{bottom:410.115000px;}
.y42{bottom:415.335000px;}
.y5b{bottom:415.515000px;}
.yab{bottom:428.835000px;}
.y25{bottom:432.795000px;}
.y41{bottom:439.095000px;}
.y5a{bottom:439.275000px;}
.yaa{bottom:452.595000px;}
.y24{bottom:456.735000px;}
.y40{bottom:463.035000px;}
.ya9{bottom:476.355000px;}
.y23{bottom:480.495000px;}
.y59{bottom:481.035000px;}
.y3f{bottom:486.795000px;}
.y58{bottom:488.055000px;}
.ya8{bottom:500.115000px;}
.y22{bottom:504.255000px;}
.y3e{bottom:510.555000px;}
.y57{bottom:511.815000px;}
.ya7{bottom:524.055000px;}
.y21{bottom:528.015000px;}
.y3d{bottom:534.315000px;}
.y56{bottom:535.575000px;}
.ya6{bottom:547.815000px;}
.y20{bottom:551.775000px;}
.y3c{bottom:558.075000px;}
.y55{bottom:559.515000px;}
.ya5{bottom:571.785000px;}
.y1f{bottom:575.745000px;}
.y3b{bottom:582.045000px;}
.y54{bottom:583.305000px;}
.ya4{bottom:595.905000px;}
.y1e{bottom:599.505000px;}
.y3a{bottom:605.805000px;}
.y53{bottom:607.065000px;}
.ya3{bottom:619.665000px;}
.y1d{bottom:623.265000px;}
.y39{bottom:629.565000px;}
.y52{bottom:630.825000px;}
.ya2{bottom:643.425000px;}
.y1c{bottom:647.025000px;}
.y38{bottom:653.325000px;}
.y51{bottom:654.765000px;}
.ya1{bottom:667.365000px;}
.y1b{bottom:670.965000px;}
.y37{bottom:677.265000px;}
.y50{bottom:679.065000px;}
.ya0{bottom:679.425000px;}
.y33{bottom:694.005000px;}
.y1a{bottom:694.725000px;}
.y4f{bottom:703.185000px;}
.y9f{bottom:715.245000px;}
.y19{bottom:718.485000px;}
.y4e{bottom:726.945000px;}
.y9e{bottom:739.185000px;}
.y18{bottom:742.245000px;}
.y4d{bottom:750.885000px;}
.y9d{bottom:762.945000px;}
.y30{bottom:765.285000px;}
.y17{bottom:766.185000px;}
.y4c{bottom:774.645000px;}
.y9c{bottom:786.705000px;}
.y16{bottom:789.945000px;}
.y4b{bottom:798.405000px;}
.y9b{bottom:810.465000px;}
.y15{bottom:813.705000px;}
.y4a{bottom:815.145000px;}
.y9a{bottom:834.405000px;}
.y14{bottom:837.465000px;}
.y48{bottom:838.905000px;}
.y99{bottom:857.130000px;}
.y13{bottom:861.450000px;}
.y98{bottom:866.130000px;}
.y12{bottom:885.210000px;}
.y97{bottom:894.750000px;}
.y11{bottom:908.970000px;}
.y96{bottom:918.870000px;}
.y10{bottom:932.730000px;}
.y95{bottom:942.630000px;}
.yf{bottom:956.670000px;}
.y94{bottom:965.490000px;}
.y93{bottom:974.490000px;}
.ye{bottom:980.430000px;}
.yd{bottom:1004.190000px;}
.yc{bottom:1027.950000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.hb{height:2.826563px;}
.he{height:23.760000px;}
.h1a{height:41.137971px;}
.h1e{height:41.158448px;}
.h11{height:43.082578px;}
.h1b{height:44.199576px;}
.h1f{height:44.234680px;}
.h20{height:46.350733px;}
.h8{height:50.273438px;}
.h5{height:50.800781px;}
.h15{height:55.273929px;}
.h10{height:60.679688px;}
.hf{height:61.043203px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h24{height:66.518040px;}
.h17{height:66.591151px;}
.h23{height:70.480369px;}
.h1c{height:70.522732px;}
.h7{height:70.664062px;}
.hc{height:71.280000px;}
.h9{height:71.824219px;}
.h6{height:72.562500px;}
.h2a{height:74.004654px;}
.h18{height:83.446925px;}
.h3{height:84.898125px;}
.h12{height:85.538578px;}
.h26{height:85.562578px;}
.h21{height:88.072837px;}
.h25{height:88.442578px;}
.h22{height:91.244269px;}
.h1d{height:105.674287px;}
.h19{height:105.781206px;}
.h13{height:106.664062px;}
.h27{height:115.399688px;}
.h29{height:120.064219px;}
.h16{height:122.348744px;}
.h28{height:163.639688px;}
.hd{height:301.035000px;}
.ha{height:374.655000px;}
.h14{height:392.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:357.375000px;}
.w3{width:360.615000px;}
.w7{width:376.455000px;}
.w8{width:571.949164px;}
.w9{width:615.079011px;}
.w5{width:717.990000px;}
.w6{width:720.870000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:3.362933px;}
.x21{left:19.105211px;}
.xf{left:46.656000px;}
.x3d{left:54.140535px;}
.x3c{left:59.539908px;}
.x32{left:62.158023px;}
.x20{left:63.562301px;}
.x35{left:69.032721px;}
.x3a{left:70.523682px;}
.x1c{left:80.490000px;}
.xc{left:84.959987px;}
.x37{left:93.385256px;}
.x1f{left:103.178529px;}
.x9{left:104.255987px;}
.x28{left:110.902822px;}
.x19{left:121.535987px;}
.x5{left:130.355987px;}
.x38{left:132.764990px;}
.x31{left:137.472558px;}
.x18{left:141.515987px;}
.x10{left:144.750000px;}
.x1a{left:149.975987px;}
.x27{left:153.920490px;}
.x1d{left:156.315000px;}
.x30{left:168.696735px;}
.x2f{left:215.302264px;}
.x13{left:227.235000px;}
.x26{left:240.622054px;}
.x41{left:260.309987px;}
.x2e{left:267.851908px;}
.x25{left:282.597591px;}
.x36{left:297.893373px;}
.xb{left:315.974987px;}
.x39{left:321.775747px;}
.x2d{left:326.529033px;}
.x8{left:327.674987px;}
.xa{left:339.734987px;}
.xe{left:342.975000px;}
.x3{left:350.534987px;}
.xd{left:352.335000px;}
.x42{left:353.594987px;}
.x24{left:356.096803px;}
.x11{left:358.995000px;}
.x1b{left:368.175000px;}
.x2c{left:383.341937px;}
.x6{left:385.634987px;}
.x23{left:424.140875px;}
.x4{left:429.734987px;}
.x2b{left:440.277085px;}
.x7{left:446.474987px;}
.x34{left:453.586401px;}
.x2{left:457.094987px;}
.x3f{left:461.954987px;}
.x2a{left:469.921257px;}
.x14{left:476.024987px;}
.x22{left:495.241048px;}
.x40{left:506.444987px;}
.x1{left:510.404987px;}
.x3e{left:512.384987px;}
.x29{left:522.134730px;}
.x1e{left:560.534630px;}
.x17{left:570.524987px;}
.x15{left:573.404987px;}
.x3b{left:579.863043px;}
.x12{left:712.590000px;}
.x16{left:808.169987px;}
@media print{
.vd{vertical-align:-39.617255pt;}
.v6{vertical-align:-24.320000pt;}
.vc{vertical-align:-23.398361pt;}
.v9{vertical-align:-21.626314pt;}
.va{vertical-align:-19.852694pt;}
.v5{vertical-align:-14.080000pt;}
.v3{vertical-align:-12.800000pt;}
.v11{vertical-align:-9.600000pt;}
.v2{vertical-align:-5.120000pt;}
.vb{vertical-align:-3.667823pt;}
.vf{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.800000pt;}
.v1{vertical-align:24.320000pt;}
.v10{vertical-align:28.160000pt;}
.v8{vertical-align:32.000000pt;}
.v7{vertical-align:37.738667pt;}
.ve{vertical-align:40.320000pt;}
.v14{vertical-align:42.880000pt;}
.v13{vertical-align:48.640000pt;}
.v12{vertical-align:50.560000pt;}
.v15{vertical-align:91.520000pt;}
.ls2b{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.265067pt;}
.ls28{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.233067pt;}
.ls4{letter-spacing:-0.051840pt;}
.ls27{letter-spacing:-0.040320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.063493pt;}
.ls29{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.085760pt;}
.ls5{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.153067pt;}
.ls25{letter-spacing:0.185600pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.342400pt;}
.ls7{letter-spacing:0.640000pt;}
.ls16{letter-spacing:0.901752pt;}
.ls8{letter-spacing:1.920000pt;}
.ls1c{letter-spacing:2.105600pt;}
.lse{letter-spacing:2.490240pt;}
.ls9{letter-spacing:3.482240pt;}
.lsf{letter-spacing:3.501440pt;}
.lsa{letter-spacing:3.774080pt;}
.lsc{letter-spacing:3.932800pt;}
.lsb{letter-spacing:4.141440pt;}
.ls0{letter-spacing:4.480000pt;}
.ls21{letter-spacing:14.272000pt;}
.lsd{letter-spacing:17.103360pt;}
.ls23{letter-spacing:17.472000pt;}
.ls22{letter-spacing:17.578667pt;}
.ls1f{letter-spacing:17.687040pt;}
.ls18{letter-spacing:18.112000pt;}
.ls17{letter-spacing:21.633707pt;}
.ls20{letter-spacing:37.952000pt;}
.ls1{letter-spacing:39.680000pt;}
.ls1b{letter-spacing:50.112000pt;}
.ls1e{letter-spacing:58.432000pt;}
.ls2a{letter-spacing:91.008000pt;}
.ls24{letter-spacing:123.008000pt;}
.ls12{letter-spacing:1432.014600pt;}
.ls10{letter-spacing:1448.026791pt;}
.ls11{letter-spacing:1747.486043pt;}
.ls13{letter-spacing:1844.907793pt;}
.wse{word-spacing:-55.673916pt;}
.wsc{word-spacing:-35.083181pt;}
.ws17{word-spacing:-35.044663pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.958407pt;}
.ws6{word-spacing:-14.080000pt;}
.ws20{word-spacing:-13.824000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws1c{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.679680pt;}
.ws8{word-spacing:-10.149867pt;}
.ws18{word-spacing:-10.082560pt;}
.ws7{word-spacing:-9.996800pt;}
.ws19{word-spacing:-8.352000pt;}
.ws21{word-spacing:-0.256000pt;}
.ws14{word-spacing:-0.127326pt;}
.ws15{word-spacing:-0.063834pt;}
.wsf{word-spacing:-0.037277pt;}
.ws2{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws1f{word-spacing:1.536000pt;}
.ws9{word-spacing:4.032000pt;}
.ws5{word-spacing:4.672000pt;}
.ws4{word-spacing:5.440000pt;}
.ws1b{word-spacing:12.829120pt;}
.wsa{word-spacing:13.109547pt;}
.ws1a{word-spacing:57.356800pt;}
.ws11{word-spacing:206.623930pt;}
.wsb{word-spacing:282.759937pt;}
.wsd{word-spacing:430.651398pt;}
.ws10{word-spacing:1170.907814pt;}
.ws16{word-spacing:1700.132963pt;}
.ws12{word-spacing:2116.731642pt;}
._2a{margin-left:-2084.181182pt;}
._25{margin-left:-562.178458pt;}
._28{margin-left:-498.688828pt;}
._26{margin-left:-445.421152pt;}
._3c{margin-left:-222.478881pt;}
._1f{margin-left:-220.728701pt;}
._2b{margin-left:-204.350523pt;}
._1b{margin-left:-190.559280pt;}
._21{margin-left:-184.267989pt;}
._3e{margin-left:-181.931093pt;}
._3a{margin-left:-175.934881pt;}
._35{margin-left:-173.850222pt;}
._27{margin-left:-170.594976pt;}
._30{margin-left:-155.327188pt;}
._2e{margin-left:-154.162021pt;}
._3d{margin-left:-153.003106pt;}
._1c{margin-left:-149.427400pt;}
._24{margin-left:-146.584483pt;}
._29{margin-left:-144.542941pt;}
._36{margin-left:-128.462194pt;}
._31{margin-left:-122.678109pt;}
._1d{margin-left:-121.512359pt;}
._39{margin-left:-117.196236pt;}
._20{margin-left:-115.116213pt;}
._23{margin-left:-113.999508pt;}
._3b{margin-left:-110.463868pt;}
._33{margin-left:-103.962498pt;}
._1e{margin-left:-102.428775pt;}
._38{margin-left:-85.644109pt;}
._34{margin-left:-79.898705pt;}
._2d{margin-left:-77.929239pt;}
._22{margin-left:-76.949046pt;}
._2f{margin-left:-73.878047pt;}
._3f{margin-left:-69.346183pt;}
._2c{margin-left:-46.609307pt;}
._37{margin-left:-44.943310pt;}
._32{margin-left:-41.670268pt;}
._d{margin-left:-7.317333pt;}
._1{margin-left:-5.952000pt;}
._4{margin-left:-4.672000pt;}
._5{margin-left:-3.328000pt;}
._2{margin-left:-2.112000pt;}
._3{margin-left:-0.924800pt;}
._0{width:1.372800pt;}
._c{width:2.304000pt;}
._7{width:3.701333pt;}
._6{width:4.714667pt;}
._f{width:5.645867pt;}
._13{width:6.820267pt;}
._11{width:7.722667pt;}
._10{width:9.408000pt;}
._19{width:10.442667pt;}
._e{width:11.520000pt;}
._12{width:12.828800pt;}
._46{width:14.634667pt;}
._40{width:16.309333pt;}
._42{width:17.240533pt;}
._41{width:18.147200pt;}
._1a{width:19.338667pt;}
._8{width:20.608000pt;}
._9{width:21.582933pt;}
._43{width:24.874667pt;}
._14{width:34.880000pt;}
._a{width:38.912000pt;}
._b{width:39.943467pt;}
._16{width:42.560000pt;}
._15{width:43.648000pt;}
._44{width:44.714667pt;}
._45{width:46.080000pt;}
._17{width:2120.876373pt;}
._18{width:2205.717333pt;}
.fs4{font-size:2.560000pt;}
.fsf{font-size:37.120000pt;}
.fsa{font-size:37.276949pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fse{font-size:63.833630pt;}
.fs8{font-size:63.903791pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fsc{font-size:84.518560pt;}
.fsd{font-size:87.562004pt;}
.fs9{font-size:95.853065pt;}
.fsb{font-size:101.409683pt;}
.fs7{font-size:117.411223pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.720000pt;}
.y31{bottom:2.880000pt;}
.y90{bottom:3.670778pt;}
.y87{bottom:3.762339pt;}
.y6f{bottom:5.090179pt;}
.y72{bottom:5.090194pt;}
.y36{bottom:6.240000pt;}
.y7e{bottom:7.619543pt;}
.y81{bottom:7.619548pt;}
.y83{bottom:7.619551pt;}
.y6e{bottom:7.809197pt;}
.y71{bottom:7.809211pt;}
.y32{bottom:8.960000pt;}
.y7f{bottom:9.832637pt;}
.y8b{bottom:9.832642pt;}
.y84{bottom:9.832646pt;}
.y7d{bottom:10.022422pt;}
.y80{bottom:10.022426pt;}
.y82{bottom:10.022430pt;}
.y85{bottom:10.022434pt;}
.y76{bottom:10.749591pt;}
.y78{bottom:10.749595pt;}
.y7a{bottom:10.749599pt;}
.y7c{bottom:10.749603pt;}
.y77{bottom:10.970837pt;}
.y79{bottom:10.970841pt;}
.y7b{bottom:10.970846pt;}
.y88{bottom:13.215647pt;}
.y75{bottom:15.934023pt;}
.y8f{bottom:16.012194pt;}
.y92{bottom:16.012210pt;}
.y6d{bottom:16.029693pt;}
.y8e{bottom:16.043692pt;}
.y8d{bottom:16.106653pt;}
.y70{bottom:21.340585pt;}
.y73{bottom:21.340599pt;}
.y86{bottom:21.783611pt;}
.y91{bottom:25.916523pt;}
.y35{bottom:27.360000pt;}
.y89{bottom:27.380240pt;}
.y8a{bottom:27.600422pt;}
.y74{bottom:30.130058pt;}
.y34{bottom:48.480000pt;}
.y7{bottom:51.232000pt;}
.y69{bottom:80.992000pt;}
.y68{bottom:102.112000pt;}
.yb8{bottom:106.112000pt;}
.y67{bottom:119.872000pt;}
.yb7{bottom:127.232000pt;}
.y66{bottom:127.872000pt;}
.yb6{bottom:148.346667pt;}
.y65{bottom:153.306667pt;}
.y8c{bottom:164.613315pt;}
.yb5{bottom:169.466667pt;}
.y2f{bottom:173.146667pt;}
.y64{bottom:174.426667pt;}
.yb4{bottom:190.746667pt;}
.y2e{bottom:194.266667pt;}
.y63{bottom:195.546667pt;}
.yb3{bottom:211.866667pt;}
.y2d{bottom:215.386667pt;}
.y62{bottom:216.826667pt;}
.yb2{bottom:232.986667pt;}
.y2c{bottom:236.666667pt;}
.y61{bottom:238.426667pt;}
.yb1{bottom:254.146667pt;}
.y2b{bottom:257.826667pt;}
.y5f{bottom:260.066667pt;}
.y47{bottom:263.426667pt;}
.y60{bottom:266.146667pt;}
.yb0{bottom:275.426667pt;}
.y2a{bottom:278.946667pt;}
.y5e{bottom:283.426667pt;}
.y46{bottom:284.546667pt;}
.y6c{bottom:294.346649pt;}
.yaf{bottom:296.546667pt;}
.y29{bottom:300.066667pt;}
.y5d{bottom:305.026667pt;}
.y45{bottom:305.666667pt;}
.yae{bottom:317.666667pt;}
.y28{bottom:321.346667pt;}
.y5c{bottom:326.626667pt;}
.y44{bottom:326.946667pt;}
.yad{bottom:338.786667pt;}
.y27{bottom:342.466667pt;}
.y6b{bottom:343.426667pt;}
.y43{bottom:348.066667pt;}
.yac{bottom:360.066667pt;}
.y26{bottom:363.586667pt;}
.y6a{bottom:364.546667pt;}
.y42{bottom:369.186667pt;}
.y5b{bottom:369.346667pt;}
.yab{bottom:381.186667pt;}
.y25{bottom:384.706667pt;}
.y41{bottom:390.306667pt;}
.y5a{bottom:390.466667pt;}
.yaa{bottom:402.306667pt;}
.y24{bottom:405.986667pt;}
.y40{bottom:411.586667pt;}
.ya9{bottom:423.426667pt;}
.y23{bottom:427.106667pt;}
.y59{bottom:427.586667pt;}
.y3f{bottom:432.706667pt;}
.y58{bottom:433.826667pt;}
.ya8{bottom:444.546667pt;}
.y22{bottom:448.226667pt;}
.y3e{bottom:453.826667pt;}
.y57{bottom:454.946667pt;}
.ya7{bottom:465.826667pt;}
.y21{bottom:469.346667pt;}
.y3d{bottom:474.946667pt;}
.y56{bottom:476.066667pt;}
.ya6{bottom:486.946667pt;}
.y20{bottom:490.466667pt;}
.y3c{bottom:496.066667pt;}
.y55{bottom:497.346667pt;}
.ya5{bottom:508.253333pt;}
.y1f{bottom:511.773333pt;}
.y3b{bottom:517.373333pt;}
.y54{bottom:518.493333pt;}
.ya4{bottom:529.693333pt;}
.y1e{bottom:532.893333pt;}
.y3a{bottom:538.493333pt;}
.y53{bottom:539.613333pt;}
.ya3{bottom:550.813333pt;}
.y1d{bottom:554.013333pt;}
.y39{bottom:559.613333pt;}
.y52{bottom:560.733333pt;}
.ya2{bottom:571.933333pt;}
.y1c{bottom:575.133333pt;}
.y38{bottom:580.733333pt;}
.y51{bottom:582.013333pt;}
.ya1{bottom:593.213333pt;}
.y1b{bottom:596.413333pt;}
.y37{bottom:602.013333pt;}
.y50{bottom:603.613333pt;}
.ya0{bottom:603.933333pt;}
.y33{bottom:616.893333pt;}
.y1a{bottom:617.533333pt;}
.y4f{bottom:625.053333pt;}
.y9f{bottom:635.773333pt;}
.y19{bottom:638.653333pt;}
.y4e{bottom:646.173333pt;}
.y9e{bottom:657.053333pt;}
.y18{bottom:659.773333pt;}
.y4d{bottom:667.453333pt;}
.y9d{bottom:678.173333pt;}
.y30{bottom:680.253333pt;}
.y17{bottom:681.053333pt;}
.y4c{bottom:688.573333pt;}
.y9c{bottom:699.293333pt;}
.y16{bottom:702.173333pt;}
.y4b{bottom:709.693333pt;}
.y9b{bottom:720.413333pt;}
.y15{bottom:723.293333pt;}
.y4a{bottom:724.573333pt;}
.y9a{bottom:741.693333pt;}
.y14{bottom:744.413333pt;}
.y48{bottom:745.693333pt;}
.y99{bottom:761.893333pt;}
.y13{bottom:765.733333pt;}
.y98{bottom:769.893333pt;}
.y12{bottom:786.853333pt;}
.y97{bottom:795.333333pt;}
.y11{bottom:807.973333pt;}
.y96{bottom:816.773333pt;}
.y10{bottom:829.093333pt;}
.y95{bottom:837.893333pt;}
.yf{bottom:850.373333pt;}
.y94{bottom:858.213333pt;}
.y93{bottom:866.213333pt;}
.ye{bottom:871.493333pt;}
.yd{bottom:892.613333pt;}
.yc{bottom:913.733333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.hb{height:2.512500pt;}
.he{height:21.120000pt;}
.h1a{height:36.567086pt;}
.h1e{height:36.585287pt;}
.h11{height:38.295625pt;}
.h1b{height:39.288512pt;}
.h1f{height:39.319715pt;}
.h20{height:41.200651pt;}
.h8{height:44.687500pt;}
.h5{height:45.156250pt;}
.h15{height:49.132381pt;}
.h10{height:53.937500pt;}
.hf{height:54.260625pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h24{height:59.127146pt;}
.h17{height:59.192135pt;}
.h23{height:62.649217pt;}
.h1c{height:62.686873pt;}
.h7{height:62.812500pt;}
.hc{height:63.360000pt;}
.h9{height:63.843750pt;}
.h6{height:64.500000pt;}
.h2a{height:65.781915pt;}
.h18{height:74.175044pt;}
.h3{height:75.465000pt;}
.h12{height:76.034292pt;}
.h26{height:76.055625pt;}
.h21{height:78.286967pt;}
.h25{height:78.615625pt;}
.h22{height:81.106017pt;}
.h1d{height:93.932699pt;}
.h19{height:94.027738pt;}
.h13{height:94.812500pt;}
.h27{height:102.577500pt;}
.h29{height:106.723750pt;}
.h16{height:108.754439pt;}
.h28{height:145.457500pt;}
.hd{height:267.586667pt;}
.ha{height:333.026667pt;}
.h14{height:348.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:317.666667pt;}
.w3{width:320.546667pt;}
.w7{width:334.626667pt;}
.w8{width:508.399257pt;}
.w9{width:546.736899pt;}
.w5{width:638.213333pt;}
.w6{width:640.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:2.989274pt;}
.x21{left:16.982410pt;}
.xf{left:41.472000pt;}
.x3d{left:48.124920pt;}
.x3c{left:52.924363pt;}
.x32{left:55.251576pt;}
.x20{left:56.499823pt;}
.x35{left:61.362419pt;}
.x3a{left:62.687718pt;}
.x1c{left:71.546667pt;}
.xc{left:75.519988pt;}
.x37{left:83.009116pt;}
.x1f{left:91.714248pt;}
.x9{left:92.671988pt;}
.x28{left:98.580287pt;}
.x19{left:108.031988pt;}
.x5{left:115.871988pt;}
.x38{left:118.013324pt;}
.x31{left:122.197829pt;}
.x18{left:125.791988pt;}
.x10{left:128.666667pt;}
.x1a{left:133.311988pt;}
.x27{left:136.818213pt;}
.x1d{left:138.946667pt;}
.x30{left:149.952653pt;}
.x2f{left:191.379790pt;}
.x13{left:201.986667pt;}
.x26{left:213.886270pt;}
.x41{left:231.386655pt;}
.x2e{left:238.090585pt;}
.x25{left:251.197859pt;}
.x36{left:264.794110pt;}
.xb{left:280.866655pt;}
.x39{left:286.022887pt;}
.x2d{left:290.248029pt;}
.x8{left:291.266655pt;}
.xa{left:301.986655pt;}
.xe{left:304.866667pt;}
.x3{left:311.586655pt;}
.xd{left:313.186667pt;}
.x42{left:314.306655pt;}
.x24{left:316.530491pt;}
.x11{left:319.106667pt;}
.x1b{left:327.266667pt;}
.x2c{left:340.748388pt;}
.x6{left:342.786655pt;}
.x23{left:377.014111pt;}
.x4{left:381.986655pt;}
.x2b{left:391.357408pt;}
.x7{left:396.866655pt;}
.x34{left:403.187912pt;}
.x2{left:406.306655pt;}
.x3f{left:410.626655pt;}
.x2a{left:417.707784pt;}
.x14{left:423.133322pt;}
.x22{left:440.214265pt;}
.x40{left:450.173322pt;}
.x1{left:453.693322pt;}
.x3e{left:455.453322pt;}
.x29{left:464.119760pt;}
.x1e{left:498.253004pt;}
.x17{left:507.133322pt;}
.x15{left:509.693322pt;}
.x3b{left:515.433816pt;}
.x12{left:633.413333pt;}
.x16{left:718.373322pt;}
}




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