
    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_c6e77795a38643a6e82eff28.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_7a122d1134f56dda49d7fbe1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100586;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_4a590ef41e88a2214d7eb36d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.102051;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff4{font-family:ff4;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;}
.m1{transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198865,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199219,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202586,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224057,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225695,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m5{transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266667,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-1.566000px;}
.ls19{letter-spacing:-1.211040px;}
.ls32{letter-spacing:-0.662400px;}
.ls27{letter-spacing:-0.648000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls3f{letter-spacing:-0.486000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.378000px;}
.ls18{letter-spacing:-0.334080px;}
.ls1b{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.264960px;}
.ls17{letter-spacing:-0.250560px;}
.ls1a{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.198720px;}
.ls33{letter-spacing:-0.162000px;}
.ls1d{letter-spacing:-0.066240px;}
.ls16{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.011400px;}
.ls13{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.066240px;}
.ls21{letter-spacing:0.108000px;}
.ls31{letter-spacing:0.126480px;}
.ls2f{letter-spacing:0.201480px;}
.ls30{letter-spacing:0.230400px;}
.ls26{letter-spacing:0.264960px;}
.ls25{letter-spacing:0.331200px;}
.ls15{letter-spacing:0.400440px;}
.ls12{letter-spacing:0.452160px;}
.ls11{letter-spacing:0.794880px;}
.ls24{letter-spacing:0.927360px;}
.ls2b{letter-spacing:26.628480px;}
.ls38{letter-spacing:30.205440px;}
.lsf{letter-spacing:45.308160px;}
.ls28{letter-spacing:124.464960px;}
.lsd{letter-spacing:133.937280px;}
.ls37{letter-spacing:141.819840px;}
.ls36{letter-spacing:158.446080px;}
.ls2{letter-spacing:167.289000px;}
.ls2a{letter-spacing:186.399360px;}
.ls34{letter-spacing:191.499840px;}
.ls29{letter-spacing:195.076800px;}
.ls5{letter-spacing:212.232960px;}
.ls4{letter-spacing:212.365440px;}
.ls7{letter-spacing:230.515200px;}
.ls0{letter-spacing:232.740000px;}
.ls10{letter-spacing:240.517440px;}
.ls39{letter-spacing:241.776000px;}
.ls1{letter-spacing:242.180640px;}
.ls2c{letter-spacing:253.235520px;}
.lsb{letter-spacing:285.096960px;}
.lsa{letter-spacing:357.762240px;}
.ls3c{letter-spacing:358.623360px;}
.ls2d{letter-spacing:432.613440px;}
.lse{letter-spacing:455.797440px;}
.ls3a{letter-spacing:460.897920px;}
.ls35{letter-spacing:477.325440px;}
.ls8{letter-spacing:579.600000px;}
.ls3{letter-spacing:692.472960px;}
.ls6{letter-spacing:710.622720px;}
.ls3d{letter-spacing:847.408320px;}
.ls2e{letter-spacing:1024.600320px;}
.ls3b{letter-spacing:1215.702720px;}
.ls9{letter-spacing:1506.430080px;}
.lsc{letter-spacing:1888.436160px;}
.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;}
}
.ws0{word-spacing:-16.824960px;}
.ws22{word-spacing:-16.626240px;}
.ws37{word-spacing:-16.560000px;}
.ws36{word-spacing:-16.361280px;}
.ws23{word-spacing:-16.295040px;}
.ws24{word-spacing:-13.338000px;}
.ws2f{word-spacing:-3.510720px;}
.ws3d{word-spacing:-3.378240px;}
.wse{word-spacing:-2.914560px;}
.wsf{word-spacing:-2.782080px;}
.ws38{word-spacing:-2.649600px;}
.ws2b{word-spacing:-2.252160px;}
.ws25{word-spacing:-2.119680px;}
.ws34{word-spacing:-1.920960px;}
.ws1e{word-spacing:-1.788480px;}
.ws8{word-spacing:-1.523520px;}
.ws1f{word-spacing:-1.391040px;}
.ws6{word-spacing:-1.258560px;}
.ws21{word-spacing:-1.192320px;}
.ws28{word-spacing:-1.126080px;}
.ws7{word-spacing:-0.794880px;}
.ws1c{word-spacing:-0.662400px;}
.ws1a{word-spacing:-0.596160px;}
.ws3a{word-spacing:-0.529920px;}
.ws2e{word-spacing:-0.463680px;}
.ws19{word-spacing:-0.270000px;}
.ws5{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.066240px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:0.066240px;}
.ws3f{word-spacing:0.162000px;}
.ws2d{word-spacing:0.198720px;}
.ws35{word-spacing:0.662400px;}
.ws9{word-spacing:0.794880px;}
.ws3e{word-spacing:0.927360px;}
.ws3{word-spacing:1.188000px;}
.ws2{word-spacing:1.296000px;}
.ws1b{word-spacing:1.391040px;}
.ws16{word-spacing:1.523520px;}
.ws2a{word-spacing:1.656000px;}
.ws10{word-spacing:2.119680px;}
.ws11{word-spacing:2.252160px;}
.ws27{word-spacing:2.384640px;}
.ws13{word-spacing:2.848320px;}
.ws33{word-spacing:2.980800px;}
.ws14{word-spacing:3.113280px;}
.ws3c{word-spacing:3.179520px;}
.wsc{word-spacing:3.510720px;}
.ws4{word-spacing:3.643200px;}
.ws31{word-spacing:4.371840px;}
.ws15{word-spacing:4.504320px;}
.ws29{word-spacing:4.769280px;}
.wsb{word-spacing:5.100480px;}
.ws2c{word-spacing:5.232960px;}
.ws17{word-spacing:5.829120px;}
.ws30{word-spacing:5.961600px;}
.ws20{word-spacing:6.027840px;}
.wsa{word-spacing:6.425280px;}
.ws3b{word-spacing:6.557760px;}
.wsd{word-spacing:6.690240px;}
.ws1d{word-spacing:6.822720px;}
.ws18{word-spacing:7.286400px;}
.ws39{word-spacing:7.882560px;}
.ws32{word-spacing:15.036480px;}
._44{margin-left:-21.504600px;}
._45{margin-left:-16.624800px;}
._46{margin-left:-11.491200px;}
._48{margin-left:-2.294208px;}
._2{margin-left:-1.127520px;}
._6{width:1.344600px;}
._5{width:2.614176px;}
._49{width:3.894912px;}
._47{width:6.953064px;}
._94{width:18.711912px;}
._54{width:27.324000px;}
._6d{width:35.729856px;}
._36{width:38.121120px;}
._55{width:41.724576px;}
._56{width:48.898368px;}
._10{width:51.812928px;}
._80{width:53.978976px;}
._23{width:55.449504px;}
._33{width:58.284576px;}
._31{width:60.444000px;}
._77{width:63.100224px;}
._2e{width:66.922272px;}
._1a{width:72.671904px;}
._14{width:74.897568px;}
._38{width:76.997376px;}
._16{width:78.461280px;}
._2c{width:79.885440px;}
._51{width:89.245152px;}
._2a{width:92.119968px;}
._73{width:93.570624px;}
._5b{width:100.976256px;}
._42{width:103.619232px;}
._30{width:105.083136px;}
._4e{width:108.030816px;}
._3f{width:110.859264px;}
._67{width:113.694336px;}
._2d{width:116.602272px;}
._75{width:120.192480px;}
._12{width:125.220096px;}
._37{width:128.141280px;}
._43{width:130.313952px;}
._3b{width:137.487744px;}
._6c{width:143.250624px;}
._1d{width:145.410048px;}
._3e{width:146.887200px;}
._60{width:149.788512px;}
._8e{width:151.166304px;}
._11{width:154.769760px;}
._63{width:162.023040px;}
._69{width:167.024160px;}
._39{width:169.905600px;}
._5e{width:172.091520px;}
._7f{width:175.648608px;}
._18{width:177.821280px;}
._71{width:181.391616px;}
._50{width:191.446848px;}
._3a{width:195.116544px;}
._2f{width:200.846304px;}
._29{width:202.290336px;}
._9{width:204.436512px;}
._7c{width:207.404064px;}
._83{width:210.974400px;}
._72{width:216.618048px;}
._22{width:221.784768px;}
._27{width:224.593344px;}
._87{width:229.667328px;}
._57{width:231.840000px;}
._19{width:245.511936px;}
._28{width:250.532928px;}
._25{width:253.401120px;}
._17{width:257.044320px;}
._26{width:258.461856px;}
._53{width:262.058688px;}
._1c{width:267.046560px;}
._84{width:269.272224px;}
._76{width:271.358784px;}
._68{width:272.835936px;}
._86{width:274.412448px;}
._92{width:275.697504px;}
._8c{width:282.944160px;}
._7{width:284.341824px;}
._32{width:286.527744px;}
._74{width:287.905536px;}
._1f{width:290.813472px;}
._93{width:293.012640px;}
._7b{width:308.174976px;}
._7e{width:309.592512px;}
._85{width:311.122656px;}
._e{width:312.467328px;}
._52{width:316.037664px;}
._5f{width:321.118272px;}
._6a{width:328.305312px;}
._1e{width:344.136672px;}
._13{width:345.580704px;}
._2b{width:354.211776px;}
._40{width:355.715424px;}
._8d{width:357.941088px;}
._15{width:366.419808px;}
._4b{width:374.322240px;}
._a{width:388.033920px;}
._79{width:399.301344px;}
._81{width:415.417536px;}
._89{width:426.320640px;}
._6f{width:429.831360px;}
._1b{width:436.289760px;}
._41{width:453.611520px;}
._4f{width:463.680000px;}
._88{width:467.323200px;}
._8{width:499.608576px;}
._35{width:527.071680px;}
._91{width:529.125120px;}
._c{width:589.734720px;}
._4d{width:602.519040px;}
._5a{width:653.788800px;}
._61{width:667.427616px;}
._59{width:729.103680px;}
._21{width:734.402880px;}
._65{width:740.165760px;}
._f{width:744.524352px;}
._8f{width:748.836576px;}
._4a{width:792.561600px;}
._58{width:816.341760px;}
._5c{width:851.978880px;}
._3{width:913.750560px;}
._82{width:938.289600px;}
._4{width:995.516640px;}
._90{width:1022.189184px;}
._6b{width:1040.365440px;}
._b{width:1050.367680px;}
._d{width:1059.177600px;}
._8a{width:1064.808000px;}
._4c{width:1067.523840px;}
._78{width:1076.400000px;}
._62{width:1123.894080px;}
._0{width:1141.551360px;}
._7d{width:1146.945600px;}
._64{width:1161.915840px;}
._1{width:1193.876640px;}
._66{width:1330.894080px;}
._8b{width:1442.905920px;}
._24{width:1451.497248px;}
._6e{width:1453.703040px;}
._20{width:1485.498240px;}
._70{width:1502.654400px;}
._5d{width:1507.754880px;}
._3d{width:1521.559296px;}
._3c{width:1589.760000px;}
._7a{width:1780.862400px;}
._34{width:1798.680960px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(23,54,93);}
.fc0{color:transparent;}
.fs0{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:65.700000px;}
.y47{bottom:65.700660px;}
.yc4{bottom:65.702880px;}
.y8f{bottom:65.705100px;}
.y46{bottom:99.748020px;}
.y25{bottom:99.752400px;}
.y6d{bottom:100.630080px;}
.y8e{bottom:100.630140px;}
.y45{bottom:120.265860px;}
.y24{bottom:120.270240px;}
.y6c{bottom:121.147920px;}
.y8d{bottom:121.147980px;}
.y44{bottom:140.783700px;}
.y23{bottom:140.788080px;}
.y6b{bottom:141.665760px;}
.y8c{bottom:141.665820px;}
.y43{bottom:161.301540px;}
.y22{bottom:161.305920px;}
.y6a{bottom:162.365760px;}
.y8b{bottom:162.365820px;}
.y42{bottom:181.637220px;}
.y21{bottom:181.641600px;}
.y69{bottom:182.883600px;}
.y8a{bottom:182.883660px;}
.y41{bottom:202.155060px;}
.y20{bottom:202.159440px;}
.y68{bottom:203.401440px;}
.y89{bottom:203.401500px;}
.ya9{bottom:212.951520px;}
.y40{bottom:222.672900px;}
.y1f{bottom:222.677280px;}
.ya8{bottom:231.316560px;}
.y67{bottom:237.780000px;}
.y66{bottom:237.782160px;}
.y3f{bottom:243.190740px;}
.y1e{bottom:243.195120px;}
.y65{bottom:258.300000px;}
.y64{bottom:258.315120px;}
.y88{bottom:258.319440px;}
.y3e{bottom:263.526420px;}
.y1d{bottom:263.530800px;}
.ya7{bottom:265.330800px;}
.y63{bottom:278.832960px;}
.y87{bottom:278.837280px;}
.y3d{bottom:284.044260px;}
.y1c{bottom:284.048640px;}
.ya6{bottom:299.162880px;}
.yc3{bottom:299.165760px;}
.y62{bottom:299.350800px;}
.y86{bottom:299.355120px;}
.y3c{bottom:304.562100px;}
.y1b{bottom:304.566480px;}
.ya5{bottom:319.680720px;}
.yc2{bottom:319.683600px;}
.y61{bottom:319.868640px;}
.y85{bottom:319.872960px;}
.y1a{bottom:325.084320px;}
.y60{bottom:340.568640px;}
.y84{bottom:340.572960px;}
.y19{bottom:345.420000px;}
.y18{bottom:345.425040px;}
.y3b{bottom:345.427920px;}
.ya4{bottom:354.059280px;}
.yc1{bottom:354.062160px;}
.y5f{bottom:361.086480px;}
.y83{bottom:361.090800px;}
.yc0{bottom:374.626770px;}
.ya3{bottom:374.626800px;}
.y17{bottom:379.439280px;}
.y3a{bottom:379.442160px;}
.y5e{bottom:381.604320px;}
.y82{bottom:381.608640px;}
.ybf{bottom:395.144610px;}
.ya2{bottom:395.144640px;}
.y39{bottom:399.960000px;}
.y16{bottom:399.973680px;}
.y38{bottom:399.979440px;}
.y5d{bottom:402.122160px;}
.y81{bottom:402.126480px;}
.ybe{bottom:415.662450px;}
.ya1{bottom:415.662480px;}
.y15{bottom:420.491520px;}
.y37{bottom:420.497280px;}
.y5c{bottom:422.640000px;}
.y80{bottom:422.644320px;}
.ybd{bottom:436.362450px;}
.y14{bottom:440.827200px;}
.y36{bottom:440.832960px;}
.y5b{bottom:443.157840px;}
.y7f{bottom:443.162160px;}
.ybc{bottom:456.880290px;}
.ya0{bottom:456.880320px;}
.y13{bottom:461.345040px;}
.y35{bottom:461.350800px;}
.y5a{bottom:463.857840px;}
.y7e{bottom:463.862160px;}
.ybb{bottom:477.398130px;}
.y9f{bottom:477.398160px;}
.y12{bottom:481.862880px;}
.y34{bottom:481.868640px;}
.y59{bottom:484.392240px;}
.y7d{bottom:484.392300px;}
.yba{bottom:497.915970px;}
.y9e{bottom:497.916000px;}
.y11{bottom:502.380720px;}
.y33{bottom:502.386480px;}
.y7c{bottom:504.910140px;}
.yb9{bottom:518.433810px;}
.y9d{bottom:518.433840px;}
.y10{bottom:522.716400px;}
.y32{bottom:522.722160px;}
.y58{bottom:525.427920px;}
.y7b{bottom:525.427980px;}
.yb8{bottom:538.951650px;}
.y9c{bottom:538.951680px;}
.y31{bottom:543.240000px;}
.yf{bottom:543.250800px;}
.y30{bottom:543.252960px;}
.y57{bottom:545.945760px;}
.y7a{bottom:545.945820px;}
.yb7{bottom:559.651650px;}
.ye{bottom:563.768640px;}
.y2f{bottom:563.770800px;}
.y56{bottom:566.463600px;}
.y79{bottom:566.463660px;}
.yb6{bottom:580.169490px;}
.y9b{bottom:580.169520px;}
.yd{bottom:584.286480px;}
.y2e{bottom:584.288640px;}
.y55{bottom:587.163600px;}
.y78{bottom:587.163660px;}
.yb5{bottom:600.687330px;}
.y9a{bottom:600.687360px;}
.yc{bottom:604.622160px;}
.y2d{bottom:604.624320px;}
.y54{bottom:607.681440px;}
.y77{bottom:607.681500px;}
.yb4{bottom:621.205170px;}
.y99{bottom:621.205200px;}
.yb{bottom:625.140000px;}
.y2c{bottom:625.142160px;}
.yb3{bottom:641.723010px;}
.y98{bottom:641.723040px;}
.y53{bottom:642.060000px;}
.y52{bottom:642.064320px;}
.y2b{bottom:645.660000px;}
.ya{bottom:645.674400px;}
.yb2{bottom:662.240850px;}
.y97{bottom:662.240880px;}
.y51{bottom:662.582160px;}
.y9{bottom:679.688640px;}
.yb1{bottom:682.940850px;}
.y96{bottom:682.940880px;}
.y50{bottom:683.100000px;}
.y76{bottom:683.123010px;}
.y4f{bottom:683.123040px;}
.y8{bottom:700.024320px;}
.yb0{bottom:703.458690px;}
.y95{bottom:703.458720px;}
.y75{bottom:703.640850px;}
.y4e{bottom:703.640880px;}
.y7{bottom:720.542160px;}
.y74{bottom:724.158690px;}
.yaf{bottom:737.837250px;}
.y94{bottom:737.837280px;}
.y2a{bottom:741.062160px;}
.y6{bottom:741.066480px;}
.y73{bottom:744.676530px;}
.y4d{bottom:744.676560px;}
.yae{bottom:758.355090px;}
.y93{bottom:758.355120px;}
.y29{bottom:761.580000px;}
.y72{bottom:765.376530px;}
.y4c{bottom:765.376560px;}
.yad{bottom:778.872930px;}
.y92{bottom:778.872960px;}
.y71{bottom:785.894370px;}
.y4b{bottom:785.894400px;}
.y28{bottom:799.380000px;}
.yac{bottom:799.390770px;}
.y91{bottom:799.390800px;}
.yab{bottom:819.908610px;}
.y90{bottom:819.908640px;}
.y70{bottom:820.090770px;}
.y4a{bottom:820.090800px;}
.y27{bottom:828.900000px;}
.yaa{bottom:840.426480px;}
.y49{bottom:840.608640px;}
.y6f{bottom:840.613680px;}
.y26{bottom:858.060000px;}
.y48{bottom:861.126480px;}
.y6e{bottom:861.131520px;}
.y4{bottom:907.920000px;}
.y3{bottom:927.540000px;}
.y2{bottom:943.740000px;}
.y1{bottom:958.319850px;}
.h3{height:34.969922px;}
.h2{height:34.990313px;}
.h5{height:45.219727px;}
.h4{height:45.246094px;}
.h6{height:55.469531px;}
.h7{height:56.019375px;}
.h9{height:65.010937px;}
.h8{height:75.410156px;}
.h0{height:1020.600030px;}
.h1{height:1020.750000px;}
.w0{width:722.880015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:89.280000px;}
.x4c{left:102.217710px;}
.xc{left:103.853520px;}
.x3f{left:107.632830px;}
.x23{left:109.800000px;}
.x1e{left:112.303440px;}
.x20{left:117.884160px;}
.x22{left:128.134800px;}
.x12{left:136.592640px;}
.x3a{left:142.562670px;}
.x40{left:147.774270px;}
.x37{left:150.444000px;}
.x1{left:154.977000px;}
.x15{left:157.276080px;}
.x13{left:159.064560px;}
.x3d{left:160.380000px;}
.x42{left:167.033550px;}
.x2d{left:168.325230px;}
.x6{left:170.280000px;}
.x4a{left:172.051230px;}
.x11{left:175.492080px;}
.x1a{left:176.866560px;}
.x2b{left:178.178430px;}
.x1f{left:179.437680px;}
.x3e{left:183.775710px;}
.x17{left:189.468720px;}
.x32{left:198.186480px;}
.x2c{left:205.568670px;}
.x10{left:209.870640px;}
.x44{left:215.289390px;}
.x38{left:220.128480px;}
.x39{left:224.632800px;}
.x21{left:232.181280px;}
.x3b{left:238.862160px;}
.x46{left:252.516270px;}
.x14{left:257.580000px;}
.x24{left:258.662850px;}
.x36{left:260.021520px;}
.xe{left:263.856240px;}
.x35{left:265.403520px;}
.x25{left:273.240000px;}
.xa{left:276.127200px;}
.x30{left:277.593450px;}
.xf{left:290.683440px;}
.x48{left:318.391950px;}
.x2a{left:331.673070px;}
.x41{left:336.988830px;}
.x33{left:338.184720px;}
.x9{left:345.533790px;}
.x34{left:347.193360px;}
.x29{left:349.745040px;}
.x7{left:351.180000px;}
.x43{left:361.977870px;}
.xd{left:370.221120px;}
.x4{left:371.516850px;}
.x8{left:372.957150px;}
.x18{left:380.802960px;}
.x26{left:384.660000px;}
.x4b{left:388.043310px;}
.x47{left:399.618750px;}
.x19{left:403.125840px;}
.x27{left:414.900000px;}
.x1b{left:438.119850px;}
.x16{left:445.287600px;}
.x2e{left:481.872270px;}
.x3c{left:485.640000px;}
.x49{left:495.517710px;}
.x1c{left:501.480000px;}
.x3{left:503.287500px;}
.x28{left:506.332050px;}
.x31{left:545.400000px;}
.x45{left:558.429150px;}
.x1d{left:568.200240px;}
.x2f{left:595.987050px;}
.xb{left:608.039280px;}
.x2{left:633.600000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-1.392000pt;}
.ls19{letter-spacing:-1.076480pt;}
.ls32{letter-spacing:-0.588800pt;}
.ls27{letter-spacing:-0.576000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls3f{letter-spacing:-0.432000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.336000pt;}
.ls18{letter-spacing:-0.296960pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.235520pt;}
.ls17{letter-spacing:-0.222720pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.176640pt;}
.ls33{letter-spacing:-0.144000pt;}
.ls1d{letter-spacing:-0.058880pt;}
.ls16{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.010133pt;}
.ls13{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.058880pt;}
.ls21{letter-spacing:0.096000pt;}
.ls31{letter-spacing:0.112427pt;}
.ls2f{letter-spacing:0.179093pt;}
.ls30{letter-spacing:0.204800pt;}
.ls26{letter-spacing:0.235520pt;}
.ls25{letter-spacing:0.294400pt;}
.ls15{letter-spacing:0.355947pt;}
.ls12{letter-spacing:0.401920pt;}
.ls11{letter-spacing:0.706560pt;}
.ls24{letter-spacing:0.824320pt;}
.ls2b{letter-spacing:23.669760pt;}
.ls38{letter-spacing:26.849280pt;}
.lsf{letter-spacing:40.273920pt;}
.ls28{letter-spacing:110.635520pt;}
.lsd{letter-spacing:119.055360pt;}
.ls37{letter-spacing:126.062080pt;}
.ls36{letter-spacing:140.840960pt;}
.ls2{letter-spacing:148.701333pt;}
.ls2a{letter-spacing:165.688320pt;}
.ls34{letter-spacing:170.222080pt;}
.ls29{letter-spacing:173.401600pt;}
.ls5{letter-spacing:188.651520pt;}
.ls4{letter-spacing:188.769280pt;}
.ls7{letter-spacing:204.902400pt;}
.ls0{letter-spacing:206.880000pt;}
.ls10{letter-spacing:213.793280pt;}
.ls39{letter-spacing:214.912000pt;}
.ls1{letter-spacing:215.271680pt;}
.ls2c{letter-spacing:225.098240pt;}
.lsb{letter-spacing:253.419520pt;}
.lsa{letter-spacing:318.010880pt;}
.ls3c{letter-spacing:318.776320pt;}
.ls2d{letter-spacing:384.545280pt;}
.lse{letter-spacing:405.153280pt;}
.ls3a{letter-spacing:409.687040pt;}
.ls35{letter-spacing:424.289280pt;}
.ls8{letter-spacing:515.200000pt;}
.ls3{letter-spacing:615.531520pt;}
.ls6{letter-spacing:631.664640pt;}
.ls3d{letter-spacing:753.251840pt;}
.ls2e{letter-spacing:910.755840pt;}
.ls3b{letter-spacing:1080.624640pt;}
.ls9{letter-spacing:1339.048960pt;}
.lsc{letter-spacing:1678.609920pt;}
.ws0{word-spacing:-14.955520pt;}
.ws22{word-spacing:-14.778880pt;}
.ws37{word-spacing:-14.720000pt;}
.ws36{word-spacing:-14.543360pt;}
.ws23{word-spacing:-14.484480pt;}
.ws24{word-spacing:-11.856000pt;}
.ws2f{word-spacing:-3.120640pt;}
.ws3d{word-spacing:-3.002880pt;}
.wse{word-spacing:-2.590720pt;}
.wsf{word-spacing:-2.472960pt;}
.ws38{word-spacing:-2.355200pt;}
.ws2b{word-spacing:-2.001920pt;}
.ws25{word-spacing:-1.884160pt;}
.ws34{word-spacing:-1.707520pt;}
.ws1e{word-spacing:-1.589760pt;}
.ws8{word-spacing:-1.354240pt;}
.ws1f{word-spacing:-1.236480pt;}
.ws6{word-spacing:-1.118720pt;}
.ws21{word-spacing:-1.059840pt;}
.ws28{word-spacing:-1.000960pt;}
.ws7{word-spacing:-0.706560pt;}
.ws1c{word-spacing:-0.588800pt;}
.ws1a{word-spacing:-0.529920pt;}
.ws3a{word-spacing:-0.471040pt;}
.ws2e{word-spacing:-0.412160pt;}
.ws19{word-spacing:-0.240000pt;}
.ws5{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.058880pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:0.058880pt;}
.ws3f{word-spacing:0.144000pt;}
.ws2d{word-spacing:0.176640pt;}
.ws35{word-spacing:0.588800pt;}
.ws9{word-spacing:0.706560pt;}
.ws3e{word-spacing:0.824320pt;}
.ws3{word-spacing:1.056000pt;}
.ws2{word-spacing:1.152000pt;}
.ws1b{word-spacing:1.236480pt;}
.ws16{word-spacing:1.354240pt;}
.ws2a{word-spacing:1.472000pt;}
.ws10{word-spacing:1.884160pt;}
.ws11{word-spacing:2.001920pt;}
.ws27{word-spacing:2.119680pt;}
.ws13{word-spacing:2.531840pt;}
.ws33{word-spacing:2.649600pt;}
.ws14{word-spacing:2.767360pt;}
.ws3c{word-spacing:2.826240pt;}
.wsc{word-spacing:3.120640pt;}
.ws4{word-spacing:3.238400pt;}
.ws31{word-spacing:3.886080pt;}
.ws15{word-spacing:4.003840pt;}
.ws29{word-spacing:4.239360pt;}
.wsb{word-spacing:4.533760pt;}
.ws2c{word-spacing:4.651520pt;}
.ws17{word-spacing:5.181440pt;}
.ws30{word-spacing:5.299200pt;}
.ws20{word-spacing:5.358080pt;}
.wsa{word-spacing:5.711360pt;}
.ws3b{word-spacing:5.829120pt;}
.wsd{word-spacing:5.946880pt;}
.ws1d{word-spacing:6.064640pt;}
.ws18{word-spacing:6.476800pt;}
.ws39{word-spacing:7.006720pt;}
.ws32{word-spacing:13.365760pt;}
._44{margin-left:-19.115200pt;}
._45{margin-left:-14.777600pt;}
._46{margin-left:-10.214400pt;}
._48{margin-left:-2.039296pt;}
._2{margin-left:-1.002240pt;}
._6{width:1.195200pt;}
._5{width:2.323712pt;}
._49{width:3.462144pt;}
._47{width:6.180501pt;}
._94{width:16.632811pt;}
._54{width:24.288000pt;}
._6d{width:31.759872pt;}
._36{width:33.885440pt;}
._55{width:37.088512pt;}
._56{width:43.465216pt;}
._10{width:46.055936pt;}
._80{width:47.981312pt;}
._23{width:49.288448pt;}
._33{width:51.808512pt;}
._31{width:53.728000pt;}
._77{width:56.089088pt;}
._2e{width:59.486464pt;}
._1a{width:64.597248pt;}
._14{width:66.575616pt;}
._38{width:68.442112pt;}
._16{width:69.743360pt;}
._2c{width:71.009280pt;}
._51{width:79.329024pt;}
._2a{width:81.884416pt;}
._73{width:83.173888pt;}
._5b{width:89.756672pt;}
._42{width:92.105984pt;}
._30{width:93.407232pt;}
._4e{width:96.027392pt;}
._3f{width:98.541568pt;}
._67{width:101.061632pt;}
._2d{width:103.646464pt;}
._75{width:106.837760pt;}
._12{width:111.306752pt;}
._37{width:113.903360pt;}
._43{width:115.834624pt;}
._3b{width:122.211328pt;}
._6c{width:127.333888pt;}
._1d{width:129.253376pt;}
._3e{width:130.566400pt;}
._60{width:133.145344pt;}
._8e{width:134.370048pt;}
._11{width:137.573120pt;}
._63{width:144.020480pt;}
._69{width:148.465920pt;}
._39{width:151.027200pt;}
._5e{width:152.970240pt;}
._7f{width:156.132096pt;}
._18{width:158.063360pt;}
._71{width:161.236992pt;}
._50{width:170.174976pt;}
._3a{width:173.436928pt;}
._2f{width:178.530048pt;}
._29{width:179.813632pt;}
._9{width:181.721344pt;}
._7c{width:184.359168pt;}
._83{width:187.532800pt;}
._72{width:192.549376pt;}
._22{width:197.142016pt;}
._27{width:199.638528pt;}
._87{width:204.148736pt;}
._57{width:206.080000pt;}
._19{width:218.232832pt;}
._28{width:222.695936pt;}
._25{width:225.245440pt;}
._17{width:228.483840pt;}
._26{width:229.743872pt;}
._53{width:232.941056pt;}
._1c{width:237.374720pt;}
._84{width:239.353088pt;}
._76{width:241.207808pt;}
._68{width:242.520832pt;}
._86{width:243.922176pt;}
._92{width:245.064448pt;}
._8c{width:251.505920pt;}
._7{width:252.748288pt;}
._32{width:254.691328pt;}
._74{width:255.916032pt;}
._1f{width:258.500864pt;}
._93{width:260.455680pt;}
._7b{width:273.933312pt;}
._7e{width:275.193344pt;}
._85{width:276.553472pt;}
._e{width:277.748736pt;}
._52{width:280.922368pt;}
._5f{width:285.438464pt;}
._6a{width:291.826944pt;}
._1e{width:305.899264pt;}
._13{width:307.182848pt;}
._2b{width:314.854912pt;}
._40{width:316.191488pt;}
._8d{width:318.169856pt;}
._15{width:325.706496pt;}
._4b{width:332.730880pt;}
._a{width:344.919040pt;}
._79{width:354.934528pt;}
._81{width:369.260032pt;}
._89{width:378.951680pt;}
._6f{width:382.072320pt;}
._1b{width:387.813120pt;}
._41{width:403.210240pt;}
._4f{width:412.160000pt;}
._88{width:415.398400pt;}
._8{width:444.096512pt;}
._35{width:468.508160pt;}
._91{width:470.333440pt;}
._c{width:524.208640pt;}
._4d{width:535.572480pt;}
._5a{width:581.145600pt;}
._61{width:593.268992pt;}
._59{width:648.092160pt;}
._21{width:652.802560pt;}
._65{width:657.925120pt;}
._f{width:661.799424pt;}
._8f{width:665.632512pt;}
._4a{width:704.499200pt;}
._58{width:725.637120pt;}
._5c{width:757.314560pt;}
._3{width:812.222720pt;}
._82{width:834.035200pt;}
._4{width:884.903680pt;}
._90{width:908.612608pt;}
._6b{width:924.769280pt;}
._b{width:933.660160pt;}
._d{width:941.491200pt;}
._8a{width:946.496000pt;}
._4c{width:948.910080pt;}
._78{width:956.800000pt;}
._62{width:999.016960pt;}
._0{width:1014.712320pt;}
._7d{width:1019.507200pt;}
._64{width:1032.814080pt;}
._1{width:1061.223680pt;}
._66{width:1183.016960pt;}
._8b{width:1282.583040pt;}
._24{width:1290.219776pt;}
._6e{width:1292.180480pt;}
._20{width:1320.442880pt;}
._70{width:1335.692800pt;}
._5d{width:1340.226560pt;}
._3d{width:1352.497152pt;}
._3c{width:1413.120000pt;}
._7a{width:1582.988800pt;}
._34{width:1598.827520pt;}
.fs0{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:58.400000pt;}
.y47{bottom:58.400587pt;}
.yc4{bottom:58.402560pt;}
.y8f{bottom:58.404533pt;}
.y46{bottom:88.664907pt;}
.y25{bottom:88.668800pt;}
.y6d{bottom:89.448960pt;}
.y8e{bottom:89.449013pt;}
.y45{bottom:106.902987pt;}
.y24{bottom:106.906880pt;}
.y6c{bottom:107.687040pt;}
.y8d{bottom:107.687093pt;}
.y44{bottom:125.141067pt;}
.y23{bottom:125.144960pt;}
.y6b{bottom:125.925120pt;}
.y8c{bottom:125.925173pt;}
.y43{bottom:143.379147pt;}
.y22{bottom:143.383040pt;}
.y6a{bottom:144.325120pt;}
.y8b{bottom:144.325173pt;}
.y42{bottom:161.455307pt;}
.y21{bottom:161.459200pt;}
.y69{bottom:162.563200pt;}
.y8a{bottom:162.563253pt;}
.y41{bottom:179.693387pt;}
.y20{bottom:179.697280pt;}
.y68{bottom:180.801280pt;}
.y89{bottom:180.801333pt;}
.ya9{bottom:189.290240pt;}
.y40{bottom:197.931467pt;}
.y1f{bottom:197.935360pt;}
.ya8{bottom:205.614720pt;}
.y67{bottom:211.360000pt;}
.y66{bottom:211.361920pt;}
.y3f{bottom:216.169547pt;}
.y1e{bottom:216.173440pt;}
.y65{bottom:229.600000pt;}
.y64{bottom:229.613440pt;}
.y88{bottom:229.617280pt;}
.y3e{bottom:234.245707pt;}
.y1d{bottom:234.249600pt;}
.ya7{bottom:235.849600pt;}
.y63{bottom:247.851520pt;}
.y87{bottom:247.855360pt;}
.y3d{bottom:252.483787pt;}
.y1c{bottom:252.487680pt;}
.ya6{bottom:265.922560pt;}
.yc3{bottom:265.925120pt;}
.y62{bottom:266.089600pt;}
.y86{bottom:266.093440pt;}
.y3c{bottom:270.721867pt;}
.y1b{bottom:270.725760pt;}
.ya5{bottom:284.160640pt;}
.yc2{bottom:284.163200pt;}
.y61{bottom:284.327680pt;}
.y85{bottom:284.331520pt;}
.y1a{bottom:288.963840pt;}
.y60{bottom:302.727680pt;}
.y84{bottom:302.731520pt;}
.y19{bottom:307.040000pt;}
.y18{bottom:307.044480pt;}
.y3b{bottom:307.047040pt;}
.ya4{bottom:314.719360pt;}
.yc1{bottom:314.721920pt;}
.y5f{bottom:320.965760pt;}
.y83{bottom:320.969600pt;}
.yc0{bottom:333.001573pt;}
.ya3{bottom:333.001600pt;}
.y17{bottom:337.279360pt;}
.y3a{bottom:337.281920pt;}
.y5e{bottom:339.203840pt;}
.y82{bottom:339.207680pt;}
.ybf{bottom:351.239653pt;}
.ya2{bottom:351.239680pt;}
.y39{bottom:355.520000pt;}
.y16{bottom:355.532160pt;}
.y38{bottom:355.537280pt;}
.y5d{bottom:357.441920pt;}
.y81{bottom:357.445760pt;}
.ybe{bottom:369.477733pt;}
.ya1{bottom:369.477760pt;}
.y15{bottom:373.770240pt;}
.y37{bottom:373.775360pt;}
.y5c{bottom:375.680000pt;}
.y80{bottom:375.683840pt;}
.ybd{bottom:387.877733pt;}
.y14{bottom:391.846400pt;}
.y36{bottom:391.851520pt;}
.y5b{bottom:393.918080pt;}
.y7f{bottom:393.921920pt;}
.ybc{bottom:406.115813pt;}
.ya0{bottom:406.115840pt;}
.y13{bottom:410.084480pt;}
.y35{bottom:410.089600pt;}
.y5a{bottom:412.318080pt;}
.y7e{bottom:412.321920pt;}
.ybb{bottom:424.353893pt;}
.y9f{bottom:424.353920pt;}
.y12{bottom:428.322560pt;}
.y34{bottom:428.327680pt;}
.y59{bottom:430.570880pt;}
.y7d{bottom:430.570933pt;}
.yba{bottom:442.591973pt;}
.y9e{bottom:442.592000pt;}
.y11{bottom:446.560640pt;}
.y33{bottom:446.565760pt;}
.y7c{bottom:448.809013pt;}
.yb9{bottom:460.830053pt;}
.y9d{bottom:460.830080pt;}
.y10{bottom:464.636800pt;}
.y32{bottom:464.641920pt;}
.y58{bottom:467.047040pt;}
.y7b{bottom:467.047093pt;}
.yb8{bottom:479.068133pt;}
.y9c{bottom:479.068160pt;}
.y31{bottom:482.880000pt;}
.yf{bottom:482.889600pt;}
.y30{bottom:482.891520pt;}
.y57{bottom:485.285120pt;}
.y7a{bottom:485.285173pt;}
.yb7{bottom:497.468133pt;}
.ye{bottom:501.127680pt;}
.y2f{bottom:501.129600pt;}
.y56{bottom:503.523200pt;}
.y79{bottom:503.523253pt;}
.yb6{bottom:515.706213pt;}
.y9b{bottom:515.706240pt;}
.yd{bottom:519.365760pt;}
.y2e{bottom:519.367680pt;}
.y55{bottom:521.923200pt;}
.y78{bottom:521.923253pt;}
.yb5{bottom:533.944293pt;}
.y9a{bottom:533.944320pt;}
.yc{bottom:537.441920pt;}
.y2d{bottom:537.443840pt;}
.y54{bottom:540.161280pt;}
.y77{bottom:540.161333pt;}
.yb4{bottom:552.182373pt;}
.y99{bottom:552.182400pt;}
.yb{bottom:555.680000pt;}
.y2c{bottom:555.681920pt;}
.yb3{bottom:570.420453pt;}
.y98{bottom:570.420480pt;}
.y53{bottom:570.720000pt;}
.y52{bottom:570.723840pt;}
.y2b{bottom:573.920000pt;}
.ya{bottom:573.932800pt;}
.yb2{bottom:588.658533pt;}
.y97{bottom:588.658560pt;}
.y51{bottom:588.961920pt;}
.y9{bottom:604.167680pt;}
.yb1{bottom:607.058533pt;}
.y96{bottom:607.058560pt;}
.y50{bottom:607.200000pt;}
.y76{bottom:607.220453pt;}
.y4f{bottom:607.220480pt;}
.y8{bottom:622.243840pt;}
.yb0{bottom:625.296613pt;}
.y95{bottom:625.296640pt;}
.y75{bottom:625.458533pt;}
.y4e{bottom:625.458560pt;}
.y7{bottom:640.481920pt;}
.y74{bottom:643.696613pt;}
.yaf{bottom:655.855333pt;}
.y94{bottom:655.855360pt;}
.y2a{bottom:658.721920pt;}
.y6{bottom:658.725760pt;}
.y73{bottom:661.934693pt;}
.y4d{bottom:661.934720pt;}
.yae{bottom:674.093413pt;}
.y93{bottom:674.093440pt;}
.y29{bottom:676.960000pt;}
.y72{bottom:680.334693pt;}
.y4c{bottom:680.334720pt;}
.yad{bottom:692.331493pt;}
.y92{bottom:692.331520pt;}
.y71{bottom:698.572773pt;}
.y4b{bottom:698.572800pt;}
.y28{bottom:710.560000pt;}
.yac{bottom:710.569573pt;}
.y91{bottom:710.569600pt;}
.yab{bottom:728.807653pt;}
.y90{bottom:728.807680pt;}
.y70{bottom:728.969573pt;}
.y4a{bottom:728.969600pt;}
.y27{bottom:736.800000pt;}
.yaa{bottom:747.045760pt;}
.y49{bottom:747.207680pt;}
.y6f{bottom:747.212160pt;}
.y26{bottom:762.720000pt;}
.y48{bottom:765.445760pt;}
.y6e{bottom:765.450240pt;}
.y4{bottom:807.040000pt;}
.y3{bottom:824.480000pt;}
.y2{bottom:838.880000pt;}
.y1{bottom:851.839867pt;}
.h3{height:31.084375pt;}
.h2{height:31.102500pt;}
.h5{height:40.195312pt;}
.h4{height:40.218750pt;}
.h6{height:49.306250pt;}
.h7{height:49.795000pt;}
.h9{height:57.787500pt;}
.h8{height:67.031250pt;}
.h0{height:907.200027pt;}
.h1{height:907.333333pt;}
.w0{width:642.560013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:79.360000pt;}
.x4c{left:90.860187pt;}
.xc{left:92.314240pt;}
.x3f{left:95.673627pt;}
.x23{left:97.600000pt;}
.x1e{left:99.825280pt;}
.x20{left:104.785920pt;}
.x22{left:113.897600pt;}
.x12{left:121.415680pt;}
.x3a{left:126.722373pt;}
.x40{left:131.354907pt;}
.x37{left:133.728000pt;}
.x1{left:137.757333pt;}
.x15{left:139.800960pt;}
.x13{left:141.390720pt;}
.x3d{left:142.560000pt;}
.x42{left:148.474267pt;}
.x2d{left:149.622427pt;}
.x6{left:151.360000pt;}
.x4a{left:152.934427pt;}
.x11{left:155.992960pt;}
.x1a{left:157.214720pt;}
.x2b{left:158.380827pt;}
.x1f{left:159.500160pt;}
.x3e{left:163.356187pt;}
.x17{left:168.416640pt;}
.x32{left:176.165760pt;}
.x2c{left:182.727707pt;}
.x10{left:186.551680pt;}
.x44{left:191.368347pt;}
.x38{left:195.669760pt;}
.x39{left:199.673600pt;}
.x21{left:206.383360pt;}
.x3b{left:212.321920pt;}
.x46{left:224.458907pt;}
.x14{left:228.960000pt;}
.x24{left:229.922533pt;}
.x36{left:231.130240pt;}
.xe{left:234.538880pt;}
.x35{left:235.914240pt;}
.x25{left:242.880000pt;}
.xa{left:245.446400pt;}
.x30{left:246.749733pt;}
.xf{left:258.385280pt;}
.x48{left:283.015067pt;}
.x2a{left:294.820507pt;}
.x41{left:299.545627pt;}
.x33{left:300.608640pt;}
.x9{left:307.141147pt;}
.x34{left:308.616320pt;}
.x29{left:310.884480pt;}
.x7{left:312.160000pt;}
.x43{left:321.758107pt;}
.xd{left:329.085440pt;}
.x4{left:330.237200pt;}
.x8{left:331.517467pt;}
.x18{left:338.491520pt;}
.x26{left:341.920000pt;}
.x4b{left:344.927387pt;}
.x47{left:355.216667pt;}
.x19{left:358.334080pt;}
.x27{left:368.800000pt;}
.x1b{left:389.439867pt;}
.x16{left:395.811200pt;}
.x2e{left:428.330907pt;}
.x3c{left:431.680000pt;}
.x49{left:440.460187pt;}
.x1c{left:445.760000pt;}
.x3{left:447.366667pt;}
.x28{left:450.072933pt;}
.x31{left:484.800000pt;}
.x45{left:496.381467pt;}
.x1d{left:505.066880pt;}
.x2f{left:529.766267pt;}
.xb{left:540.479360pt;}
.x2{left:563.200000pt;}
}




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