
    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_7fadbd864875affe8b8bef1f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_631d6fcc4bf3f49ba7801849.woff')format("woff");}.ff2{font-family:ff2;line-height:0.911000;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_2e10eb89827dff754f5783ba.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_53de73007ea0bab5dc9be9d4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.918000;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_a45719e918941e2ed3ba24d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_5dc09a70afc0bfcc0b368175.woff')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_ec470af28c6b1d9077cd16bc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_81c08520b927f61b55dcd98b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d72ad53de3b51b22bed62ba5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.664000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_06b06d5b50ff4eeeae558406.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v2{vertical-align:-21.690000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:2.984915px;}
.ls3{letter-spacing:2.990525px;}
.ls6{letter-spacing:17.789338px;}
.ls2{letter-spacing:20.586854px;}
.ls7{letter-spacing:22.595328px;}
.ls8{letter-spacing:23.384371px;}
.lsa{letter-spacing:26.827469px;}
.ls1{letter-spacing:27.074915px;}
.lsc{letter-spacing:27.186125px;}
.lsb{letter-spacing:27.257856px;}
.ls5{letter-spacing:29.409792px;}
.ls4{letter-spacing:31.561728px;}
.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;}
}
.ws40{word-spacing:-32.278875px;}
.ws31{word-spacing:-22.416000px;}
.ws20{word-spacing:-19.510886px;}
.wsaa{word-spacing:-17.932800px;}
.wse{word-spacing:-16.730196px;}
.wsb7{word-spacing:-3.801754px;}
.ws77{word-spacing:-3.586560px;}
.ws7{word-spacing:-3.156173px;}
.ws7c{word-spacing:-3.048576px;}
.ws41{word-spacing:-2.797517px;}
.ws51{word-spacing:-2.582323px;}
.ws52{word-spacing:-2.438861px;}
.wsb3{word-spacing:-2.295398px;}
.ws18{word-spacing:-2.081456px;}
.ws8c{word-spacing:-1.936742px;}
.ws6c{word-spacing:-1.721549px;}
.ws9c{word-spacing:-1.506355px;}
.ws84{word-spacing:-1.470490px;}
.wsa1{word-spacing:-1.291162px;}
.ws7d{word-spacing:-1.219430px;}
.wsac{word-spacing:-1.147699px;}
.ws82{word-spacing:-0.932506px;}
.wsb{word-spacing:-0.903273px;}
.ws21{word-spacing:-0.789043px;}
.ws92{word-spacing:-0.573850px;}
.ws88{word-spacing:-0.537984px;}
.ws58{word-spacing:-0.502118px;}
.ws7b{word-spacing:-0.286925px;}
.ws4{word-spacing:-0.071731px;}
.ws3{word-spacing:0.000000px;}
.ws70{word-spacing:0.179328px;}
.ws27{word-spacing:0.286925px;}
.ws66{word-spacing:0.430387px;}
.wsb9{word-spacing:0.502118px;}
.wsa0{word-spacing:0.645581px;}
.ws4b{word-spacing:0.860774px;}
.ws99{word-spacing:0.968371px;}
.ws72{word-spacing:1.040102px;}
.ws1f{word-spacing:1.075968px;}
.ws4c{word-spacing:1.147699px;}
.ws29{word-spacing:1.207467px;}
.ws2e{word-spacing:1.219430px;}
.ws26{word-spacing:1.291162px;}
.ws83{word-spacing:1.434624px;}
.ws5c{word-spacing:1.506355px;}
.ws9b{word-spacing:1.578086px;}
.ws5b{word-spacing:1.793280px;}
.ws48{word-spacing:1.865011px;}
.ws64{word-spacing:1.936742px;}
.ws6d{word-spacing:2.008474px;}
.ws9a{word-spacing:2.080205px;}
.ws2f{word-spacing:2.116070px;}
.wsb2{word-spacing:2.223667px;}
.ws59{word-spacing:2.295398px;}
.ws8{word-spacing:2.367130px;}
.ws91{word-spacing:2.510592px;}
.wsad{word-spacing:2.582323px;}
.wsae{word-spacing:2.654054px;}
.wsa6{word-spacing:2.725786px;}
.ws45{word-spacing:2.797517px;}
.ws24{word-spacing:2.869248px;}
.ws5f{word-spacing:2.905114px;}
.wsa8{word-spacing:2.940979px;}
.ws71{word-spacing:3.084442px;}
.ws5a{word-spacing:3.156173px;}
.wsd{word-spacing:3.181094px;}
.ws6b{word-spacing:3.192038px;}
.ws2a{word-spacing:3.299613px;}
.ws75{word-spacing:3.335501px;}
.ws5{word-spacing:3.514829px;}
.ws28{word-spacing:3.598491px;}
.ws1b{word-spacing:3.613094px;}
.wsaf{word-spacing:3.658291px;}
.ws94{word-spacing:3.694157px;}
.ws1e{word-spacing:3.873485px;}
.ws30{word-spacing:3.945216px;}
.ws5d{word-spacing:4.052813px;}
.ws22{word-spacing:4.303872px;}
.ws98{word-spacing:4.339738px;}
.ws6{word-spacing:4.375603px;}
.ws9f{word-spacing:4.447334px;}
.ws65{word-spacing:4.483200px;}
.ws1d{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws4d{word-spacing:4.662528px;}
.wsa9{word-spacing:4.734259px;}
.ws3b{word-spacing:4.805990px;}
.wsc{word-spacing:4.856731px;}
.ws53{word-spacing:4.877722px;}
.ws6a{word-spacing:4.949453px;}
.ws1a{word-spacing:4.987641px;}
.ws54{word-spacing:5.021184px;}
.ws36{word-spacing:5.092915px;}
.ws76{word-spacing:5.164646px;}
.ws9e{word-spacing:5.236378px;}
.ws17{word-spacing:5.249459px;}
.ws15{word-spacing:5.380368px;}
.ws73{word-spacing:5.415706px;}
.wsa2{word-spacing:5.451571px;}
.ws55{word-spacing:5.666765px;}
.ws2c{word-spacing:5.738496px;}
.ws25{word-spacing:5.810227px;}
.ws5e{word-spacing:5.881958px;}
.wsa4{word-spacing:5.953690px;}
.wsab{word-spacing:6.025421px;}
.wsa7{word-spacing:6.097152px;}
.ws9d{word-spacing:6.168883px;}
.ws23{word-spacing:6.240614px;}
.ws3f{word-spacing:6.419942px;}
.ws2b{word-spacing:6.455775px;}
.ws63{word-spacing:6.455808px;}
.ws1{word-spacing:6.496290px;}
.ws96{word-spacing:6.599270px;}
.ws93{word-spacing:6.671002px;}
.ws44{word-spacing:6.742733px;}
.ws42{word-spacing:6.814464px;}
.ws47{word-spacing:7.029658px;}
.ws16{word-spacing:7.082188px;}
.wsa5{word-spacing:7.173120px;}
.ws97{word-spacing:7.244851px;}
.wsb5{word-spacing:7.316582px;}
.ws12{word-spacing:7.632006px;}
.wsb6{word-spacing:7.746970px;}
.ws0{word-spacing:7.748437px;}
.ws8f{word-spacing:7.890432px;}
.ws35{word-spacing:7.962163px;}
.ws37{word-spacing:8.249088px;}
.ws74{word-spacing:8.320819px;}
.ws8d{word-spacing:8.392550px;}
.ws81{word-spacing:8.464282px;}
.ws69{word-spacing:8.715341px;}
.ws89{word-spacing:8.751206px;}
.wsa3{word-spacing:9.038131px;}
.ws13{word-spacing:9.242190px;}
.ws3e{word-spacing:9.253325px;}
.ws11{word-spacing:9.307644px;}
.ws4e{word-spacing:9.325056px;}
.wsa{word-spacing:9.468518px;}
.ws46{word-spacing:9.540250px;}
.ws6e{word-spacing:9.611981px;}
.ws43{word-spacing:9.827174px;}
.ws33{word-spacing:9.898906px;}
.ws14{word-spacing:10.158554px;}
.ws34{word-spacing:10.221696px;}
.wsb8{word-spacing:10.257562px;}
.ws7a{word-spacing:10.293427px;}
.ws3a{word-spacing:10.508621px;}
.ws8e{word-spacing:10.616218px;}
.wsb4{word-spacing:10.687949px;}
.ws9{word-spacing:10.759680px;}
.ws7f{word-spacing:10.795546px;}
.ws4f{word-spacing:10.831411px;}
.ws19{word-spacing:11.074918px;}
.ws6f{word-spacing:11.190067px;}
.ws56{word-spacing:11.333530px;}
.ws90{word-spacing:11.405261px;}
.ws39{word-spacing:11.476992px;}
.ws57{word-spacing:11.548723px;}
.ws68{word-spacing:11.620454px;}
.ws8b{word-spacing:11.763917px;}
.ws3d{word-spacing:11.871514px;}
.ws38{word-spacing:12.050842px;}
.ws80{word-spacing:12.122573px;}
.ws32{word-spacing:12.445363px;}
.ws78{word-spacing:12.552960px;}
.ws87{word-spacing:12.588826px;}
.ws79{word-spacing:12.983347px;}
.ws2d{word-spacing:13.270272px;}
.wsf{word-spacing:13.365829px;}
.ws7e{word-spacing:13.628928px;}
.wsb0{word-spacing:13.844122px;}
.ws67{word-spacing:14.346240px;}
.ws3c{word-spacing:14.704896px;}
.ws8a{word-spacing:14.776627px;}
.ws10{word-spacing:15.067649px;}
.ws60{word-spacing:15.314611px;}
.ws50{word-spacing:15.350477px;}
.ws86{word-spacing:15.422208px;}
.ws85{word-spacing:15.493939px;}
.ws95{word-spacing:15.637402px;}
.wsb1{word-spacing:16.282982px;}
.ws61{word-spacing:18.147994px;}
.ws62{word-spacing:18.219725px;}
.ws49{word-spacing:18.434918px;}
.ws4a{word-spacing:25.392845px;}
.ws1c{word-spacing:83.925075px;}
._26{margin-left:-35.004826px;}
._22{margin-left:-9.709486px;}
._3{margin-left:-7.058330px;}
._a{margin-left:-5.881958px;}
._16{margin-left:-4.241946px;}
._1{margin-left:-3.223350px;}
._2{margin-left:-1.424819px;}
._7{width:1.209625px;}
._4{width:2.324084px;}
._0{width:3.843225px;}
._b{width:4.918055px;}
._e{width:6.138442px;}
._6{width:17.426128px;}
._1c{width:18.439472px;}
._5{width:21.088960px;}
._23{width:22.867907px;}
._15{width:24.445980px;}
._1d{width:25.546112px;}
._1b{width:27.554586px;}
._10{width:29.390008px;}
._8{width:30.629222px;}
._14{width:31.648584px;}
._9{width:32.719232px;}
._12{width:33.946799px;}
._c{width:35.723029px;}
._18{width:37.113716px;}
._1e{width:39.155430px;}
._f{width:40.320034px;}
._20{width:41.360216px;}
._27{width:42.828048px;}
._24{width:44.100329px;}
._d{width:46.931840px;}
._11{width:48.355767px;}
._19{width:49.846996px;}
._13{width:50.973951px;}
._1f{width:53.286476px;}
._1a{width:56.366364px;}
._25{width:60.612864px;}
._21{width:62.592652px;}
._17{width:116.203950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y5{bottom:63.168000px;}
.y25{bottom:108.049500px;}
.y9e{bottom:109.021500px;}
.y76{bottom:113.445000px;}
.y24{bottom:125.982000px;}
.y9d{bottom:144.883500px;}
.y23{bottom:149.337000px;}
.y9c{bottom:180.745500px;}
.y9b{bottom:231.550500px;}
.y87{bottom:231.936000px;}
.y30{bottom:243.133500px;}
.y6e{bottom:261.436500px;}
.y9a{bottom:267.412500px;}
.y86{bottom:267.796500px;}
.y54{bottom:277.261500px;}
.y2f{bottom:278.995500px;}
.y6d{bottom:297.298500px;}
.y99{bottom:303.274500px;}
.y85{bottom:303.658500px;}
.y53{bottom:313.123500px;}
.y44{bottom:330.682500px;}
.y2e{bottom:332.416500px;}
.yb0{bottom:335.977500px;}
.y84{bottom:339.520500px;}
.y52{bottom:348.985500px;}
.y75{bottom:349.975500px;}
.y6c{bottom:350.719500px;}
.y98{bottom:354.081000px;}
.y43{bottom:366.544500px;}
.y2d{bottom:368.278500px;}
.yaf{bottom:371.839500px;}
.y83{bottom:375.382500px;}
.y51{bottom:384.847500px;}
.y74{bottom:385.837500px;}
.y6b{bottom:386.581500px;}
.y97{bottom:389.941500px;}
.y42{bottom:402.406500px;}
.y82{bottom:411.244500px;}
.y50{bottom:420.709500px;}
.y2c{bottom:421.699500px;}
.yae{bottom:422.644500px;}
.y41{bottom:438.268500px;}
.y6a{bottom:440.002500px;}
.y96{bottom:440.748000px;}
.y81{bottom:447.106500px;}
.y4f{bottom:456.570000px;}
.y2b{bottom:457.561500px;}
.yad{bottom:458.506500px;}
.y40{bottom:474.129000px;}
.y69{bottom:475.863000px;}
.y95{bottom:476.610000px;}
.y2a{bottom:493.422000px;}
.yac{bottom:494.368500px;}
.y80{bottom:500.526000px;}
.y4e{bottom:509.991000px;}
.y73{bottom:510.981000px;}
.y68{bottom:511.725000px;}
.y94{bottom:512.472000px;}
.y3f{bottom:527.550000px;}
.y7f{bottom:536.388000px;}
.yab{bottom:545.173500px;}
.y4d{bottom:545.853000px;}
.y29{bottom:546.843000px;}
.y93{bottom:563.277000px;}
.y3e{bottom:563.412000px;}
.y67{bottom:565.146000px;}
.y7e{bottom:572.250000px;}
.yaa{bottom:581.035500px;}
.y4c{bottom:581.715000px;}
.y28{bottom:582.705000px;}
.y92{bottom:599.139000px;}
.y3d{bottom:599.274000px;}
.y66{bottom:601.008000px;}
.y7d{bottom:608.112000px;}
.y27{bottom:618.567000px;}
.ya9{bottom:631.840500px;}
.y4b{bottom:635.136000px;}
.y22{bottom:636.126000px;}
.y65{bottom:636.870000px;}
.y7c{bottom:643.974000px;}
.y91{bottom:649.944000px;}
.y3c{bottom:652.695000px;}
.y26{bottom:654.429000px;}
.ya8{bottom:667.702500px;}
.y4a{bottom:670.996500px;}
.y21{bottom:671.988000px;}
.y7b{bottom:679.836000px;}
.y90{bottom:685.806000px;}
.y3b{bottom:688.555500px;}
.y64{bottom:690.289500px;}
.y20{bottom:707.848500px;}
.y5d{bottom:708.048000px;}
.y7a{bottom:715.696500px;}
.ya7{bottom:718.509000px;}
.y8f{bottom:721.668000px;}
.y18{bottom:723.253500px;}
.y3a{bottom:724.417500px;}
.y63{bottom:726.151500px;}
.y1f{bottom:743.710500px;}
.y5c{bottom:743.910000px;}
.ya6{bottom:754.371000px;}
.y17{bottom:756.889500px;}
.y39{bottom:760.279500px;}
.y72{bottom:761.269500px;}
.y79{bottom:769.317000px;}
.y8e{bottom:772.473000px;}
.y62{bottom:779.572500px;}
.y5b{bottom:779.772000px;}
.ya5{bottom:790.231500px;}
.y16{bottom:790.525500px;}
.y1e{bottom:797.131500px;}
.y71{bottom:797.331000px;}
.y8d{bottom:808.335000px;}
.y38{bottom:813.700500px;}
.y61{bottom:815.434500px;}
.y15{bottom:824.161500px;}
.y1d{bottom:832.993500px;}
.y5a{bottom:833.193000px;}
.ya4{bottom:841.038000px;}
.y8c{bottom:844.197000px;}
.y37{bottom:849.562500px;}
.y78{bottom:850.752000px;}
.y4{bottom:853.845000px;}
.y14{bottom:857.797500px;}
.y60{bottom:868.855500px;}
.y70{bottom:869.055000px;}
.ya3{bottom:876.900000px;}
.y36{bottom:885.424500px;}
.y1c{bottom:886.414500px;}
.y59{bottom:886.614000px;}
.y13{bottom:891.433500px;}
.y8b{bottom:895.003500px;}
.yc{bottom:903.973500px;}
.y5f{bottom:904.717500px;}
.y3{bottom:907.266000px;}
.y35{bottom:921.285000px;}
.y1b{bottom:922.276500px;}
.y58{bottom:922.476000px;}
.y12{bottom:925.069500px;}
.ya2{bottom:927.705000px;}
.y8a{bottom:930.864000px;}
.yb{bottom:939.835500px;}
.y77{bottom:940.033500px;}
.y34{bottom:957.147000px;}
.y49{bottom:957.592500px;}
.y1a{bottom:958.137000px;}
.y6f{bottom:958.336500px;}
.y11{bottom:958.704000px;}
.ya1{bottom:963.567000px;}
.ya{bottom:975.696000px;}
.y57{bottom:975.895500px;}
.y2{bottom:978.123000px;}
.y89{bottom:981.670500px;}
.y10{bottom:992.340000px;}
.y33{bottom:993.009000px;}
.y48{bottom:993.454500px;}
.y19{bottom:993.999000px;}
.y9{bottom:1011.558000px;}
.y56{bottom:1011.757500px;}
.ya0{bottom:1014.372000px;}
.yf{bottom:1025.976000px;}
.y32{bottom:1028.871000px;}
.y47{bottom:1029.316500px;}
.y5e{bottom:1029.861000px;}
.y88{bottom:1032.475500px;}
.y1{bottom:1039.953000px;}
.y8{bottom:1047.420000px;}
.y55{bottom:1047.619500px;}
.y9f{bottom:1050.234000px;}
.ye{bottom:1059.612000px;}
.y46{bottom:1065.178500px;}
.y31{bottom:1082.491500px;}
.y7{bottom:1083.282000px;}
.yd{bottom:1093.248000px;}
.y45{bottom:1101.040500px;}
.y6{bottom:1136.902500px;}
.ha{height:27.783619px;}
.hb{height:42.141798px;}
.h7{height:45.818220px;}
.h8{height:46.145493px;}
.h5{height:53.798400px;}
.h9{height:57.828699px;}
.hc{height:57.834699px;}
.h4{height:64.557900px;}
.h6{height:72.304680px;}
.h2{height:86.782500px;}
.h3{height:87.650325px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:108.000000px;}
.xd{left:125.559000px;}
.xb{left:128.194500px;}
.x2{left:130.999500px;}
.xa{left:134.338500px;}
.x9{left:151.897500px;}
.x1{left:172.408500px;}
.x8{left:176.443500px;}
.x3{left:349.153500px;}
.x4{left:367.734000px;}
.x7{left:410.455500px;}
.xc{left:437.677500px;}
.x5{left:442.066500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:2.653258pt;}
.ls3{letter-spacing:2.658245pt;}
.ls6{letter-spacing:15.812745pt;}
.ls2{letter-spacing:18.299426pt;}
.ls7{letter-spacing:20.084736pt;}
.ls8{letter-spacing:20.786108pt;}
.lsa{letter-spacing:23.846639pt;}
.ls1{letter-spacing:24.066591pt;}
.lsc{letter-spacing:24.165444pt;}
.lsb{letter-spacing:24.229205pt;}
.ls5{letter-spacing:26.142037pt;}
.ls4{letter-spacing:28.054869pt;}
.ws40{word-spacing:-28.692333pt;}
.ws31{word-spacing:-19.925333pt;}
.ws20{word-spacing:-17.343010pt;}
.wsaa{word-spacing:-15.940267pt;}
.wse{word-spacing:-14.871285pt;}
.wsb7{word-spacing:-3.379337pt;}
.ws77{word-spacing:-3.188053pt;}
.ws7{word-spacing:-2.805487pt;}
.ws7c{word-spacing:-2.709845pt;}
.ws41{word-spacing:-2.486682pt;}
.ws51{word-spacing:-2.295398pt;}
.ws52{word-spacing:-2.167876pt;}
.wsb3{word-spacing:-2.040354pt;}
.ws18{word-spacing:-1.850183pt;}
.ws8c{word-spacing:-1.721549pt;}
.ws6c{word-spacing:-1.530266pt;}
.ws9c{word-spacing:-1.338982pt;}
.ws84{word-spacing:-1.307102pt;}
.wsa1{word-spacing:-1.147699pt;}
.ws7d{word-spacing:-1.083938pt;}
.wsac{word-spacing:-1.020177pt;}
.ws82{word-spacing:-0.828894pt;}
.wsb{word-spacing:-0.802910pt;}
.ws21{word-spacing:-0.701372pt;}
.ws92{word-spacing:-0.510089pt;}
.ws88{word-spacing:-0.478208pt;}
.ws58{word-spacing:-0.446327pt;}
.ws7b{word-spacing:-0.255044pt;}
.ws4{word-spacing:-0.063761pt;}
.ws3{word-spacing:0.000000pt;}
.ws70{word-spacing:0.159403pt;}
.ws27{word-spacing:0.255044pt;}
.ws66{word-spacing:0.382566pt;}
.wsb9{word-spacing:0.446327pt;}
.wsa0{word-spacing:0.573850pt;}
.ws4b{word-spacing:0.765133pt;}
.ws99{word-spacing:0.860774pt;}
.ws72{word-spacing:0.924535pt;}
.ws1f{word-spacing:0.956416pt;}
.ws4c{word-spacing:1.020177pt;}
.ws29{word-spacing:1.073304pt;}
.ws2e{word-spacing:1.083938pt;}
.ws26{word-spacing:1.147699pt;}
.ws83{word-spacing:1.275221pt;}
.ws5c{word-spacing:1.338982pt;}
.ws9b{word-spacing:1.402743pt;}
.ws5b{word-spacing:1.594027pt;}
.ws48{word-spacing:1.657788pt;}
.ws64{word-spacing:1.721549pt;}
.ws6d{word-spacing:1.785310pt;}
.ws9a{word-spacing:1.849071pt;}
.ws2f{word-spacing:1.880951pt;}
.wsb2{word-spacing:1.976593pt;}
.ws59{word-spacing:2.040354pt;}
.ws8{word-spacing:2.104115pt;}
.ws91{word-spacing:2.231637pt;}
.wsad{word-spacing:2.295398pt;}
.wsae{word-spacing:2.359159pt;}
.wsa6{word-spacing:2.422921pt;}
.ws45{word-spacing:2.486682pt;}
.ws24{word-spacing:2.550443pt;}
.ws5f{word-spacing:2.582323pt;}
.wsa8{word-spacing:2.614204pt;}
.ws71{word-spacing:2.741726pt;}
.ws5a{word-spacing:2.805487pt;}
.wsd{word-spacing:2.827639pt;}
.ws6b{word-spacing:2.837367pt;}
.ws2a{word-spacing:2.932989pt;}
.ws75{word-spacing:2.964890pt;}
.ws5{word-spacing:3.124292pt;}
.ws28{word-spacing:3.198659pt;}
.ws1b{word-spacing:3.211639pt;}
.wsaf{word-spacing:3.251814pt;}
.ws94{word-spacing:3.283695pt;}
.ws1e{word-spacing:3.443098pt;}
.ws30{word-spacing:3.506859pt;}
.ws5d{word-spacing:3.602500pt;}
.ws22{word-spacing:3.825664pt;}
.ws98{word-spacing:3.857545pt;}
.ws6{word-spacing:3.889425pt;}
.ws9f{word-spacing:3.953186pt;}
.ws65{word-spacing:3.985067pt;}
.ws1d{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws4d{word-spacing:4.144469pt;}
.wsa9{word-spacing:4.208230pt;}
.ws3b{word-spacing:4.271991pt;}
.wsc{word-spacing:4.317095pt;}
.ws53{word-spacing:4.335753pt;}
.ws6a{word-spacing:4.399514pt;}
.ws1a{word-spacing:4.433458pt;}
.ws54{word-spacing:4.463275pt;}
.ws36{word-spacing:4.527036pt;}
.ws76{word-spacing:4.590797pt;}
.ws9e{word-spacing:4.654558pt;}
.ws17{word-spacing:4.666186pt;}
.ws15{word-spacing:4.782549pt;}
.ws73{word-spacing:4.813961pt;}
.wsa2{word-spacing:4.845841pt;}
.ws55{word-spacing:5.037124pt;}
.ws2c{word-spacing:5.100885pt;}
.ws25{word-spacing:5.164646pt;}
.ws5e{word-spacing:5.228407pt;}
.wsa4{word-spacing:5.292169pt;}
.wsab{word-spacing:5.355930pt;}
.wsa7{word-spacing:5.419691pt;}
.ws9d{word-spacing:5.483452pt;}
.ws23{word-spacing:5.547213pt;}
.ws3f{word-spacing:5.706615pt;}
.ws2b{word-spacing:5.738467pt;}
.ws63{word-spacing:5.738496pt;}
.ws1{word-spacing:5.774480pt;}
.ws96{word-spacing:5.866018pt;}
.ws93{word-spacing:5.929779pt;}
.ws44{word-spacing:5.993540pt;}
.ws42{word-spacing:6.057301pt;}
.ws47{word-spacing:6.248585pt;}
.ws16{word-spacing:6.295278pt;}
.wsa5{word-spacing:6.376107pt;}
.ws97{word-spacing:6.439868pt;}
.wsb5{word-spacing:6.503629pt;}
.ws12{word-spacing:6.784006pt;}
.wsb6{word-spacing:6.886195pt;}
.ws0{word-spacing:6.887500pt;}
.ws8f{word-spacing:7.013717pt;}
.ws35{word-spacing:7.077478pt;}
.ws37{word-spacing:7.332523pt;}
.ws74{word-spacing:7.396284pt;}
.ws8d{word-spacing:7.460045pt;}
.ws81{word-spacing:7.523806pt;}
.ws69{word-spacing:7.746970pt;}
.ws89{word-spacing:7.778850pt;}
.wsa3{word-spacing:8.033894pt;}
.ws13{word-spacing:8.215280pt;}
.ws3e{word-spacing:8.225178pt;}
.ws11{word-spacing:8.273461pt;}
.ws4e{word-spacing:8.288939pt;}
.wsa{word-spacing:8.416461pt;}
.ws46{word-spacing:8.480222pt;}
.ws6e{word-spacing:8.543983pt;}
.ws43{word-spacing:8.735266pt;}
.ws33{word-spacing:8.799027pt;}
.ws14{word-spacing:9.029826pt;}
.ws34{word-spacing:9.085952pt;}
.wsb8{word-spacing:9.117833pt;}
.ws7a{word-spacing:9.149713pt;}
.ws3a{word-spacing:9.340996pt;}
.ws8e{word-spacing:9.436638pt;}
.wsb4{word-spacing:9.500399pt;}
.ws9{word-spacing:9.564160pt;}
.ws7f{word-spacing:9.596041pt;}
.ws4f{word-spacing:9.627921pt;}
.ws19{word-spacing:9.844372pt;}
.ws6f{word-spacing:9.946726pt;}
.ws56{word-spacing:10.074249pt;}
.ws90{word-spacing:10.138010pt;}
.ws39{word-spacing:10.201771pt;}
.ws57{word-spacing:10.265532pt;}
.ws68{word-spacing:10.329293pt;}
.ws8b{word-spacing:10.456815pt;}
.ws3d{word-spacing:10.552457pt;}
.ws38{word-spacing:10.711859pt;}
.ws80{word-spacing:10.775620pt;}
.ws32{word-spacing:11.062545pt;}
.ws78{word-spacing:11.158187pt;}
.ws87{word-spacing:11.190067pt;}
.ws79{word-spacing:11.540753pt;}
.ws2d{word-spacing:11.795797pt;}
.wsf{word-spacing:11.880737pt;}
.ws7e{word-spacing:12.114603pt;}
.wsb0{word-spacing:12.305886pt;}
.ws67{word-spacing:12.752213pt;}
.ws3c{word-spacing:13.071019pt;}
.ws8a{word-spacing:13.134780pt;}
.ws10{word-spacing:13.393466pt;}
.ws60{word-spacing:13.612988pt;}
.ws50{word-spacing:13.644868pt;}
.ws86{word-spacing:13.708629pt;}
.ws85{word-spacing:13.772390pt;}
.ws95{word-spacing:13.899913pt;}
.wsb1{word-spacing:14.473762pt;}
.ws61{word-spacing:16.131550pt;}
.ws62{word-spacing:16.195311pt;}
.ws49{word-spacing:16.386594pt;}
.ws4a{word-spacing:22.571418pt;}
.ws1c{word-spacing:74.600067pt;}
._26{margin-left:-31.115401pt;}
._22{margin-left:-8.630654pt;}
._3{margin-left:-6.274071pt;}
._a{margin-left:-5.228407pt;}
._16{margin-left:-3.770619pt;}
._1{margin-left:-2.865200pt;}
._2{margin-left:-1.266506pt;}
._7{width:1.075222pt;}
._4{width:2.065853pt;}
._0{width:3.416200pt;}
._b{width:4.371604pt;}
._e{width:5.456393pt;}
._6{width:15.489891pt;}
._1c{width:16.390642pt;}
._5{width:18.745742pt;}
._23{width:20.327028pt;}
._15{width:21.729760pt;}
._1d{width:22.707655pt;}
._1b{width:24.492965pt;}
._10{width:26.124451pt;}
._8{width:27.225975pt;}
._14{width:28.132075pt;}
._9{width:29.083762pt;}
._12{width:30.174933pt;}
._c{width:31.753804pt;}
._18{width:32.989970pt;}
._1e{width:34.804827pt;}
._f{width:35.840030pt;}
._20{width:36.764637pt;}
._27{width:38.069376pt;}
._24{width:39.200292pt;}
._d{width:41.717191pt;}
._11{width:42.982904pt;}
._19{width:44.308441pt;}
._13{width:45.310179pt;}
._1f{width:47.365757pt;}
._1a{width:50.103435pt;}
._25{width:53.878101pt;}
._21{width:55.637913pt;}
._17{width:103.292400pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:56.149333pt;}
.y25{bottom:96.044000pt;}
.y9e{bottom:96.908000pt;}
.y76{bottom:100.840000pt;}
.y24{bottom:111.984000pt;}
.y9d{bottom:128.785333pt;}
.y23{bottom:132.744000pt;}
.y9c{bottom:160.662667pt;}
.y9b{bottom:205.822667pt;}
.y87{bottom:206.165333pt;}
.y30{bottom:216.118667pt;}
.y6e{bottom:232.388000pt;}
.y9a{bottom:237.700000pt;}
.y86{bottom:238.041333pt;}
.y54{bottom:246.454667pt;}
.y2f{bottom:247.996000pt;}
.y6d{bottom:264.265333pt;}
.y99{bottom:269.577333pt;}
.y85{bottom:269.918667pt;}
.y53{bottom:278.332000pt;}
.y44{bottom:293.940000pt;}
.y2e{bottom:295.481333pt;}
.yb0{bottom:298.646667pt;}
.y84{bottom:301.796000pt;}
.y52{bottom:310.209333pt;}
.y75{bottom:311.089333pt;}
.y6c{bottom:311.750667pt;}
.y98{bottom:314.738667pt;}
.y43{bottom:325.817333pt;}
.y2d{bottom:327.358667pt;}
.yaf{bottom:330.524000pt;}
.y83{bottom:333.673333pt;}
.y51{bottom:342.086667pt;}
.y74{bottom:342.966667pt;}
.y6b{bottom:343.628000pt;}
.y97{bottom:346.614667pt;}
.y42{bottom:357.694667pt;}
.y82{bottom:365.550667pt;}
.y50{bottom:373.964000pt;}
.y2c{bottom:374.844000pt;}
.yae{bottom:375.684000pt;}
.y41{bottom:389.572000pt;}
.y6a{bottom:391.113333pt;}
.y96{bottom:391.776000pt;}
.y81{bottom:397.428000pt;}
.y4f{bottom:405.840000pt;}
.y2b{bottom:406.721333pt;}
.yad{bottom:407.561333pt;}
.y40{bottom:421.448000pt;}
.y69{bottom:422.989333pt;}
.y95{bottom:423.653333pt;}
.y2a{bottom:438.597333pt;}
.yac{bottom:439.438667pt;}
.y80{bottom:444.912000pt;}
.y4e{bottom:453.325333pt;}
.y73{bottom:454.205333pt;}
.y68{bottom:454.866667pt;}
.y94{bottom:455.530667pt;}
.y3f{bottom:468.933333pt;}
.y7f{bottom:476.789333pt;}
.yab{bottom:484.598667pt;}
.y4d{bottom:485.202667pt;}
.y29{bottom:486.082667pt;}
.y93{bottom:500.690667pt;}
.y3e{bottom:500.810667pt;}
.y67{bottom:502.352000pt;}
.y7e{bottom:508.666667pt;}
.yaa{bottom:516.476000pt;}
.y4c{bottom:517.080000pt;}
.y28{bottom:517.960000pt;}
.y92{bottom:532.568000pt;}
.y3d{bottom:532.688000pt;}
.y66{bottom:534.229333pt;}
.y7d{bottom:540.544000pt;}
.y27{bottom:549.837333pt;}
.ya9{bottom:561.636000pt;}
.y4b{bottom:564.565333pt;}
.y22{bottom:565.445333pt;}
.y65{bottom:566.106667pt;}
.y7c{bottom:572.421333pt;}
.y91{bottom:577.728000pt;}
.y3c{bottom:580.173333pt;}
.y26{bottom:581.714667pt;}
.ya8{bottom:593.513333pt;}
.y4a{bottom:596.441333pt;}
.y21{bottom:597.322667pt;}
.y7b{bottom:604.298667pt;}
.y90{bottom:609.605333pt;}
.y3b{bottom:612.049333pt;}
.y64{bottom:613.590667pt;}
.y20{bottom:629.198667pt;}
.y5d{bottom:629.376000pt;}
.y7a{bottom:636.174667pt;}
.ya7{bottom:638.674667pt;}
.y8f{bottom:641.482667pt;}
.y18{bottom:642.892000pt;}
.y3a{bottom:643.926667pt;}
.y63{bottom:645.468000pt;}
.y1f{bottom:661.076000pt;}
.y5c{bottom:661.253333pt;}
.ya6{bottom:670.552000pt;}
.y17{bottom:672.790667pt;}
.y39{bottom:675.804000pt;}
.y72{bottom:676.684000pt;}
.y79{bottom:683.837333pt;}
.y8e{bottom:686.642667pt;}
.y62{bottom:692.953333pt;}
.y5b{bottom:693.130667pt;}
.ya5{bottom:702.428000pt;}
.y16{bottom:702.689333pt;}
.y1e{bottom:708.561333pt;}
.y71{bottom:708.738667pt;}
.y8d{bottom:718.520000pt;}
.y38{bottom:723.289333pt;}
.y61{bottom:724.830667pt;}
.y15{bottom:732.588000pt;}
.y1d{bottom:740.438667pt;}
.y5a{bottom:740.616000pt;}
.ya4{bottom:747.589333pt;}
.y8c{bottom:750.397333pt;}
.y37{bottom:755.166667pt;}
.y78{bottom:756.224000pt;}
.y4{bottom:758.973333pt;}
.y14{bottom:762.486667pt;}
.y60{bottom:772.316000pt;}
.y70{bottom:772.493333pt;}
.ya3{bottom:779.466667pt;}
.y36{bottom:787.044000pt;}
.y1c{bottom:787.924000pt;}
.y59{bottom:788.101333pt;}
.y13{bottom:792.385333pt;}
.y8b{bottom:795.558667pt;}
.yc{bottom:803.532000pt;}
.y5f{bottom:804.193333pt;}
.y3{bottom:806.458667pt;}
.y35{bottom:818.920000pt;}
.y1b{bottom:819.801333pt;}
.y58{bottom:819.978667pt;}
.y12{bottom:822.284000pt;}
.ya2{bottom:824.626667pt;}
.y8a{bottom:827.434667pt;}
.yb{bottom:835.409333pt;}
.y77{bottom:835.585333pt;}
.y34{bottom:850.797333pt;}
.y49{bottom:851.193333pt;}
.y1a{bottom:851.677333pt;}
.y6f{bottom:851.854667pt;}
.y11{bottom:852.181333pt;}
.ya1{bottom:856.504000pt;}
.ya{bottom:867.285333pt;}
.y57{bottom:867.462667pt;}
.y2{bottom:869.442667pt;}
.y89{bottom:872.596000pt;}
.y10{bottom:882.080000pt;}
.y33{bottom:882.674667pt;}
.y48{bottom:883.070667pt;}
.y19{bottom:883.554667pt;}
.y9{bottom:899.162667pt;}
.y56{bottom:899.340000pt;}
.ya0{bottom:901.664000pt;}
.yf{bottom:911.978667pt;}
.y32{bottom:914.552000pt;}
.y47{bottom:914.948000pt;}
.y5e{bottom:915.432000pt;}
.y88{bottom:917.756000pt;}
.y1{bottom:924.402667pt;}
.y8{bottom:931.040000pt;}
.y55{bottom:931.217333pt;}
.y9f{bottom:933.541333pt;}
.ye{bottom:941.877333pt;}
.y46{bottom:946.825333pt;}
.y31{bottom:962.214667pt;}
.y7{bottom:962.917333pt;}
.yd{bottom:971.776000pt;}
.y45{bottom:978.702667pt;}
.y6{bottom:1010.580000pt;}
.ha{height:24.696550pt;}
.hb{height:37.459376pt;}
.h7{height:40.727307pt;}
.h8{height:41.018216pt;}
.h5{height:47.820800pt;}
.h9{height:51.403288pt;}
.hc{height:51.408621pt;}
.h4{height:57.384800pt;}
.h6{height:64.270827pt;}
.h2{height:77.140000pt;}
.h3{height:77.911400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:96.000000pt;}
.xd{left:111.608000pt;}
.xb{left:113.950667pt;}
.x2{left:116.444000pt;}
.xa{left:119.412000pt;}
.x9{left:135.020000pt;}
.x1{left:153.252000pt;}
.x8{left:156.838667pt;}
.x3{left:310.358667pt;}
.x4{left:326.874667pt;}
.x7{left:364.849333pt;}
.xc{left:389.046667pt;}
.x5{left:392.948000pt;}
}




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