
    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_d5d768740b6e609a833210f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_c876fece83b2be12d947571e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_f91ef4d1b84cb446c6931a4a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.687000;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_870eef8821ba788639d9618a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923000;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_096b6a7b72cf22bea7cedf47.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.383000;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_cc0b20e70f989451934caa10.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_1db2a22f486c823a062c0100.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.922000;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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:18.937037px;}
.ls1{letter-spacing:19.295693px;}
.lsb{letter-spacing:20.263473px;}
.lsa{letter-spacing:20.575473px;}
.ls6{letter-spacing:21.088973px;}
.ls4{letter-spacing:22.171473px;}
.ls2{letter-spacing:22.308403px;}
.ls5{letter-spacing:23.407473px;}
.ls0{letter-spacing:28.190362px;}
.ls9{letter-spacing:32.923114px;}
.ls7{letter-spacing:35.117578px;}
.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;}
}
.ws23{word-spacing:-19.510886px;}
.ws41{word-spacing:-2.940979px;}
.ws68{word-spacing:-1.900877px;}
.ws57{word-spacing:-1.291162px;}
.ws37{word-spacing:-1.219430px;}
.ws5e{word-spacing:-1.147699px;}
.ws26{word-spacing:-0.968371px;}
.ws10{word-spacing:-0.789043px;}
.ws4e{word-spacing:-0.573850px;}
.ws36{word-spacing:-0.430387px;}
.ws32{word-spacing:-0.394522px;}
.ws33{word-spacing:-0.358656px;}
.ws56{word-spacing:-0.286925px;}
.ws6{word-spacing:-0.215194px;}
.ws6d{word-spacing:-0.179328px;}
.ws43{word-spacing:-0.071731px;}
.ws78{word-spacing:-0.047821px;}
.ws27{word-spacing:0.000000px;}
.ws38{word-spacing:0.071731px;}
.ws7{word-spacing:0.573850px;}
.ws54{word-spacing:0.591972px;}
.ws67{word-spacing:0.717312px;}
.ws3f{word-spacing:0.994095px;}
.ws3c{word-spacing:1.004237px;}
.ws5b{word-spacing:1.075968px;}
.ws34{word-spacing:1.147699px;}
.ws6f{word-spacing:1.219430px;}
.ws6e{word-spacing:1.398758px;}
.ws40{word-spacing:1.649818px;}
.wsf{word-spacing:1.793280px;}
.ws22{word-spacing:1.865011px;}
.ws2b{word-spacing:2.223667px;}
.ws2f{word-spacing:2.295398px;}
.ws6b{word-spacing:2.367130px;}
.ws24{word-spacing:2.438861px;}
.ws25{word-spacing:2.510592px;}
.ws3e{word-spacing:2.654054px;}
.ws6a{word-spacing:2.689920px;}
.ws3{word-spacing:2.725786px;}
.ws9{word-spacing:2.797517px;}
.ws77{word-spacing:2.803854px;}
.ws79{word-spacing:2.816633px;}
.ws7f{word-spacing:2.864454px;}
.ws30{word-spacing:3.012710px;}
.ws35{word-spacing:3.156173px;}
.wse{word-spacing:3.192038px;}
.ws47{word-spacing:3.658291px;}
.wsc{word-spacing:3.873485px;}
.ws4d{word-spacing:3.881743px;}
.ws49{word-spacing:3.883041px;}
.ws64{word-spacing:3.894065px;}
.ws48{word-spacing:3.896809px;}
.ws60{word-spacing:3.897888px;}
.ws62{word-spacing:3.897972px;}
.ws4a{word-spacing:3.898395px;}
.ws4b{word-spacing:3.899424px;}
.ws4c{word-spacing:3.899737px;}
.ws1d{word-spacing:3.945216px;}
.ws28{word-spacing:4.088678px;}
.ws1a{word-spacing:4.160410px;}
.ws8{word-spacing:4.447334px;}
.ws3d{word-spacing:4.483200px;}
.ws20{word-spacing:4.734259px;}
.ws3b{word-spacing:4.805990px;}
.ws39{word-spacing:5.128781px;}
.ws16{word-spacing:5.236378px;}
.wsd{word-spacing:5.379825px;}
.ws11{word-spacing:5.379840px;}
.ws5f{word-spacing:5.595034px;}
.ws2c{word-spacing:5.810227px;}
.ws12{word-spacing:5.881958px;}
.ws15{word-spacing:6.061286px;}
.ws5{word-spacing:6.384077px;}
.ws1{word-spacing:6.455775px;}
.ws3a{word-spacing:6.455808px;}
.ws5d{word-spacing:6.742733px;}
.ws50{word-spacing:6.886195px;}
.ws14{word-spacing:6.957926px;}
.ws29{word-spacing:7.101389px;}
.wsa{word-spacing:7.388314px;}
.ws2e{word-spacing:7.675238px;}
.ws1b{word-spacing:7.818701px;}
.ws51{word-spacing:7.890432px;}
.ws46{word-spacing:7.962163px;}
.ws69{word-spacing:7.998029px;}
.ws4{word-spacing:8.679475px;}
.ws2a{word-spacing:8.822938px;}
.ws1e{word-spacing:9.109862px;}
.ws18{word-spacing:9.611981px;}
.ws21{word-spacing:9.970637px;}
.wsb{word-spacing:10.329293px;}
.ws19{word-spacing:10.401024px;}
.ws4f{word-spacing:10.544486px;}
.ws13{word-spacing:11.333530px;}
.ws53{word-spacing:11.476992px;}
.ws2d{word-spacing:11.620454px;}
.ws58{word-spacing:11.693126px;}
.ws44{word-spacing:11.695793px;}
.ws59{word-spacing:11.698537px;}
.ws6c{word-spacing:11.871514px;}
.ws1c{word-spacing:12.839885px;}
.ws17{word-spacing:13.270272px;}
.ws0{word-spacing:13.479658px;}
.ws31{word-spacing:13.628928px;}
.ws1f{word-spacing:14.059315px;}
.ws5c{word-spacing:14.633165px;}
.ws74{word-spacing:16.498176px;}
.ws42{word-spacing:16.518887px;}
.ws73{word-spacing:18.972902px;}
.ws76{word-spacing:19.510886px;}
.ws55{word-spacing:20.016887px;}
.ws75{word-spacing:22.344269px;}
.ws63{word-spacing:23.314260px;}
.ws66{word-spacing:23.320260px;}
.ws61{word-spacing:23.322887px;}
.ws65{word-spacing:23.328887px;}
.ws7c{word-spacing:25.337332px;}
.ws80{word-spacing:25.338970px;}
.ws7e{word-spacing:25.339420px;}
.ws7d{word-spacing:25.340416px;}
.ws7a{word-spacing:25.343671px;}
.ws7b{word-spacing:25.349840px;}
.ws71{word-spacing:30.629222px;}
.ws72{word-spacing:31.920384px;}
.ws70{word-spacing:35.184154px;}
.ws5a{word-spacing:36.798106px;}
.ws45{word-spacing:36.806381px;}
.ws52{word-spacing:36.821136px;}
.ws2{word-spacing:69.937725px;}
._3{margin-left:-9.709486px;}
._1c{margin-left:-7.606184px;}
._7{margin-left:-6.097152px;}
._1b{margin-left:-4.447334px;}
._1{margin-left:-3.202064px;}
._5{margin-left:-1.865011px;}
._4{width:1.936742px;}
._2{width:3.202064px;}
._18{width:19.172098px;}
._a{width:20.443392px;}
._21{width:21.784573px;}
._f{width:22.829236px;}
._20{width:24.011238px;}
._16{width:26.371242px;}
._6{width:29.338061px;}
._b{width:30.987878px;}
._19{width:32.540125px;}
._12{width:34.386775px;}
._1f{width:35.722138px;}
._10{width:37.156762px;}
._9{width:39.236966px;}
._11{width:40.241203px;}
._c{width:41.604096px;}
._14{width:42.823526px;}
._8{width:45.549312px;}
._1e{width:48.346829px;}
._d{width:50.570496px;}
._13{width:51.646464px;}
._1d{width:54.085325px;}
._22{width:56.783203px;}
._15{width:58.030541px;}
._17{width:60.397670px;}
._3f{width:71.741825px;}
._1a{width:80.697600px;}
._23{width:84.642816px;}
._3b{width:92.438599px;}
._38{width:95.260014px;}
._e{width:96.836850px;}
._2c{width:110.529113px;}
._3d{width:112.877124px;}
._0{width:116.203950px;}
._26{width:131.219745px;}
._2e{width:147.121437px;}
._28{width:151.664412px;}
._24{width:157.903640px;}
._2a{width:167.818211px;}
._37{width:184.215887px;}
._43{width:193.225296px;}
._41{width:224.743835px;}
._3a{width:226.833595px;}
._35{width:246.124443px;}
._39{width:247.482548px;}
._40{width:248.822124px;}
._32{width:263.531123px;}
._31{width:274.946517px;}
._30{width:284.180077px;}
._34{width:300.342341px;}
._3e{width:325.725825px;}
._29{width:351.166384px;}
._42{width:401.961116px;}
._33{width:427.353854px;}
._44{width:859.305378px;}
._2b{width:884.687270px;}
._36{width:1011.705122px;}
._3c{width:1037.142597px;}
._27{width:1044.165114px;}
._2f{width:1062.543470px;}
._2d{width:1087.918650px;}
._25{width:1089.691367px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(76,51,153);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y28{bottom:97.729500px;}
.y63{bottom:142.561500px;}
.y27{bottom:150.972000px;}
.yd3{bottom:160.644000px;}
.y93{bottom:164.230500px;}
.y26{bottom:172.639500px;}
.yd2{bottom:174.840000px;}
.y62{bottom:179.043000px;}
.y92{bottom:185.899500px;}
.y25{bottom:194.308500px;}
.yd1{bottom:203.233500px;}
.y49{bottom:205.965000px;}
.y91{bottom:207.567000px;}
.y61{bottom:215.526000px;}
.y24{bottom:215.977500px;}
.y90{bottom:229.236000px;}
.yd0{bottom:231.627000px;}
.y23{bottom:237.646500px;}
.y48{bottom:247.060500px;}
.y8f{bottom:250.905000px;}
.y60{bottom:252.007500px;}
.y22{bottom:259.315500px;}
.ycf{bottom:260.020500px;}
.y47{bottom:268.729500px;}
.y21{bottom:280.984500px;}
.y8e{bottom:284.155500px;}
.yce{bottom:288.414000px;}
.y5f{bottom:288.490500px;}
.y46{bottom:290.398500px;}
.y20{bottom:302.652000px;}
.yab{bottom:306.327000px;}
.ycd{bottom:316.807500px;}
.y45{bottom:323.649000px;}
.y1f{bottom:324.321000px;}
.y5e{bottom:324.972000px;}
.yaa{bottom:327.994500px;}
.y77{bottom:329.812500px;}
.y8d{bottom:335.338500px;}
.ycc{bottom:345.201000px;}
.y1e{bottom:345.990000px;}
.y44{bottom:356.899500px;}
.y5d{bottom:361.453500px;}
.ya9{bottom:364.608000px;}
.y76{bottom:366.426000px;}
.y1d{bottom:367.659000px;}
.y8c{bottom:368.589000px;}
.ycb{bottom:373.594500px;}
.ya8{bottom:386.277000px;}
.yca{bottom:387.790500px;}
.y1c{bottom:389.328000px;}
.y5c{bottom:397.936500px;}
.y75{bottom:403.038000px;}
.y43{bottom:403.662000px;}
.y1b{bottom:410.997000px;}
.y8b{bottom:414.540000px;}
.yc9{bottom:416.184000px;}
.ya7{bottom:422.889000px;}
.yc8{bottom:430.381500px;}
.y1a{bottom:432.664500px;}
.y5b{bottom:434.418000px;}
.y42{bottom:436.911000px;}
.y74{bottom:439.651500px;}
.ya6{bottom:444.558000px;}
.y8a{bottom:447.790500px;}
.y19{bottom:454.333500px;}
.yc7{bottom:458.775000px;}
.ya5{bottom:466.227000px;}
.y5a{bottom:470.899500px;}
.yc6{bottom:472.971000px;}
.y18{bottom:476.002500px;}
.y73{bottom:476.263500px;}
.y41{bottom:483.673500px;}
.y89{bottom:493.743000px;}
.y17{bottom:497.671500px;}
.yc5{bottom:501.364500px;}
.ya4{bottom:502.839000px;}
.y40{bottom:505.342500px;}
.y59{bottom:507.382500px;}
.y72{bottom:512.877000px;}
.y88{bottom:515.412000px;}
.yc4{bottom:515.562000px;}
.y16{bottom:519.340500px;}
.ya3{bottom:524.508000px;}
.yc3{bottom:529.758000px;}
.y87{bottom:537.081000px;}
.y3f{bottom:538.593000px;}
.y15{bottom:541.008000px;}
.y58{bottom:543.864000px;}
.ya2{bottom:546.177000px;}
.y71{bottom:549.489000px;}
.yc2{bottom:558.151500px;}
.y86{bottom:558.750000px;}
.y14{bottom:562.677000px;}
.ya1{bottom:567.846000px;}
.yc1{bottom:572.349000px;}
.y57{bottom:580.347000px;}
.y13{bottom:584.346000px;}
.y3e{bottom:585.355500px;}
.y70{bottom:586.102500px;}
.y85{bottom:591.999000px;}
.yc0{bottom:600.742500px;}
.ya0{bottom:604.458000px;}
.y12{bottom:606.015000px;}
.y3d{bottom:607.023000px;}
.ybf{bottom:614.938500px;}
.y56{bottom:616.828500px;}
.y6f{bottom:622.714500px;}
.y84{bottom:625.249500px;}
.y9f{bottom:626.127000px;}
.y11{bottom:627.684000px;}
.y3c{bottom:628.692000px;}
.ybe{bottom:629.136000px;}
.y9e{bottom:647.796000px;}
.y10{bottom:649.353000px;}
.y3b{bottom:650.361000px;}
.y55{bottom:653.310000px;}
.ybd{bottom:657.529500px;}
.y6e{bottom:659.328000px;}
.y9d{bottom:669.465000px;}
.yf{bottom:671.020500px;}
.y3a{bottom:672.030000px;}
.y83{bottom:676.432500px;}
.ybc{bottom:685.923000px;}
.y54{bottom:689.793000px;}
.ye{bottom:692.689500px;}
.y39{bottom:693.699000px;}
.y6d{bottom:695.940000px;}
.y9c{bottom:708.891000px;}
.y82{bottom:709.683000px;}
.ybb{bottom:714.316500px;}
.y38{bottom:715.368000px;}
.yd{bottom:725.940000px;}
.y53{bottom:726.274500px;}
.y6c{bottom:732.553500px;}
.y37{bottom:737.035500px;}
.yba{bottom:742.710000px;}
.y9b{bottom:753.349500px;}
.y81{bottom:755.635500px;}
.y36{bottom:758.704500px;}
.y52{bottom:762.757500px;}
.y6b{bottom:769.165500px;}
.yb9{bottom:771.103500px;}
.yc{bottom:777.933000px;}
.y35{bottom:780.373500px;}
.y80{bottom:790.461000px;}
.y51{bottom:799.239000px;}
.yb8{bottom:799.497000px;}
.yb{bottom:799.602000px;}
.y34{bottom:802.042500px;}
.y9a{bottom:805.342500px;}
.y6a{bottom:805.779000px;}
.y7f{bottom:812.130000px;}
.ya{bottom:821.269500px;}
.y33{bottom:823.711500px;}
.y99{bottom:827.011500px;}
.yb7{bottom:827.890500px;}
.y7e{bottom:833.797500px;}
.y50{bottom:835.720500px;}
.yb6{bottom:842.086500px;}
.y69{bottom:842.391000px;}
.y9{bottom:842.938500px;}
.y32{bottom:845.380500px;}
.y98{bottom:848.680500px;}
.y7d{bottom:855.466500px;}
.y8{bottom:864.607500px;}
.y31{bottom:867.048000px;}
.y97{bottom:870.348000px;}
.yb5{bottom:870.480000px;}
.y4f{bottom:872.203500px;}
.y7c{bottom:877.135500px;}
.y68{bottom:879.004500px;}
.yb4{bottom:884.677500px;}
.y7{bottom:886.276500px;}
.y30{bottom:888.717000px;}
.y7b{bottom:898.804500px;}
.y96{bottom:903.598500px;}
.y6{bottom:907.945500px;}
.y4e{bottom:908.685000px;}
.y2f{bottom:910.386000px;}
.yb3{bottom:913.071000px;}
.y67{bottom:915.616500px;}
.y7a{bottom:920.473500px;}
.yb2{bottom:927.267000px;}
.y5{bottom:929.614500px;}
.y2e{bottom:932.055000px;}
.yb1{bottom:941.464500px;}
.y79{bottom:942.142500px;}
.y4d{bottom:944.905500px;}
.y4{bottom:951.282000px;}
.y66{bottom:952.228500px;}
.y2d{bottom:953.724000px;}
.y95{bottom:955.591500px;}
.y78{bottom:963.810000px;}
.yb0{bottom:969.858000px;}
.y2c{bottom:975.393000px;}
.yaf{bottom:984.054000px;}
.y3{bottom:984.532500px;}
.y4c{bottom:985.479000px;}
.y65{bottom:988.842000px;}
.y94{bottom:992.205000px;}
.y2b{bottom:997.060500px;}
.yae{bottom:998.251500px;}
.y4b{bottom:1007.148000px;}
.y2a{bottom:1018.729500px;}
.yad{bottom:1021.432500px;}
.y64{bottom:1025.454000px;}
.y4a{bottom:1028.817000px;}
.y2{bottom:1029.190500px;}
.y29{bottom:1040.398500px;}
.yac{bottom:1045.788000px;}
.y1{bottom:1062.067500px;}
.h4{height:35.865450px;}
.h3{height:53.798400px;}
.h2{height:64.557900px;}
.h1{height:77.469300px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x5{left:125.559000px;}
.x3{left:134.338500px;}
.x7{left:136.629000px;}
.x2{left:151.576500px;}
.x6{left:315.334500px;}
.x4{left:454.611000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:16.832922pt;}
.ls1{letter-spacing:17.151727pt;}
.lsb{letter-spacing:18.011976pt;}
.lsa{letter-spacing:18.289309pt;}
.ls6{letter-spacing:18.745754pt;}
.ls4{letter-spacing:19.707976pt;}
.ls2{letter-spacing:19.829692pt;}
.ls5{letter-spacing:20.806642pt;}
.ls0{letter-spacing:25.058099pt;}
.ls9{letter-spacing:29.264990pt;}
.ls7{letter-spacing:31.215625pt;}
.ws23{word-spacing:-17.343010pt;}
.ws41{word-spacing:-2.614204pt;}
.ws68{word-spacing:-1.689668pt;}
.ws57{word-spacing:-1.147699pt;}
.ws37{word-spacing:-1.083938pt;}
.ws5e{word-spacing:-1.020177pt;}
.ws26{word-spacing:-0.860774pt;}
.ws10{word-spacing:-0.701372pt;}
.ws4e{word-spacing:-0.510089pt;}
.ws36{word-spacing:-0.382566pt;}
.ws32{word-spacing:-0.350686pt;}
.ws33{word-spacing:-0.318805pt;}
.ws56{word-spacing:-0.255044pt;}
.ws6{word-spacing:-0.191283pt;}
.ws6d{word-spacing:-0.159403pt;}
.ws43{word-spacing:-0.063761pt;}
.ws78{word-spacing:-0.042507pt;}
.ws27{word-spacing:0.000000pt;}
.ws38{word-spacing:0.063761pt;}
.ws7{word-spacing:0.510089pt;}
.ws54{word-spacing:0.526198pt;}
.ws67{word-spacing:0.637611pt;}
.ws3f{word-spacing:0.883640pt;}
.ws3c{word-spacing:0.892655pt;}
.ws5b{word-spacing:0.956416pt;}
.ws34{word-spacing:1.020177pt;}
.ws6f{word-spacing:1.083938pt;}
.ws6e{word-spacing:1.243341pt;}
.ws40{word-spacing:1.466505pt;}
.wsf{word-spacing:1.594027pt;}
.ws22{word-spacing:1.657788pt;}
.ws2b{word-spacing:1.976593pt;}
.ws2f{word-spacing:2.040354pt;}
.ws6b{word-spacing:2.104115pt;}
.ws24{word-spacing:2.167876pt;}
.ws25{word-spacing:2.231637pt;}
.ws3e{word-spacing:2.359159pt;}
.ws6a{word-spacing:2.391040pt;}
.ws3{word-spacing:2.422921pt;}
.ws9{word-spacing:2.486682pt;}
.ws77{word-spacing:2.492315pt;}
.ws79{word-spacing:2.503674pt;}
.ws7f{word-spacing:2.546181pt;}
.ws30{word-spacing:2.677965pt;}
.ws35{word-spacing:2.805487pt;}
.wse{word-spacing:2.837367pt;}
.ws47{word-spacing:3.251814pt;}
.wsc{word-spacing:3.443098pt;}
.ws4d{word-spacing:3.450438pt;}
.ws49{word-spacing:3.451592pt;}
.ws64{word-spacing:3.461391pt;}
.ws48{word-spacing:3.463830pt;}
.ws60{word-spacing:3.464789pt;}
.ws62{word-spacing:3.464864pt;}
.ws4a{word-spacing:3.465240pt;}
.ws4b{word-spacing:3.466155pt;}
.ws4c{word-spacing:3.466433pt;}
.ws1d{word-spacing:3.506859pt;}
.ws28{word-spacing:3.634381pt;}
.ws1a{word-spacing:3.698142pt;}
.ws8{word-spacing:3.953186pt;}
.ws3d{word-spacing:3.985067pt;}
.ws20{word-spacing:4.208230pt;}
.ws3b{word-spacing:4.271991pt;}
.ws39{word-spacing:4.558916pt;}
.ws16{word-spacing:4.654558pt;}
.wsd{word-spacing:4.782067pt;}
.ws11{word-spacing:4.782080pt;}
.ws5f{word-spacing:4.973363pt;}
.ws2c{word-spacing:5.164646pt;}
.ws12{word-spacing:5.228407pt;}
.ws15{word-spacing:5.387810pt;}
.ws5{word-spacing:5.674735pt;}
.ws1{word-spacing:5.738467pt;}
.ws3a{word-spacing:5.738496pt;}
.ws5d{word-spacing:5.993540pt;}
.ws50{word-spacing:6.121062pt;}
.ws14{word-spacing:6.184823pt;}
.ws29{word-spacing:6.312346pt;}
.wsa{word-spacing:6.567390pt;}
.ws2e{word-spacing:6.822434pt;}
.ws1b{word-spacing:6.949956pt;}
.ws51{word-spacing:7.013717pt;}
.ws46{word-spacing:7.077478pt;}
.ws69{word-spacing:7.109359pt;}
.ws4{word-spacing:7.715089pt;}
.ws2a{word-spacing:7.842611pt;}
.ws1e{word-spacing:8.097655pt;}
.ws18{word-spacing:8.543983pt;}
.ws21{word-spacing:8.862788pt;}
.wsb{word-spacing:9.181594pt;}
.ws19{word-spacing:9.245355pt;}
.ws4f{word-spacing:9.372877pt;}
.ws13{word-spacing:10.074249pt;}
.ws53{word-spacing:10.201771pt;}
.ws2d{word-spacing:10.329293pt;}
.ws58{word-spacing:10.393890pt;}
.ws44{word-spacing:10.396261pt;}
.ws59{word-spacing:10.398700pt;}
.ws6c{word-spacing:10.552457pt;}
.ws1c{word-spacing:11.413231pt;}
.ws17{word-spacing:11.795797pt;}
.ws0{word-spacing:11.981918pt;}
.ws31{word-spacing:12.114603pt;}
.ws1f{word-spacing:12.497169pt;}
.ws5c{word-spacing:13.007258pt;}
.ws74{word-spacing:14.665045pt;}
.ws42{word-spacing:14.683455pt;}
.ws73{word-spacing:16.864802pt;}
.ws76{word-spacing:17.343010pt;}
.ws55{word-spacing:17.792788pt;}
.ws75{word-spacing:19.861572pt;}
.ws63{word-spacing:20.723787pt;}
.ws66{word-spacing:20.729120pt;}
.ws61{word-spacing:20.731455pt;}
.ws65{word-spacing:20.736788pt;}
.ws7c{word-spacing:22.522073pt;}
.ws80{word-spacing:22.523529pt;}
.ws7e{word-spacing:22.523929pt;}
.ws7d{word-spacing:22.524815pt;}
.ws7a{word-spacing:22.527707pt;}
.ws7b{word-spacing:22.533191pt;}
.ws71{word-spacing:27.225975pt;}
.ws72{word-spacing:28.373675pt;}
.ws70{word-spacing:31.274803pt;}
.ws5a{word-spacing:32.709427pt;}
.ws45{word-spacing:32.716783pt;}
.ws52{word-spacing:32.729899pt;}
.ws2{word-spacing:62.166867pt;}
._3{margin-left:-8.630654pt;}
._1c{margin-left:-6.761052pt;}
._7{margin-left:-5.419691pt;}
._1b{margin-left:-3.953186pt;}
._1{margin-left:-2.846279pt;}
._5{margin-left:-1.657788pt;}
._4{width:1.721549pt;}
._2{width:2.846279pt;}
._18{width:17.041865pt;}
._a{width:18.171904pt;}
._21{width:19.364065pt;}
._f{width:20.292654pt;}
._20{width:21.343323pt;}
._16{width:23.441104pt;}
._6{width:26.078276pt;}
._b{width:27.544781pt;}
._19{width:28.924556pt;}
._12{width:30.566023pt;}
._1f{width:31.753011pt;}
._10{width:33.028233pt;}
._9{width:34.877303pt;}
._11{width:35.769958pt;}
._c{width:36.981419pt;}
._14{width:38.065357pt;}
._8{width:40.488277pt;}
._1e{width:42.974959pt;}
._d{width:44.951552pt;}
._13{width:45.907968pt;}
._1d{width:48.075844pt;}
._22{width:50.473958pt;}
._15{width:51.582703pt;}
._17{width:53.686818pt;}
._3f{width:63.770511pt;}
._1a{width:71.731200pt;}
._23{width:75.238059pt;}
._3b{width:82.167644pt;}
._38{width:84.675568pt;}
._e{width:86.077200pt;}
._2c{width:98.248101pt;}
._3d{width:100.335221pt;}
._0{width:103.292400pt;}
._26{width:116.639773pt;}
._2e{width:130.774610pt;}
._28{width:134.812811pt;}
._24{width:140.358791pt;}
._2a{width:149.171743pt;}
._37{width:163.747455pt;}
._43{width:171.755818pt;}
._41{width:199.772297pt;}
._3a{width:201.629862pt;}
._35{width:218.777283pt;}
._39{width:219.984487pt;}
._40{width:221.175221pt;}
._32{width:234.249887pt;}
._31{width:244.396904pt;}
._30{width:252.604513pt;}
._34{width:266.970970pt;}
._3e{width:289.534067pt;}
._29{width:312.147897pt;}
._42{width:357.298770pt;}
._33{width:379.870093pt;}
._44{width:763.827003pt;}
._2b{width:786.388684pt;}
._36{width:899.293442pt;}
._3c{width:921.904530pt;}
._27{width:928.146768pt;}
._2f{width:944.483085pt;}
._2d{width:967.038800pt;}
._25{width:968.614549pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:86.870667pt;}
.y63{bottom:126.721333pt;}
.y27{bottom:134.197333pt;}
.yd3{bottom:142.794667pt;}
.y93{bottom:145.982667pt;}
.y26{bottom:153.457333pt;}
.yd2{bottom:155.413333pt;}
.y62{bottom:159.149333pt;}
.y92{bottom:165.244000pt;}
.y25{bottom:172.718667pt;}
.yd1{bottom:180.652000pt;}
.y49{bottom:183.080000pt;}
.y91{bottom:184.504000pt;}
.y61{bottom:191.578667pt;}
.y24{bottom:191.980000pt;}
.y90{bottom:203.765333pt;}
.yd0{bottom:205.890667pt;}
.y23{bottom:211.241333pt;}
.y48{bottom:219.609333pt;}
.y8f{bottom:223.026667pt;}
.y60{bottom:224.006667pt;}
.y22{bottom:230.502667pt;}
.ycf{bottom:231.129333pt;}
.y47{bottom:238.870667pt;}
.y21{bottom:249.764000pt;}
.y8e{bottom:252.582667pt;}
.yce{bottom:256.368000pt;}
.y5f{bottom:256.436000pt;}
.y46{bottom:258.132000pt;}
.y20{bottom:269.024000pt;}
.yab{bottom:272.290667pt;}
.ycd{bottom:281.606667pt;}
.y45{bottom:287.688000pt;}
.y1f{bottom:288.285333pt;}
.y5e{bottom:288.864000pt;}
.yaa{bottom:291.550667pt;}
.y77{bottom:293.166667pt;}
.y8d{bottom:298.078667pt;}
.ycc{bottom:306.845333pt;}
.y1e{bottom:307.546667pt;}
.y44{bottom:317.244000pt;}
.y5d{bottom:321.292000pt;}
.ya9{bottom:324.096000pt;}
.y76{bottom:325.712000pt;}
.y1d{bottom:326.808000pt;}
.y8c{bottom:327.634667pt;}
.ycb{bottom:332.084000pt;}
.ya8{bottom:343.357333pt;}
.yca{bottom:344.702667pt;}
.y1c{bottom:346.069333pt;}
.y5c{bottom:353.721333pt;}
.y75{bottom:358.256000pt;}
.y43{bottom:358.810667pt;}
.y1b{bottom:365.330667pt;}
.y8b{bottom:368.480000pt;}
.yc9{bottom:369.941333pt;}
.ya7{bottom:375.901333pt;}
.yc8{bottom:382.561333pt;}
.y1a{bottom:384.590667pt;}
.y5b{bottom:386.149333pt;}
.y42{bottom:388.365333pt;}
.y74{bottom:390.801333pt;}
.ya6{bottom:395.162667pt;}
.y8a{bottom:398.036000pt;}
.y19{bottom:403.852000pt;}
.yc7{bottom:407.800000pt;}
.ya5{bottom:414.424000pt;}
.y5a{bottom:418.577333pt;}
.yc6{bottom:420.418667pt;}
.y18{bottom:423.113333pt;}
.y73{bottom:423.345333pt;}
.y41{bottom:429.932000pt;}
.y89{bottom:438.882667pt;}
.y17{bottom:442.374667pt;}
.yc5{bottom:445.657333pt;}
.ya4{bottom:446.968000pt;}
.y40{bottom:449.193333pt;}
.y59{bottom:451.006667pt;}
.y72{bottom:455.890667pt;}
.y88{bottom:458.144000pt;}
.yc4{bottom:458.277333pt;}
.y16{bottom:461.636000pt;}
.ya3{bottom:466.229333pt;}
.yc3{bottom:470.896000pt;}
.y87{bottom:477.405333pt;}
.y3f{bottom:478.749333pt;}
.y15{bottom:480.896000pt;}
.y58{bottom:483.434667pt;}
.ya2{bottom:485.490667pt;}
.y71{bottom:488.434667pt;}
.yc2{bottom:496.134667pt;}
.y86{bottom:496.666667pt;}
.y14{bottom:500.157333pt;}
.ya1{bottom:504.752000pt;}
.yc1{bottom:508.754667pt;}
.y57{bottom:515.864000pt;}
.y13{bottom:519.418667pt;}
.y3e{bottom:520.316000pt;}
.y70{bottom:520.980000pt;}
.y85{bottom:526.221333pt;}
.yc0{bottom:533.993333pt;}
.ya0{bottom:537.296000pt;}
.y12{bottom:538.680000pt;}
.y3d{bottom:539.576000pt;}
.ybf{bottom:546.612000pt;}
.y56{bottom:548.292000pt;}
.y6f{bottom:553.524000pt;}
.y84{bottom:555.777333pt;}
.y9f{bottom:556.557333pt;}
.y11{bottom:557.941333pt;}
.y3c{bottom:558.837333pt;}
.ybe{bottom:559.232000pt;}
.y9e{bottom:575.818667pt;}
.y10{bottom:577.202667pt;}
.y3b{bottom:578.098667pt;}
.y55{bottom:580.720000pt;}
.ybd{bottom:584.470667pt;}
.y6e{bottom:586.069333pt;}
.y9d{bottom:595.080000pt;}
.yf{bottom:596.462667pt;}
.y3a{bottom:597.360000pt;}
.y83{bottom:601.273333pt;}
.ybc{bottom:609.709333pt;}
.y54{bottom:613.149333pt;}
.ye{bottom:615.724000pt;}
.y39{bottom:616.621333pt;}
.y6d{bottom:618.613333pt;}
.y9c{bottom:630.125333pt;}
.y82{bottom:630.829333pt;}
.ybb{bottom:634.948000pt;}
.y38{bottom:635.882667pt;}
.yd{bottom:645.280000pt;}
.y53{bottom:645.577333pt;}
.y6c{bottom:651.158667pt;}
.y37{bottom:655.142667pt;}
.yba{bottom:660.186667pt;}
.y9b{bottom:669.644000pt;}
.y81{bottom:671.676000pt;}
.y36{bottom:674.404000pt;}
.y52{bottom:678.006667pt;}
.y6b{bottom:683.702667pt;}
.yb9{bottom:685.425333pt;}
.yc{bottom:691.496000pt;}
.y35{bottom:693.665333pt;}
.y80{bottom:702.632000pt;}
.y51{bottom:710.434667pt;}
.yb8{bottom:710.664000pt;}
.yb{bottom:710.757333pt;}
.y34{bottom:712.926667pt;}
.y9a{bottom:715.860000pt;}
.y6a{bottom:716.248000pt;}
.y7f{bottom:721.893333pt;}
.ya{bottom:730.017333pt;}
.y33{bottom:732.188000pt;}
.y99{bottom:735.121333pt;}
.yb7{bottom:735.902667pt;}
.y7e{bottom:741.153333pt;}
.y50{bottom:742.862667pt;}
.yb6{bottom:748.521333pt;}
.y69{bottom:748.792000pt;}
.y9{bottom:749.278667pt;}
.y32{bottom:751.449333pt;}
.y98{bottom:754.382667pt;}
.y7d{bottom:760.414667pt;}
.y8{bottom:768.540000pt;}
.y31{bottom:770.709333pt;}
.y97{bottom:773.642667pt;}
.yb5{bottom:773.760000pt;}
.y4f{bottom:775.292000pt;}
.y7c{bottom:779.676000pt;}
.y68{bottom:781.337333pt;}
.yb4{bottom:786.380000pt;}
.y7{bottom:787.801333pt;}
.y30{bottom:789.970667pt;}
.y7b{bottom:798.937333pt;}
.y96{bottom:803.198667pt;}
.y6{bottom:807.062667pt;}
.y4e{bottom:807.720000pt;}
.y2f{bottom:809.232000pt;}
.yb3{bottom:811.618667pt;}
.y67{bottom:813.881333pt;}
.y7a{bottom:818.198667pt;}
.yb2{bottom:824.237333pt;}
.y5{bottom:826.324000pt;}
.y2e{bottom:828.493333pt;}
.yb1{bottom:836.857333pt;}
.y79{bottom:837.460000pt;}
.y4d{bottom:839.916000pt;}
.y4{bottom:845.584000pt;}
.y66{bottom:846.425333pt;}
.y2d{bottom:847.754667pt;}
.y95{bottom:849.414667pt;}
.y78{bottom:856.720000pt;}
.yb0{bottom:862.096000pt;}
.y2c{bottom:867.016000pt;}
.yaf{bottom:874.714667pt;}
.y3{bottom:875.140000pt;}
.y4c{bottom:875.981333pt;}
.y65{bottom:878.970667pt;}
.y94{bottom:881.960000pt;}
.y2b{bottom:886.276000pt;}
.yae{bottom:887.334667pt;}
.y4b{bottom:895.242667pt;}
.y2a{bottom:905.537333pt;}
.yad{bottom:907.940000pt;}
.y64{bottom:911.514667pt;}
.y4a{bottom:914.504000pt;}
.y2{bottom:914.836000pt;}
.y29{bottom:924.798667pt;}
.yac{bottom:929.589333pt;}
.y1{bottom:944.060000pt;}
.h4{height:31.880400pt;}
.h3{height:47.820800pt;}
.h2{height:57.384800pt;}
.h1{height:68.861600pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x5{left:111.608000pt;}
.x3{left:119.412000pt;}
.x7{left:121.448000pt;}
.x2{left:134.734667pt;}
.x6{left:280.297333pt;}
.x4{left:404.098667pt;}
}




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