
    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_a63a7179726dc20df444c8d1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b6cb65972e0b47215047c9a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_1b614120170ab2f94a9aad63.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e3228bb02e4ee4aef1453900.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_574d7469b6efb725a984ffd0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_9fb041fedb02b6cf2bf18639.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-30.240000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.252672px;}
.ls22{letter-spacing:-1.947456px;}
.ls14{letter-spacing:-1.457568px;}
.ls19{letter-spacing:-1.439424px;}
.ls5{letter-spacing:-1.152000px;}
.lsb{letter-spacing:-0.955584px;}
.ls1a{letter-spacing:-0.943488px;}
.ls20{letter-spacing:-0.937440px;}
.ls1c{letter-spacing:-0.931392px;}
.ls1e{letter-spacing:-0.925344px;}
.ls15{letter-spacing:-0.538272px;}
.lsc{letter-spacing:-0.508032px;}
.lsa{letter-spacing:-0.501984px;}
.ls1f{letter-spacing:-0.495936px;}
.ls10{letter-spacing:-0.489888px;}
.ls26{letter-spacing:-0.483840px;}
.ls7{letter-spacing:-0.351072px;}
.ls9{letter-spacing:-0.264960px;}
.ls2b{letter-spacing:-0.019440px;}
.ls18{letter-spacing:-0.018144px;}
.ls27{letter-spacing:-0.015552px;}
.ls4{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.006048px;}
.ls23{letter-spacing:0.018144px;}
.ls6{letter-spacing:0.115200px;}
.ls16{letter-spacing:0.120960px;}
.ls1{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.223776px;}
.ls0{letter-spacing:0.374400px;}
.lsf{letter-spacing:0.465696px;}
.ls2{letter-spacing:0.468000px;}
.ls2a{letter-spacing:0.477792px;}
.ls12{letter-spacing:0.483840px;}
.lsd{letter-spacing:0.514080px;}
.ls11{letter-spacing:0.520128px;}
.ls21{letter-spacing:0.526176px;}
.ls8{letter-spacing:0.543168px;}
.ls1b{letter-spacing:0.580608px;}
.ls13{letter-spacing:0.586656px;}
.ls25{letter-spacing:0.604800px;}
.ls28{letter-spacing:0.719280px;}
.lse{letter-spacing:0.719712px;}
.ls3{letter-spacing:0.720000px;}
.ls29{letter-spacing:1.451520px;}
.ls17{letter-spacing:1.905120px;}
.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:-20.484000px;}
.ws1{word-spacing:-20.131200px;}
.ws65{word-spacing:-16.795296px;}
.ws58{word-spacing:-16.329600px;}
.ws4e{word-spacing:-16.323552px;}
.ws4d{word-spacing:-16.317504px;}
.ws5d{word-spacing:-16.311456px;}
.ws2{word-spacing:-16.305408px;}
.ws4{word-spacing:-15.634080px;}
.ws21{word-spacing:-15.603840px;}
.ws3{word-spacing:-10.808640px;}
.ws5c{word-spacing:-10.793088px;}
.ws6b{word-spacing:-10.789200px;}
.ws5e{word-spacing:-10.439280px;}
.wsb{word-spacing:-0.867744px;}
.ws2f{word-spacing:-0.471744px;}
.ws59{word-spacing:-0.465696px;}
.ws7{word-spacing:-0.324000px;}
.wsa{word-spacing:-0.238464px;}
.ws6{word-spacing:-0.230400px;}
.ws2d{word-spacing:-0.181440px;}
.ws5{word-spacing:0.000000px;}
.ws57{word-spacing:0.114912px;}
.ws2b{word-spacing:0.133056px;}
.ws4c{word-spacing:0.193536px;}
.ws55{word-spacing:0.447552px;}
.ws9{word-spacing:0.655776px;}
.ws2e{word-spacing:0.719712px;}
.ws17{word-spacing:0.961632px;}
.wsc{word-spacing:0.967680px;}
.wsf{word-spacing:0.973728px;}
.ws28{word-spacing:1.209600px;}
.ws8{word-spacing:1.296000px;}
.ws33{word-spacing:1.905120px;}
.ws2c{word-spacing:2.177280px;}
.ws51{word-spacing:2.407104px;}
.ws1e{word-spacing:2.413152px;}
.ws63{word-spacing:2.878848px;}
.ws29{word-spacing:3.078432px;}
.ws53{word-spacing:3.344544px;}
.ws2a{word-spacing:3.598560px;}
.ws54{word-spacing:3.840480px;}
.ws1a{word-spacing:3.846528px;}
.wse{word-spacing:3.852576px;}
.ws38{word-spacing:5.037984px;}
.ws52{word-spacing:5.285952px;}
.ws12{word-spacing:5.292000px;}
.ws66{word-spacing:6.719328px;}
.ws50{word-spacing:6.725376px;}
.wsd{word-spacing:6.731424px;}
.ws26{word-spacing:6.737472px;}
.ws6d{word-spacing:7.203168px;}
.ws3a{word-spacing:7.408800px;}
.ws31{word-spacing:7.687008px;}
.ws61{word-spacing:8.158752px;}
.ws68{word-spacing:8.164800px;}
.ws5b{word-spacing:8.170848px;}
.ws16{word-spacing:8.176896px;}
.ws67{word-spacing:8.642592px;}
.ws4a{word-spacing:8.848224px;}
.ws23{word-spacing:9.610272px;}
.ws19{word-spacing:9.616320px;}
.ws46{word-spacing:10.565856px;}
.ws47{word-spacing:11.043648px;}
.ws1c{word-spacing:11.049696px;}
.ws14{word-spacing:11.055744px;}
.ws56{word-spacing:12.235104px;}
.ws10{word-spacing:12.495168px;}
.ws39{word-spacing:13.172544px;}
.ws69{word-spacing:13.426560px;}
.ws3d{word-spacing:13.456800px;}
.ws3e{word-spacing:13.559616px;}
.ws3c{word-spacing:13.680576px;}
.ws40{word-spacing:13.922496px;}
.ws3f{word-spacing:13.928544px;}
.ws13{word-spacing:13.934592px;}
.ws64{word-spacing:15.120000px;}
.ws5f{word-spacing:15.367968px;}
.ws18{word-spacing:15.374016px;}
.ws4b{word-spacing:16.559424px;}
.ws5a{word-spacing:16.807392px;}
.ws30{word-spacing:16.813440px;}
.ws37{word-spacing:17.418240px;}
.ws3b{word-spacing:17.515008px;}
.ws36{word-spacing:17.998848px;}
.ws11{word-spacing:18.252864px;}
.ws32{word-spacing:18.718560px;}
.ws35{word-spacing:18.942336px;}
.ws15{word-spacing:19.686240px;}
.ws1b{word-spacing:19.692288px;}
.ws43{word-spacing:20.623680px;}
.ws42{word-spacing:20.641824px;}
.ws41{word-spacing:21.131712px;}
.ws60{word-spacing:22.571136px;}
.ws22{word-spacing:22.577184px;}
.ws49{word-spacing:23.254560px;}
.ws6c{word-spacing:24.010560px;}
.ws1d{word-spacing:24.016608px;}
.ws48{word-spacing:25.456032px;}
.ws27{word-spacing:26.895456px;}
.ws62{word-spacing:28.334880px;}
.ws4f{word-spacing:29.774304px;}
.ws34{word-spacing:31.213728px;}
.ws25{word-spacing:32.653152px;}
.ws1f{word-spacing:34.092576px;}
.ws24{word-spacing:36.971424px;}
.ws45{word-spacing:38.416896px;}
.ws44{word-spacing:39.856320px;}
.ws6a{word-spacing:48.492864px;}
.ws20{word-spacing:77.964768px;}
._6{margin-left:-3.600000px;}
._1{margin-left:-1.900800px;}
._2{width:1.616256px;}
._4{width:2.684160px;}
._3{width:3.848256px;}
._7{width:7.998624px;}
._5{width:21.600000px;}
._8{width:2461.680000px;}
._0{width:2497.680000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:60.480000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.720450px;}
.y83{bottom:110.276712px;}
.ya6{bottom:110.278506px;}
.y30{bottom:110.279802px;}
.y5a{bottom:117.120450px;}
.y82{bottom:127.557360px;}
.y59{bottom:127.559154px;}
.yc3{bottom:127.559802px;}
.y2f{bottom:134.400450px;}
.y81{bottom:144.838008px;}
.y58{bottom:144.839802px;}
.y2e{bottom:145.560450px;}
.yc2{bottom:151.680450px;}
.y80{bottom:162.118656px;}
.yc1{bottom:162.840450px;}
.y57{bottom:168.960600px;}
.y7f{bottom:179.399304px;}
.y56{bottom:179.760450px;}
.y10a{bottom:181.558146px;}
.y123{bottom:185.874690px;}
.yf3{bottom:185.875482px;}
.y2d{bottom:185.877282px;}
.yde{bottom:185.879442px;}
.y7e{bottom:196.679952px;}
.y109{bottom:207.478362px;}
.y122{bottom:211.794906px;}
.yf2{bottom:211.795698px;}
.y55{bottom:211.796562px;}
.yc0{bottom:211.797354px;}
.y2c{bottom:211.797498px;}
.ydd{bottom:212.159514px;}
.y7d{bottom:220.800450px;}
.y7c{bottom:231.600450px;}
.y108{bottom:233.398578px;}
.ya5{bottom:237.352530px;}
.y141{bottom:237.354186px;}
.y121{bottom:237.355266px;}
.yf1{bottom:237.356058px;}
.y54{bottom:237.356922px;}
.ybf{bottom:237.357714px;}
.y2b{bottom:237.357858px;}
.ydc{bottom:237.360018px;}
.y107{bottom:259.318794px;}
.ya4{bottom:263.272746px;}
.y140{bottom:263.274402px;}
.y120{bottom:263.275482px;}
.yf0{bottom:263.276274px;}
.y53{bottom:263.277138px;}
.ybe{bottom:263.277930px;}
.y2a{bottom:263.278074px;}
.ydb{bottom:263.280234px;}
.y106{bottom:285.598866px;}
.ya3{bottom:289.192962px;}
.y13f{bottom:289.194618px;}
.yda{bottom:289.195416px;}
.y11f{bottom:289.195698px;}
.yef{bottom:289.196490px;}
.y52{bottom:289.197354px;}
.ybd{bottom:289.198146px;}
.y29{bottom:289.198290px;}
.y105{bottom:310.799370px;}
.ya2{bottom:315.113178px;}
.y13e{bottom:315.114834px;}
.yd9{bottom:315.115632px;}
.y11e{bottom:315.115914px;}
.yee{bottom:315.116706px;}
.y51{bottom:315.117570px;}
.ybc{bottom:315.118362px;}
.y28{bottom:315.118506px;}
.y7b{bottom:315.120234px;}
.y104{bottom:336.719586px;}
.y7a{bottom:341.033322px;}
.ya1{bottom:341.033394px;}
.y13d{bottom:341.035050px;}
.yd8{bottom:341.035848px;}
.y11d{bottom:341.036130px;}
.yed{bottom:341.036922px;}
.y50{bottom:341.037786px;}
.ybb{bottom:341.038578px;}
.y27{bottom:341.038722px;}
.y103{bottom:362.639802px;}
.y79{bottom:366.953538px;}
.ya0{bottom:366.953610px;}
.y13c{bottom:366.955266px;}
.yd7{bottom:366.956064px;}
.y11c{bottom:366.956346px;}
.yec{bottom:366.957138px;}
.y4f{bottom:366.958002px;}
.yba{bottom:366.958794px;}
.y26{bottom:366.958938px;}
.y102{bottom:388.919874px;}
.y78{bottom:392.873754px;}
.y9f{bottom:392.873826px;}
.y13b{bottom:392.875482px;}
.yd6{bottom:392.876280px;}
.y11b{bottom:392.876562px;}
.yeb{bottom:392.877354px;}
.y4e{bottom:392.878218px;}
.y25{bottom:392.879154px;}
.yb9{bottom:393.238866px;}
.y101{bottom:414.480234px;}
.y77{bottom:418.434114px;}
.y13a{bottom:418.435842px;}
.yd5{bottom:418.436640px;}
.y11a{bottom:418.436922px;}
.yea{bottom:418.437714px;}
.y4d{bottom:418.438578px;}
.y24{bottom:418.439514px;}
.y9e{bottom:418.794042px;}
.yb8{bottom:418.799226px;}
.y100{bottom:440.400450px;}
.y76{bottom:444.354330px;}
.y9d{bottom:444.354402px;}
.y139{bottom:444.356058px;}
.yd4{bottom:444.356856px;}
.y119{bottom:444.357138px;}
.ye9{bottom:444.357930px;}
.y4c{bottom:444.358794px;}
.yb7{bottom:444.359586px;}
.y23{bottom:444.359730px;}
.yff{bottom:463.080450px;}
.y75{bottom:470.274546px;}
.y9c{bottom:470.274618px;}
.y138{bottom:470.276274px;}
.yd3{bottom:470.277072px;}
.y118{bottom:470.277354px;}
.ye8{bottom:470.278146px;}
.y4b{bottom:470.279010px;}
.y22{bottom:470.279946px;}
.yb6{bottom:470.639658px;}
.y74{bottom:496.194762px;}
.y9b{bottom:496.194834px;}
.y137{bottom:496.196490px;}
.yd2{bottom:496.197288px;}
.y117{bottom:496.197570px;}
.ye7{bottom:496.198362px;}
.y4a{bottom:496.199226px;}
.y21{bottom:496.200162px;}
.yb5{bottom:496.559874px;}
.y73{bottom:522.114978px;}
.y9a{bottom:522.115050px;}
.y136{bottom:522.116706px;}
.yd1{bottom:522.117504px;}
.y116{bottom:522.117786px;}
.ye6{bottom:522.118578px;}
.y49{bottom:522.119442px;}
.yb4{bottom:522.120234px;}
.y20{bottom:522.120378px;}
.y72{bottom:548.035194px;}
.y99{bottom:548.035266px;}
.y135{bottom:548.036922px;}
.yd0{bottom:548.037720px;}
.y115{bottom:548.038002px;}
.ye5{bottom:548.038794px;}
.yb3{bottom:548.039010px;}
.y48{bottom:548.039658px;}
.y1f{bottom:548.400450px;}
.y71{bottom:573.955410px;}
.y98{bottom:573.955482px;}
.y134{bottom:573.957138px;}
.ycf{bottom:573.957936px;}
.yb2{bottom:573.959226px;}
.y47{bottom:573.959874px;}
.y114{bottom:574.318074px;}
.ye4{bottom:574.318866px;}
.y1e{bottom:575.040450px;}
.y1d{bottom:594.111594px;}
.y70{bottom:599.875626px;}
.y97{bottom:599.875698px;}
.y133{bottom:599.877354px;}
.yce{bottom:599.878152px;}
.y113{bottom:599.878434px;}
.ye3{bottom:599.879226px;}
.yb1{bottom:599.879442px;}
.y46{bottom:599.880090px;}
.y1c{bottom:611.030874px;}
.y6f{bottom:625.435986px;}
.y96{bottom:625.436058px;}
.y132{bottom:625.437714px;}
.ycd{bottom:625.438512px;}
.y45{bottom:625.438578px;}
.y112{bottom:625.438794px;}
.yb0{bottom:625.439802px;}
.ye2{bottom:625.799442px;}
.y1b{bottom:628.311522px;}
.y1a{bottom:645.592170px;}
.y6e{bottom:651.356202px;}
.y95{bottom:651.356274px;}
.y131{bottom:651.357930px;}
.ycc{bottom:651.358728px;}
.y44{bottom:651.358794px;}
.y111{bottom:651.359010px;}
.yaf{bottom:651.360018px;}
.ye1{bottom:651.719658px;}
.y19{bottom:662.511450px;}
.y6d{bottom:677.276418px;}
.y94{bottom:677.276490px;}
.y130{bottom:677.278146px;}
.ycb{bottom:677.278944px;}
.y43{bottom:677.279010px;}
.y110{bottom:677.279226px;}
.ye0{bottom:677.280018px;}
.yae{bottom:677.280234px;}
.y18{bottom:679.792098px;}
.y17{bottom:697.072746px;}
.yad{bottom:703.196490px;}
.y6c{bottom:703.196634px;}
.y93{bottom:703.196706px;}
.y12f{bottom:703.198362px;}
.yca{bottom:703.199160px;}
.y42{bottom:703.199226px;}
.y10f{bottom:703.199442px;}
.ydf{bottom:703.200234px;}
.y16{bottom:714.353394px;}
.yac{bottom:729.116706px;}
.y6b{bottom:729.116850px;}
.y12e{bottom:729.118578px;}
.yc9{bottom:729.119376px;}
.y41{bottom:729.119442px;}
.y92{bottom:729.476778px;}
.y10e{bottom:729.479514px;}
.y15{bottom:731.634042px;}
.y14{bottom:748.914690px;}
.yab{bottom:755.036922px;}
.y6a{bottom:755.037066px;}
.y91{bottom:755.037138px;}
.y12d{bottom:755.038794px;}
.y40{bottom:755.039658px;}
.yc8{bottom:755.399448px;}
.y10d{bottom:755.399730px;}
.y13{bottom:766.195338px;}
.yaa{bottom:780.957138px;}
.y69{bottom:780.957282px;}
.y90{bottom:780.957354px;}
.yfe{bottom:780.957786px;}
.y12c{bottom:780.959010px;}
.yc7{bottom:780.959808px;}
.y3f{bottom:780.959874px;}
.y10c{bottom:780.960090px;}
.y12{bottom:783.475986px;}
.y11{bottom:800.756634px;}
.ya9{bottom:806.517498px;}
.y68{bottom:806.517642px;}
.y8f{bottom:806.517714px;}
.yfd{bottom:806.518146px;}
.y12b{bottom:806.519370px;}
.yc6{bottom:806.520168px;}
.y3e{bottom:806.520234px;}
.y10{bottom:818.037282px;}
.y3d{bottom:832.437714px;}
.y8e{bottom:832.437930px;}
.yfc{bottom:832.438362px;}
.y12a{bottom:832.439586px;}
.yc5{bottom:832.440384px;}
.y67{bottom:832.797714px;}
.yf{bottom:835.317930px;}
.ye{bottom:852.237210px;}
.y3c{bottom:858.357930px;}
.yc4{bottom:858.358074px;}
.y8d{bottom:858.358146px;}
.yfb{bottom:858.358578px;}
.y129{bottom:858.359802px;}
.y66{bottom:858.717930px;}
.yd{bottom:869.517858px;}
.y3b{bottom:884.278146px;}
.y65{bottom:884.278290px;}
.y8c{bottom:884.278362px;}
.yfa{bottom:884.278794px;}
.y128{bottom:884.280018px;}
.yc{bottom:886.798506px;}
.yb{bottom:904.079154px;}
.y3a{bottom:910.198362px;}
.y64{bottom:910.198506px;}
.y8b{bottom:910.198578px;}
.yf9{bottom:910.199010px;}
.y127{bottom:910.200234px;}
.ya{bottom:921.359802px;}
.y39{bottom:936.118578px;}
.y63{bottom:936.118722px;}
.y8a{bottom:936.118794px;}
.yf8{bottom:936.119226px;}
.y126{bottom:936.119658px;}
.y9{bottom:938.640450px;}
.ya8{bottom:962.038794px;}
.y62{bottom:962.038938px;}
.y89{bottom:962.039010px;}
.yf7{bottom:962.039442px;}
.y125{bottom:962.039874px;}
.y38{bottom:962.398650px;}
.y8{bottom:965.280018px;}
.y37{bottom:987.959010px;}
.y61{bottom:987.959154px;}
.y88{bottom:987.959226px;}
.yf6{bottom:987.959658px;}
.y124{bottom:987.960090px;}
.y7{bottom:993.720162px;}
.y36{bottom:1013.519370px;}
.y60{bottom:1013.519514px;}
.y87{bottom:1013.519586px;}
.yf5{bottom:1013.520018px;}
.y6{bottom:1022.160306px;}
.y35{bottom:1039.439586px;}
.y5f{bottom:1039.439730px;}
.y86{bottom:1039.439802px;}
.yf4{bottom:1039.440234px;}
.y5{bottom:1050.600450px;}
.y34{bottom:1065.359802px;}
.y5e{bottom:1065.359946px;}
.y85{bottom:1065.360018px;}
.ya7{bottom:1065.719658px;}
.y4{bottom:1080.840450px;}
.y33{bottom:1091.280018px;}
.y5d{bottom:1091.280162px;}
.y84{bottom:1091.280234px;}
.y10b{bottom:1091.639874px;}
.y3{bottom:1112.160450px;}
.y32{bottom:1117.200234px;}
.y5c{bottom:1117.200378px;}
.y2{bottom:1141.680450px;}
.y31{bottom:1143.120450px;}
.y5b{bottom:1143.480450px;}
.h6{height:38.158594px;}
.ha{height:59.357813px;}
.h7{height:59.360404px;}
.h4{height:63.078750px;}
.h2{height:69.086250px;}
.h1{height:70.664062px;}
.hc{height:70.790913px;}
.h12{height:70.793217px;}
.h16{height:70.793793px;}
.h15{height:70.794945px;}
.he{height:70.796385px;}
.h9{height:70.798113px;}
.h13{height:70.799841px;}
.hf{height:70.800129px;}
.h8{height:70.801569px;}
.h14{height:70.802433px;}
.h5{height:70.803297px;}
.h11{height:70.805601px;}
.hd{height:70.806465px;}
.h10{height:70.810761px;}
.hb{height:70.819137px;}
.h3{height:75.093750px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.440000px;}
.x5{left:168.120000px;}
.x3{left:182.880000px;}
.x4{left:285.120000px;}
.x9{left:375.120000px;}
.x2{left:466.560000px;}
.x8{left:590.759352px;}
.x7{left:634.679784px;}
.x6{left:646.559928px;}
@media print{
.v2{vertical-align:-26.880000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.891264pt;}
.ls22{letter-spacing:-1.731072pt;}
.ls14{letter-spacing:-1.295616pt;}
.ls19{letter-spacing:-1.279488pt;}
.ls5{letter-spacing:-1.024000pt;}
.lsb{letter-spacing:-0.849408pt;}
.ls1a{letter-spacing:-0.838656pt;}
.ls20{letter-spacing:-0.833280pt;}
.ls1c{letter-spacing:-0.827904pt;}
.ls1e{letter-spacing:-0.822528pt;}
.ls15{letter-spacing:-0.478464pt;}
.lsc{letter-spacing:-0.451584pt;}
.lsa{letter-spacing:-0.446208pt;}
.ls1f{letter-spacing:-0.440832pt;}
.ls10{letter-spacing:-0.435456pt;}
.ls26{letter-spacing:-0.430080pt;}
.ls7{letter-spacing:-0.312064pt;}
.ls9{letter-spacing:-0.235520pt;}
.ls2b{letter-spacing:-0.017280pt;}
.ls18{letter-spacing:-0.016128pt;}
.ls27{letter-spacing:-0.013824pt;}
.ls4{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.005376pt;}
.ls23{letter-spacing:0.016128pt;}
.ls6{letter-spacing:0.102400pt;}
.ls16{letter-spacing:0.107520pt;}
.ls1{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.198912pt;}
.ls0{letter-spacing:0.332800pt;}
.lsf{letter-spacing:0.413952pt;}
.ls2{letter-spacing:0.416000pt;}
.ls2a{letter-spacing:0.424704pt;}
.ls12{letter-spacing:0.430080pt;}
.lsd{letter-spacing:0.456960pt;}
.ls11{letter-spacing:0.462336pt;}
.ls21{letter-spacing:0.467712pt;}
.ls8{letter-spacing:0.482816pt;}
.ls1b{letter-spacing:0.516096pt;}
.ls13{letter-spacing:0.521472pt;}
.ls25{letter-spacing:0.537600pt;}
.ls28{letter-spacing:0.639360pt;}
.lse{letter-spacing:0.639744pt;}
.ls3{letter-spacing:0.640000pt;}
.ls29{letter-spacing:1.290240pt;}
.ls17{letter-spacing:1.693440pt;}
.ws0{word-spacing:-18.208000pt;}
.ws1{word-spacing:-17.894400pt;}
.ws65{word-spacing:-14.929152pt;}
.ws58{word-spacing:-14.515200pt;}
.ws4e{word-spacing:-14.509824pt;}
.ws4d{word-spacing:-14.504448pt;}
.ws5d{word-spacing:-14.499072pt;}
.ws2{word-spacing:-14.493696pt;}
.ws4{word-spacing:-13.896960pt;}
.ws21{word-spacing:-13.870080pt;}
.ws3{word-spacing:-9.607680pt;}
.ws5c{word-spacing:-9.593856pt;}
.ws6b{word-spacing:-9.590400pt;}
.ws5e{word-spacing:-9.279360pt;}
.wsb{word-spacing:-0.771328pt;}
.ws2f{word-spacing:-0.419328pt;}
.ws59{word-spacing:-0.413952pt;}
.ws7{word-spacing:-0.288000pt;}
.wsa{word-spacing:-0.211968pt;}
.ws6{word-spacing:-0.204800pt;}
.ws2d{word-spacing:-0.161280pt;}
.ws5{word-spacing:0.000000pt;}
.ws57{word-spacing:0.102144pt;}
.ws2b{word-spacing:0.118272pt;}
.ws4c{word-spacing:0.172032pt;}
.ws55{word-spacing:0.397824pt;}
.ws9{word-spacing:0.582912pt;}
.ws2e{word-spacing:0.639744pt;}
.ws17{word-spacing:0.854784pt;}
.wsc{word-spacing:0.860160pt;}
.wsf{word-spacing:0.865536pt;}
.ws28{word-spacing:1.075200pt;}
.ws8{word-spacing:1.152000pt;}
.ws33{word-spacing:1.693440pt;}
.ws2c{word-spacing:1.935360pt;}
.ws51{word-spacing:2.139648pt;}
.ws1e{word-spacing:2.145024pt;}
.ws63{word-spacing:2.558976pt;}
.ws29{word-spacing:2.736384pt;}
.ws53{word-spacing:2.972928pt;}
.ws2a{word-spacing:3.198720pt;}
.ws54{word-spacing:3.413760pt;}
.ws1a{word-spacing:3.419136pt;}
.wse{word-spacing:3.424512pt;}
.ws38{word-spacing:4.478208pt;}
.ws52{word-spacing:4.698624pt;}
.ws12{word-spacing:4.704000pt;}
.ws66{word-spacing:5.972736pt;}
.ws50{word-spacing:5.978112pt;}
.wsd{word-spacing:5.983488pt;}
.ws26{word-spacing:5.988864pt;}
.ws6d{word-spacing:6.402816pt;}
.ws3a{word-spacing:6.585600pt;}
.ws31{word-spacing:6.832896pt;}
.ws61{word-spacing:7.252224pt;}
.ws68{word-spacing:7.257600pt;}
.ws5b{word-spacing:7.262976pt;}
.ws16{word-spacing:7.268352pt;}
.ws67{word-spacing:7.682304pt;}
.ws4a{word-spacing:7.865088pt;}
.ws23{word-spacing:8.542464pt;}
.ws19{word-spacing:8.547840pt;}
.ws46{word-spacing:9.391872pt;}
.ws47{word-spacing:9.816576pt;}
.ws1c{word-spacing:9.821952pt;}
.ws14{word-spacing:9.827328pt;}
.ws56{word-spacing:10.875648pt;}
.ws10{word-spacing:11.106816pt;}
.ws39{word-spacing:11.708928pt;}
.ws69{word-spacing:11.934720pt;}
.ws3d{word-spacing:11.961600pt;}
.ws3e{word-spacing:12.052992pt;}
.ws3c{word-spacing:12.160512pt;}
.ws40{word-spacing:12.375552pt;}
.ws3f{word-spacing:12.380928pt;}
.ws13{word-spacing:12.386304pt;}
.ws64{word-spacing:13.440000pt;}
.ws5f{word-spacing:13.660416pt;}
.ws18{word-spacing:13.665792pt;}
.ws4b{word-spacing:14.719488pt;}
.ws5a{word-spacing:14.939904pt;}
.ws30{word-spacing:14.945280pt;}
.ws37{word-spacing:15.482880pt;}
.ws3b{word-spacing:15.568896pt;}
.ws36{word-spacing:15.998976pt;}
.ws11{word-spacing:16.224768pt;}
.ws32{word-spacing:16.638720pt;}
.ws35{word-spacing:16.837632pt;}
.ws15{word-spacing:17.498880pt;}
.ws1b{word-spacing:17.504256pt;}
.ws43{word-spacing:18.332160pt;}
.ws42{word-spacing:18.348288pt;}
.ws41{word-spacing:18.783744pt;}
.ws60{word-spacing:20.063232pt;}
.ws22{word-spacing:20.068608pt;}
.ws49{word-spacing:20.670720pt;}
.ws6c{word-spacing:21.342720pt;}
.ws1d{word-spacing:21.348096pt;}
.ws48{word-spacing:22.627584pt;}
.ws27{word-spacing:23.907072pt;}
.ws62{word-spacing:25.186560pt;}
.ws4f{word-spacing:26.466048pt;}
.ws34{word-spacing:27.745536pt;}
.ws25{word-spacing:29.025024pt;}
.ws1f{word-spacing:30.304512pt;}
.ws24{word-spacing:32.863488pt;}
.ws45{word-spacing:34.148352pt;}
.ws44{word-spacing:35.427840pt;}
.ws6a{word-spacing:43.104768pt;}
.ws20{word-spacing:69.302016pt;}
._6{margin-left:-3.200000pt;}
._1{margin-left:-1.689600pt;}
._2{width:1.436672pt;}
._4{width:2.385920pt;}
._3{width:3.420672pt;}
._7{width:7.109888pt;}
._5{width:19.200000pt;}
._8{width:2188.160000pt;}
._0{width:2220.160000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:53.760000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:51.307067pt;}
.y83{bottom:98.023744pt;}
.ya6{bottom:98.025339pt;}
.y30{bottom:98.026491pt;}
.y5a{bottom:104.107067pt;}
.y82{bottom:113.384320pt;}
.y59{bottom:113.385915pt;}
.yc3{bottom:113.386491pt;}
.y2f{bottom:119.467067pt;}
.y81{bottom:128.744896pt;}
.y58{bottom:128.746491pt;}
.y2e{bottom:129.387067pt;}
.yc2{bottom:134.827067pt;}
.y80{bottom:144.105472pt;}
.yc1{bottom:144.747067pt;}
.y57{bottom:150.187200pt;}
.y7f{bottom:159.466048pt;}
.y56{bottom:159.787067pt;}
.y10a{bottom:161.385019pt;}
.y123{bottom:165.221947pt;}
.yf3{bottom:165.222651pt;}
.y2d{bottom:165.224251pt;}
.yde{bottom:165.226171pt;}
.y7e{bottom:174.826624pt;}
.y109{bottom:184.425211pt;}
.y122{bottom:188.262139pt;}
.yf2{bottom:188.262843pt;}
.y55{bottom:188.263611pt;}
.yc0{bottom:188.264315pt;}
.y2c{bottom:188.264443pt;}
.ydd{bottom:188.586235pt;}
.y7d{bottom:196.267067pt;}
.y7c{bottom:205.867067pt;}
.y108{bottom:207.465403pt;}
.ya5{bottom:210.980027pt;}
.y141{bottom:210.981499pt;}
.y121{bottom:210.982459pt;}
.yf1{bottom:210.983163pt;}
.y54{bottom:210.983931pt;}
.ybf{bottom:210.984635pt;}
.y2b{bottom:210.984763pt;}
.ydc{bottom:210.986683pt;}
.y107{bottom:230.505595pt;}
.ya4{bottom:234.020219pt;}
.y140{bottom:234.021691pt;}
.y120{bottom:234.022651pt;}
.yf0{bottom:234.023355pt;}
.y53{bottom:234.024123pt;}
.ybe{bottom:234.024827pt;}
.y2a{bottom:234.024955pt;}
.ydb{bottom:234.026875pt;}
.y106{bottom:253.865659pt;}
.ya3{bottom:257.060411pt;}
.y13f{bottom:257.061883pt;}
.yda{bottom:257.062592pt;}
.y11f{bottom:257.062843pt;}
.yef{bottom:257.063547pt;}
.y52{bottom:257.064315pt;}
.ybd{bottom:257.065019pt;}
.y29{bottom:257.065147pt;}
.y105{bottom:276.266107pt;}
.ya2{bottom:280.100603pt;}
.y13e{bottom:280.102075pt;}
.yd9{bottom:280.102784pt;}
.y11e{bottom:280.103035pt;}
.yee{bottom:280.103739pt;}
.y51{bottom:280.104507pt;}
.ybc{bottom:280.105211pt;}
.y28{bottom:280.105339pt;}
.y7b{bottom:280.106875pt;}
.y104{bottom:299.306299pt;}
.y7a{bottom:303.140731pt;}
.ya1{bottom:303.140795pt;}
.y13d{bottom:303.142267pt;}
.yd8{bottom:303.142976pt;}
.y11d{bottom:303.143227pt;}
.yed{bottom:303.143931pt;}
.y50{bottom:303.144699pt;}
.ybb{bottom:303.145403pt;}
.y27{bottom:303.145531pt;}
.y103{bottom:322.346491pt;}
.y79{bottom:326.180923pt;}
.ya0{bottom:326.180987pt;}
.y13c{bottom:326.182459pt;}
.yd7{bottom:326.183168pt;}
.y11c{bottom:326.183419pt;}
.yec{bottom:326.184123pt;}
.y4f{bottom:326.184891pt;}
.yba{bottom:326.185595pt;}
.y26{bottom:326.185723pt;}
.y102{bottom:345.706555pt;}
.y78{bottom:349.221115pt;}
.y9f{bottom:349.221179pt;}
.y13b{bottom:349.222651pt;}
.yd6{bottom:349.223360pt;}
.y11b{bottom:349.223611pt;}
.yeb{bottom:349.224315pt;}
.y4e{bottom:349.225083pt;}
.y25{bottom:349.225915pt;}
.yb9{bottom:349.545659pt;}
.y101{bottom:368.426875pt;}
.y77{bottom:371.941435pt;}
.y13a{bottom:371.942971pt;}
.yd5{bottom:371.943680pt;}
.y11a{bottom:371.943931pt;}
.yea{bottom:371.944635pt;}
.y4d{bottom:371.945403pt;}
.y24{bottom:371.946235pt;}
.y9e{bottom:372.261371pt;}
.yb8{bottom:372.265979pt;}
.y100{bottom:391.467067pt;}
.y76{bottom:394.981627pt;}
.y9d{bottom:394.981691pt;}
.y139{bottom:394.983163pt;}
.yd4{bottom:394.983872pt;}
.y119{bottom:394.984123pt;}
.ye9{bottom:394.984827pt;}
.y4c{bottom:394.985595pt;}
.yb7{bottom:394.986299pt;}
.y23{bottom:394.986427pt;}
.yff{bottom:411.627067pt;}
.y75{bottom:418.021819pt;}
.y9c{bottom:418.021883pt;}
.y138{bottom:418.023355pt;}
.yd3{bottom:418.024064pt;}
.y118{bottom:418.024315pt;}
.ye8{bottom:418.025019pt;}
.y4b{bottom:418.025787pt;}
.y22{bottom:418.026619pt;}
.yb6{bottom:418.346363pt;}
.y74{bottom:441.062011pt;}
.y9b{bottom:441.062075pt;}
.y137{bottom:441.063547pt;}
.yd2{bottom:441.064256pt;}
.y117{bottom:441.064507pt;}
.ye7{bottom:441.065211pt;}
.y4a{bottom:441.065979pt;}
.y21{bottom:441.066811pt;}
.yb5{bottom:441.386555pt;}
.y73{bottom:464.102203pt;}
.y9a{bottom:464.102267pt;}
.y136{bottom:464.103739pt;}
.yd1{bottom:464.104448pt;}
.y116{bottom:464.104699pt;}
.ye6{bottom:464.105403pt;}
.y49{bottom:464.106171pt;}
.yb4{bottom:464.106875pt;}
.y20{bottom:464.107003pt;}
.y72{bottom:487.142395pt;}
.y99{bottom:487.142459pt;}
.y135{bottom:487.143931pt;}
.yd0{bottom:487.144640pt;}
.y115{bottom:487.144891pt;}
.ye5{bottom:487.145595pt;}
.yb3{bottom:487.145787pt;}
.y48{bottom:487.146363pt;}
.y1f{bottom:487.467067pt;}
.y71{bottom:510.182587pt;}
.y98{bottom:510.182651pt;}
.y134{bottom:510.184123pt;}
.ycf{bottom:510.184832pt;}
.yb2{bottom:510.185979pt;}
.y47{bottom:510.186555pt;}
.y114{bottom:510.504955pt;}
.ye4{bottom:510.505659pt;}
.y1e{bottom:511.147067pt;}
.y1d{bottom:528.099195pt;}
.y70{bottom:533.222779pt;}
.y97{bottom:533.222843pt;}
.y133{bottom:533.224315pt;}
.yce{bottom:533.225024pt;}
.y113{bottom:533.225275pt;}
.ye3{bottom:533.225979pt;}
.yb1{bottom:533.226171pt;}
.y46{bottom:533.226747pt;}
.y1c{bottom:543.138555pt;}
.y6f{bottom:555.943099pt;}
.y96{bottom:555.943163pt;}
.y132{bottom:555.944635pt;}
.ycd{bottom:555.945344pt;}
.y45{bottom:555.945403pt;}
.y112{bottom:555.945595pt;}
.yb0{bottom:555.946491pt;}
.ye2{bottom:556.266171pt;}
.y1b{bottom:558.499131pt;}
.y1a{bottom:573.859707pt;}
.y6e{bottom:578.983291pt;}
.y95{bottom:578.983355pt;}
.y131{bottom:578.984827pt;}
.ycc{bottom:578.985536pt;}
.y44{bottom:578.985595pt;}
.y111{bottom:578.985787pt;}
.yaf{bottom:578.986683pt;}
.ye1{bottom:579.306363pt;}
.y19{bottom:588.899067pt;}
.y6d{bottom:602.023483pt;}
.y94{bottom:602.023547pt;}
.y130{bottom:602.025019pt;}
.ycb{bottom:602.025728pt;}
.y43{bottom:602.025787pt;}
.y110{bottom:602.025979pt;}
.ye0{bottom:602.026683pt;}
.yae{bottom:602.026875pt;}
.y18{bottom:604.259643pt;}
.y17{bottom:619.620219pt;}
.yad{bottom:625.063547pt;}
.y6c{bottom:625.063675pt;}
.y93{bottom:625.063739pt;}
.y12f{bottom:625.065211pt;}
.yca{bottom:625.065920pt;}
.y42{bottom:625.065979pt;}
.y10f{bottom:625.066171pt;}
.ydf{bottom:625.066875pt;}
.y16{bottom:634.980795pt;}
.yac{bottom:648.103739pt;}
.y6b{bottom:648.103867pt;}
.y12e{bottom:648.105403pt;}
.yc9{bottom:648.106112pt;}
.y41{bottom:648.106171pt;}
.y92{bottom:648.423803pt;}
.y10e{bottom:648.426235pt;}
.y15{bottom:650.341371pt;}
.y14{bottom:665.701947pt;}
.yab{bottom:671.143931pt;}
.y6a{bottom:671.144059pt;}
.y91{bottom:671.144123pt;}
.y12d{bottom:671.145595pt;}
.y40{bottom:671.146363pt;}
.yc8{bottom:671.466176pt;}
.y10d{bottom:671.466427pt;}
.y13{bottom:681.062523pt;}
.yaa{bottom:694.184123pt;}
.y69{bottom:694.184251pt;}
.y90{bottom:694.184315pt;}
.yfe{bottom:694.184699pt;}
.y12c{bottom:694.185787pt;}
.yc7{bottom:694.186496pt;}
.y3f{bottom:694.186555pt;}
.y10c{bottom:694.186747pt;}
.y12{bottom:696.423099pt;}
.y11{bottom:711.783675pt;}
.ya9{bottom:716.904443pt;}
.y68{bottom:716.904571pt;}
.y8f{bottom:716.904635pt;}
.yfd{bottom:716.905019pt;}
.y12b{bottom:716.906107pt;}
.yc6{bottom:716.906816pt;}
.y3e{bottom:716.906875pt;}
.y10{bottom:727.144251pt;}
.y3d{bottom:739.944635pt;}
.y8e{bottom:739.944827pt;}
.yfc{bottom:739.945211pt;}
.y12a{bottom:739.946299pt;}
.yc5{bottom:739.947008pt;}
.y67{bottom:740.264635pt;}
.yf{bottom:742.504827pt;}
.ye{bottom:757.544187pt;}
.y3c{bottom:762.984827pt;}
.yc4{bottom:762.984955pt;}
.y8d{bottom:762.985019pt;}
.yfb{bottom:762.985403pt;}
.y129{bottom:762.986491pt;}
.y66{bottom:763.304827pt;}
.yd{bottom:772.904763pt;}
.y3b{bottom:786.025019pt;}
.y65{bottom:786.025147pt;}
.y8c{bottom:786.025211pt;}
.yfa{bottom:786.025595pt;}
.y128{bottom:786.026683pt;}
.yc{bottom:788.265339pt;}
.yb{bottom:803.625915pt;}
.y3a{bottom:809.065211pt;}
.y64{bottom:809.065339pt;}
.y8b{bottom:809.065403pt;}
.yf9{bottom:809.065787pt;}
.y127{bottom:809.066875pt;}
.ya{bottom:818.986491pt;}
.y39{bottom:832.105403pt;}
.y63{bottom:832.105531pt;}
.y8a{bottom:832.105595pt;}
.yf8{bottom:832.105979pt;}
.y126{bottom:832.106363pt;}
.y9{bottom:834.347067pt;}
.ya8{bottom:855.145595pt;}
.y62{bottom:855.145723pt;}
.y89{bottom:855.145787pt;}
.yf7{bottom:855.146171pt;}
.y125{bottom:855.146555pt;}
.y38{bottom:855.465467pt;}
.y8{bottom:858.026683pt;}
.y37{bottom:878.185787pt;}
.y61{bottom:878.185915pt;}
.y88{bottom:878.185979pt;}
.yf6{bottom:878.186363pt;}
.y124{bottom:878.186747pt;}
.y7{bottom:883.306811pt;}
.y36{bottom:900.906107pt;}
.y60{bottom:900.906235pt;}
.y87{bottom:900.906299pt;}
.yf5{bottom:900.906683pt;}
.y6{bottom:908.586939pt;}
.y35{bottom:923.946299pt;}
.y5f{bottom:923.946427pt;}
.y86{bottom:923.946491pt;}
.yf4{bottom:923.946875pt;}
.y5{bottom:933.867067pt;}
.y34{bottom:946.986491pt;}
.y5e{bottom:946.986619pt;}
.y85{bottom:946.986683pt;}
.ya7{bottom:947.306363pt;}
.y4{bottom:960.747067pt;}
.y33{bottom:970.026683pt;}
.y5d{bottom:970.026811pt;}
.y84{bottom:970.026875pt;}
.y10b{bottom:970.346555pt;}
.y3{bottom:988.587067pt;}
.y32{bottom:993.066875pt;}
.y5c{bottom:993.067003pt;}
.y2{bottom:1014.827067pt;}
.y31{bottom:1016.107067pt;}
.y5b{bottom:1016.427067pt;}
.h6{height:33.918750pt;}
.ha{height:52.762500pt;}
.h7{height:52.764804pt;}
.h4{height:56.070000pt;}
.h2{height:61.410000pt;}
.h1{height:62.812500pt;}
.hc{height:62.925256pt;}
.h12{height:62.927304pt;}
.h16{height:62.927816pt;}
.h15{height:62.928840pt;}
.he{height:62.930120pt;}
.h9{height:62.931656pt;}
.h13{height:62.933192pt;}
.hf{height:62.933448pt;}
.h8{height:62.934728pt;}
.h14{height:62.935496pt;}
.h5{height:62.936264pt;}
.h11{height:62.938312pt;}
.hd{height:62.939080pt;}
.h10{height:62.942899pt;}
.hb{height:62.950344pt;}
.h3{height:66.750000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.280000pt;}
.x5{left:149.440000pt;}
.x3{left:162.560000pt;}
.x4{left:253.440000pt;}
.x9{left:333.440000pt;}
.x2{left:414.720000pt;}
.x8{left:525.119424pt;}
.x7{left:564.159808pt;}
.x6{left:574.719936pt;}
}




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