
    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_4cc9a4f5ea52ead7dd51d127.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eba853a5a5f6f38703c6adb1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d28037b89c95627900490f19.woff')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_9220f3a29546b78a45067846.woff')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_ce64808e30a5bc649d1e4155.woff')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_9f2c4f3ddb06abac7d8b15b8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.871094;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_c7d96d875c42aab04f6decdc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.871094;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_66f4091006462ba1d146d80e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_fabe0b1c15d57025226bd893.woff')format("woff");}.ff9{font-family:ff9;line-height:0.939453;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_f1fed7cf3b8d71008ebdb637.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e59c718549c5b1c5578f2137.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f2a30daad45791ee901e0e40.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1f5d12174e9d1cf279d5b4fd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d7e6e80215c0017b9d5a7e0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;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:fff;src:url('chunks/assets/font_6c8603d1640e8f5a7e86f2c0.woff')format("woff");}.fff{font-family:fff;line-height:0.938477;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:ff10;src:url('chunks/assets/font_b63838dddac5be2466a2bc22.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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:ff11;src:url('chunks/assets/font_aac27a75e4d83e1e0bada880.woff')format("woff");}.ff11{font-family:ff11;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_583ebcd88522e67a4b07bb77.woff')format("woff");}.ff12{font-family:ff12;line-height:0.682617;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);}
.v1{vertical-align:-144.000000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.346800px;}
.ls20{letter-spacing:-0.223800px;}
.ls19{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.117600px;}
.ls6{letter-spacing:-0.000006px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.325200px;}
.ls5{letter-spacing:0.468000px;}
.lsf{letter-spacing:12.525840px;}
.ls4{letter-spacing:31.968000px;}
.ls15{letter-spacing:32.426496px;}
.ls14{letter-spacing:33.226560px;}
.ls2{letter-spacing:38.665440px;}
.lsd{letter-spacing:39.456000px;}
.ls3{letter-spacing:39.840048px;}
.lse{letter-spacing:40.176000px;}
.ls10{letter-spacing:40.356000px;}
.lsb{letter-spacing:47.125440px;}
.lsc{letter-spacing:47.664000px;}
.ls1a{letter-spacing:62.641440px;}
.ls18{letter-spacing:75.513600px;}
.ls1b{letter-spacing:75.598560px;}
.ls17{letter-spacing:75.600000px;}
.ls1c{letter-spacing:87.552000px;}
.ls13{letter-spacing:93.369600px;}
.ls12{letter-spacing:93.420000px;}
.ls8{letter-spacing:97.936128px;}
.ls7{letter-spacing:97.984080px;}
.ls11{letter-spacing:111.600000px;}
.ls9{letter-spacing:114.048000px;}
.ls1f{letter-spacing:165.744000px;}
.ls1e{letter-spacing:192.384000px;}
.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;}
}
.ws1c{word-spacing:-53.482752px;}
.ws10{word-spacing:-46.637280px;}
.wsa{word-spacing:-40.320000px;}
.wsc{word-spacing:-40.072032px;}
.wsd{word-spacing:-40.032000px;}
.ws2{word-spacing:-33.533520px;}
.wse{word-spacing:-33.466752px;}
.ws0{word-spacing:-33.426720px;}
.wsf{word-spacing:-33.119952px;}
.ws9{word-spacing:-3.985440px;}
.wsb{word-spacing:-2.184000px;}
.ws7{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.320000px;}
.ws12{word-spacing:-0.144000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.552000px;}
.ws4{word-spacing:0.613920px;}
.ws15{word-spacing:0.648432px;}
.ws19{word-spacing:0.892800px;}
.ws14{word-spacing:0.912240px;}
.ws17{word-spacing:0.984000px;}
.ws18{word-spacing:1.152000px;}
.ws5{word-spacing:1.458000px;}
.ws1a{word-spacing:9.504000px;}
.ws1b{word-spacing:9.583272px;}
.ws8{word-spacing:44.541360px;}
.ws11{word-spacing:108.370656px;}
.ws1{word-spacing:287.799600px;}
.ws13{word-spacing:532.438080px;}
._4{margin-left:-12.985920px;}
._2{margin-left:-5.651280px;}
._3{margin-left:-3.962256px;}
._1{margin-left:-2.693376px;}
._0{margin-left:-1.346688px;}
._5{width:1.145328px;}
._6{width:2.572128px;}
._a{width:3.695328px;}
._d{width:38.424000px;}
._10{width:47.943840px;}
._11{width:49.009632px;}
._9{width:50.760288px;}
._e{width:87.552000px;}
._f{width:94.744080px;}
._7{width:97.984080px;}
._8{width:114.048000px;}
._c{width:155.095920px;}
._b{width:160.135920px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,102,204);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(165,0,33);}
.fs9{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fsa{font-size:108.000000px;}
.fsb{font-size:108.144000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs6{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs4{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs1{font-size:192.240000px;}
.fs0{font-size:192.384000px;}
.fs8{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yc8{bottom:4.320000px;}
.y3{bottom:8.136000px;}
.y70{bottom:9.180000px;}
.y64{bottom:14.940000px;}
.y9d{bottom:16.740000px;}
.y4a{bottom:18.360000px;}
.y79{bottom:20.520000px;}
.y8c{bottom:24.840000px;}
.y7{bottom:33.192000px;}
.y20{bottom:34.920000px;}
.y15{bottom:37.800000px;}
.yac{bottom:38.988000px;}
.yaa{bottom:42.120000px;}
.y3d{bottom:42.480000px;}
.yb6{bottom:43.560000px;}
.y82{bottom:45.720000px;}
.yc7{bottom:47.520000px;}
.y2e{bottom:47.880000px;}
.y55{bottom:51.480000px;}
.y9c{bottom:52.740000px;}
.ye7{bottom:53.460000px;}
.y63{bottom:58.140000px;}
.y78{bottom:63.720000px;}
.y49{bottom:70.560000px;}
.y14{bottom:81.000000px;}
.y8b{bottom:85.320000px;}
.y3c{bottom:85.680000px;}
.y1f{bottom:90.000000px;}
.yc6{bottom:90.720000px;}
.yd4{bottom:93.780000px;}
.yb5{bottom:93.960000px;}
.y6f{bottom:95.580000px;}
.y9b{bottom:97.200000px;}
.y81{bottom:97.920000px;}
.y62{bottom:102.600000px;}
.y48{bottom:105.120000px;}
.y6{bottom:105.192000px;}
.y2d{bottom:106.920000px;}
.yde{bottom:112.320000px;}
.y54{bottom:113.400000px;}
.ya9{bottom:128.520000px;}
.yd3{bottom:131.040000px;}
.y13{bottom:133.200000px;}
.yc5{bottom:133.920000px;}
.y3b{bottom:137.520000px;}
.y6e{bottom:138.780000px;}
.y80{bottom:141.120000px;}
.y5{bottom:141.192000px;}
.yb4{bottom:144.360000px;}
.y1e{bottom:145.080000px;}
.y8a{bottom:145.800000px;}
.y9a{bottom:147.780000px;}
.y2c{bottom:150.150000px;}
.y61{bottom:152.490000px;}
.ydd{bottom:156.990000px;}
.y47{bottom:157.350000px;}
.y53{bottom:163.830000px;}
.ya8{bottom:171.750000px;}
.yd2{bottom:174.270000px;}
.y6d{bottom:174.810000px;}
.y12{bottom:176.430000px;}
.yc4{bottom:177.150000px;}
.y4{bottom:177.225000px;}
.y3a{bottom:180.750000px;}
.ye6{bottom:183.090000px;}
.y99{bottom:183.810000px;}
.y60{bottom:186.870000px;}
.y77{bottom:193.350000px;}
.yb3{bottom:194.790000px;}
.y1d{bottom:200.190000px;}
.y2b{bottom:201.990000px;}
.y89{bottom:206.310000px;}
.y46{bottom:209.550000px;}
.y52{bottom:214.230000px;}
.ya7{bottom:214.950000px;}
.yd1{bottom:217.470000px;}
.y6c{bottom:218.010000px;}
.y39{bottom:223.950000px;}
.ye5{bottom:226.290000px;}
.y98{bottom:228.270000px;}
.yc3{bottom:229.350000px;}
.y5f{bottom:230.070000px;}
.y76{bottom:236.550000px;}
.y11{bottom:237.270000px;}
.yb2{bottom:243.750000px;}
.y45{bottom:244.110000px;}
.y2a{bottom:253.830000px;}
.y1c{bottom:255.270000px;}
.ya6{bottom:258.150000px;}
.yd0{bottom:260.670000px;}
.y6b{bottom:261.210000px;}
.y88{bottom:266.790000px;}
.y38{bottom:267.150000px;}
.y97{bottom:271.470000px;}
.yc2{bottom:272.550000px;}
.y5e{bottom:273.270000px;}
.ydc{bottom:277.950000px;}
.y75{bottom:279.750000px;}
.y51{bottom:283.710000px;}
.yb1{bottom:286.950000px;}
.y44{bottom:287.310000px;}
.y10{bottom:298.155000px;}
.ya5{bottom:301.395000px;}
.ycf{bottom:303.915000px;}
.y6a{bottom:304.455000px;}
.y29{bottom:307.335000px;}
.ye4{bottom:312.735000px;}
.yc1{bottom:315.795000px;}
.y5d{bottom:316.515000px;}
.y87{bottom:317.235000px;}
.y96{bottom:323.355000px;}
.y1b{bottom:328.395000px;}
.yb0{bottom:330.195000px;}
.y74{bottom:331.635000px;}
.y7f{bottom:331.995000px;}
.y50{bottom:334.155000px;}
.y37{bottom:336.315000px;}
.ydb{bottom:337.035000px;}
.yf{bottom:341.355000px;}
.y69{bottom:348.915000px;}
.yce{bottom:355.755000px;}
.ye3{bottom:355.935000px;}
.y28{bottom:357.555000px;}
.ya4{bottom:358.635000px;}
.y5c{bottom:359.715000px;}
.y95{bottom:366.555000px;}
.y86{bottom:367.635000px;}
.yc0{bottom:367.995000px;}
.y73{bottom:374.835000px;}
.y7e{bottom:375.195000px;}
.y36{bottom:379.515000px;}
.yda{bottom:381.675000px;}
.y43{bottom:383.115000px;}
.y4f{bottom:384.555000px;}
.y1a{bottom:385.995000px;}
.ye{bottom:393.195000px;}
.ycd{bottom:398.955000px;}
.ye2{bottom:399.135000px;}
.y68{bottom:399.495000px;}
.y5b{bottom:409.575000px;}
.ya3{bottom:410.475000px;}
.ybf{bottom:411.195000px;}
.y42{bottom:417.675000px;}
.y85{bottom:418.035000px;}
.yaf{bottom:423.795000px;}
.y72{bottom:426.675000px;}
.y7d{bottom:427.395000px;}
.y35{bottom:431.355000px;}
.y4e{bottom:434.955000px;}
.yd9{bottom:440.715000px;}
.ycc{bottom:442.155000px;}
.y67{bottom:442.695000px;}
.y19{bottom:443.595000px;}
.y5a{bottom:443.955000px;}
.ya2{bottom:453.705000px;}
.ybe{bottom:454.425000px;}
.yd{bottom:454.605000px;}
.y27{bottom:458.385000px;}
.y41{bottom:460.905000px;}
.y94{bottom:461.625000px;}
.yae{bottom:467.025000px;}
.y84{bottom:468.465000px;}
.y7c{bottom:470.625000px;}
.y34{bottom:474.585000px;}
.y71{bottom:478.545000px;}
.y4d{bottom:485.385000px;}
.y66{bottom:485.925000px;}
.y59{bottom:487.185000px;}
.y40{bottom:495.465000px;}
.ybd{bottom:497.625000px;}
.y18{bottom:501.225000px;}
.y93{bottom:504.825000px;}
.ya1{bottom:505.545000px;}
.y26{bottom:508.785000px;}
.yc{bottom:512.025000px;}
.yad{bottom:513.105000px;}
.y83{bottom:518.865000px;}
.y7b{bottom:524.265000px;}
.y33{bottom:527.865000px;}
.ye1{bottom:528.765000px;}
.y65{bottom:529.125000px;}
.y58{bottom:530.385000px;}
.yd8{bottom:535.785000px;}
.ycb{bottom:535.965000px;}
.y3f{bottom:538.665000px;}
.ybc{bottom:540.825000px;}
.y4c{bottom:547.305000px;}
.y92{bottom:548.025000px;}
.yb{bottom:548.565000px;}
.ya0{bottom:548.745000px;}
.y17{bottom:558.825000px;}
.y25{bottom:569.265000px;}
.yca{bottom:571.965000px;}
.y3e{bottom:573.225000px;}
.y57{bottom:573.585000px;}
.y32{bottom:578.265000px;}
.y7a{bottom:582.225000px;}
.ybb{bottom:584.025000px;}
.y91{bottom:591.225000px;}
.yd7{bottom:596.310000px;}
.y9f{bottom:600.630000px;}
.y4b{bottom:604.950000px;}
.ya{bottom:608.010000px;}
.yc9{bottom:609.270000px;}
.ye0{bottom:615.210000px;}
.y16{bottom:616.470000px;}
.y24{bottom:619.710000px;}
.y56{bottom:625.470000px;}
.yba{bottom:627.270000px;}
.y31{bottom:628.710000px;}
.y90{bottom:634.470000px;}
.yd6{bottom:646.710000px;}
.y9{bottom:648.330000px;}
.y9e{bottom:652.470000px;}
.ydf{bottom:658.410000px;}
.yb9{bottom:670.470000px;}
.y2{bottom:686.850000px;}
.y30{bottom:695.850000px;}
.y8f{bottom:704.850000px;}
.y23{bottom:724.650000px;}
.y21{bottom:733.290000px;}
.y22{bottom:734.910000px;}
.yb8{bottom:738.150000px;}
.yab{bottom:739.410000px;}
.y8{bottom:740.310000px;}
.yd5{bottom:743.040000px;}
.y8d{bottom:743.940000px;}
.y1{bottom:744.480000px;}
.yb7{bottom:752.940000px;}
.y2f{bottom:753.480000px;}
.y8e{bottom:762.480000px;}
.hf{height:63.180000px;}
.h17{height:63.288000px;}
.hc{height:98.437500px;}
.ha{height:99.773438px;}
.hb{height:99.873211px;}
.h12{height:104.835938px;}
.h13{height:104.976562px;}
.h15{height:112.640625px;}
.h16{height:112.790813px;}
.h6{height:114.679688px;}
.h7{height:114.778125px;}
.h11{height:122.133867px;}
.h3{height:125.406562px;}
.h4{height:125.556750px;}
.h2{height:139.955977px;}
.h14{height:145.125000px;}
.he{height:147.656250px;}
.h8{height:150.187500px;}
.h9{height:150.337688px;}
.h5{height:174.968437px;}
.h10{height:175.118625px;}
.hd{height:200.500313px;}
.h1{height:200.650500px;}
.h0{height:810.000000px;}
.w1{width:1079.999984px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xf{left:19.799984px;}
.x1b{left:24.299984px;}
.x1f{left:28.799984px;}
.x36{left:35.639984px;}
.x26{left:37.799984px;}
.x29{left:51.551984px;}
.x3c{left:53.639984px;}
.x21{left:57.419984px;}
.x1a{left:60.839984px;}
.x18{left:63.899984px;}
.x3{left:66.239984px;}
.x3d{left:67.499984px;}
.x20{left:69.299984px;}
.x42{left:70.811984px;}
.x45{left:73.799984px;}
.x37{left:76.139984px;}
.x27{left:78.299984px;}
.x35{left:82.799984px;}
.x22{left:84.959984px;}
.x38{left:89.639984px;}
.x3f{left:91.367984px;}
.x46{left:94.535984px;}
.x1{left:97.415984px;}
.x41{left:102.347984px;}
.x23{left:103.787984px;}
.x34{left:109.367984px;}
.x19{left:112.355984px;}
.x16{left:119.447984px;}
.x39{left:123.335984px;}
.x43{left:130.175984px;}
.x25{left:137.267984px;}
.x40{left:141.047984px;}
.x17{left:145.295984px;}
.x1d{left:151.304984px;}
.x2e{left:167.504984px;}
.x14{left:169.124984px;}
.x3e{left:172.904984px;}
.x1e{left:180.464984px;}
.x2d{left:185.249984px;}
.x24{left:208.904984px;}
.x2c{left:210.809984px;}
.x2f{left:235.724984px;}
.x30{left:243.464984px;}
.x6{left:247.244984px;}
.x1c{left:276.869984px;}
.x10{left:292.169984px;}
.x11{left:310.754984px;}
.x2a{left:313.094984px;}
.x31{left:315.149984px;}
.x13{left:326.234984px;}
.x47{left:345.569984px;}
.x4c{left:359.069984px;}
.x7{left:361.874984px;}
.x4d{left:365.369984px;}
.x9{left:366.374984px;}
.xb{left:369.614984px;}
.xe{left:373.754984px;}
.xa{left:383.834984px;}
.x2{left:386.354984px;}
.x4f{left:394.529984px;}
.x4b{left:401.369984px;}
.x49{left:402.449984px;}
.x44{left:410.729984px;}
.x4e{left:414.509984px;}
.xd{left:430.814984px;}
.x33{left:446.189984px;}
.x4a{left:450.689984px;}
.x4{left:460.874984px;}
.x12{left:470.054984px;}
.x48{left:475.739984px;}
.x2b{left:506.624984px;}
.xc{left:512.744984px;}
.x3a{left:539.744984px;}
.x3b{left:553.604984px;}
.x5{left:659.624984px;}
.x8{left:675.824984px;}
.x28{left:791.969984px;}
.x15{left:1062.254984px;}
.x32{left:1090.979984px;}
@media print{
.v1{vertical-align:-128.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.308267pt;}
.ls20{letter-spacing:-0.198933pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.104533pt;}
.ls6{letter-spacing:-0.000005pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.289067pt;}
.ls5{letter-spacing:0.416000pt;}
.lsf{letter-spacing:11.134080pt;}
.ls4{letter-spacing:28.416000pt;}
.ls15{letter-spacing:28.823552pt;}
.ls14{letter-spacing:29.534720pt;}
.ls2{letter-spacing:34.369280pt;}
.lsd{letter-spacing:35.072000pt;}
.ls3{letter-spacing:35.413376pt;}
.lse{letter-spacing:35.712000pt;}
.ls10{letter-spacing:35.872000pt;}
.lsb{letter-spacing:41.889280pt;}
.lsc{letter-spacing:42.368000pt;}
.ls1a{letter-spacing:55.681280pt;}
.ls18{letter-spacing:67.123200pt;}
.ls1b{letter-spacing:67.198720pt;}
.ls17{letter-spacing:67.200000pt;}
.ls1c{letter-spacing:77.824000pt;}
.ls13{letter-spacing:82.995200pt;}
.ls12{letter-spacing:83.040000pt;}
.ls8{letter-spacing:87.054336pt;}
.ls7{letter-spacing:87.096960pt;}
.ls11{letter-spacing:99.200000pt;}
.ls9{letter-spacing:101.376000pt;}
.ls1f{letter-spacing:147.328000pt;}
.ls1e{letter-spacing:171.008000pt;}
.ws1c{word-spacing:-47.540224pt;}
.ws10{word-spacing:-41.455360pt;}
.wsa{word-spacing:-35.840000pt;}
.wsc{word-spacing:-35.619584pt;}
.wsd{word-spacing:-35.584000pt;}
.ws2{word-spacing:-29.807573pt;}
.wse{word-spacing:-29.748224pt;}
.ws0{word-spacing:-29.712640pt;}
.wsf{word-spacing:-29.439957pt;}
.ws9{word-spacing:-3.542613pt;}
.wsb{word-spacing:-1.941333pt;}
.ws7{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.173333pt;}
.ws12{word-spacing:-0.128000pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.490667pt;}
.ws4{word-spacing:0.545707pt;}
.ws15{word-spacing:0.576384pt;}
.ws19{word-spacing:0.793600pt;}
.ws14{word-spacing:0.810880pt;}
.ws17{word-spacing:0.874667pt;}
.ws18{word-spacing:1.024000pt;}
.ws5{word-spacing:1.296000pt;}
.ws1a{word-spacing:8.448000pt;}
.ws1b{word-spacing:8.518464pt;}
.ws8{word-spacing:39.592320pt;}
.ws11{word-spacing:96.329472pt;}
.ws1{word-spacing:255.821867pt;}
.ws13{word-spacing:473.278293pt;}
._4{margin-left:-11.543040pt;}
._2{margin-left:-5.023360pt;}
._3{margin-left:-3.522005pt;}
._1{margin-left:-2.394112pt;}
._0{margin-left:-1.197056pt;}
._5{width:1.018069pt;}
._6{width:2.286336pt;}
._a{width:3.284736pt;}
._d{width:34.154667pt;}
._10{width:42.616747pt;}
._11{width:43.564117pt;}
._9{width:45.120256pt;}
._e{width:77.824000pt;}
._f{width:84.216960pt;}
._7{width:87.096960pt;}
._8{width:101.376000pt;}
._c{width:137.863040pt;}
._b{width:142.343040pt;}
.fs9{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fsa{font-size:96.000000pt;}
.fsb{font-size:96.128000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs6{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs4{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs1{font-size:170.880000pt;}
.fs0{font-size:171.008000pt;}
.fs8{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:3.840000pt;}
.y3{bottom:7.232000pt;}
.y70{bottom:8.160000pt;}
.y64{bottom:13.280000pt;}
.y9d{bottom:14.880000pt;}
.y4a{bottom:16.320000pt;}
.y79{bottom:18.240000pt;}
.y8c{bottom:22.080000pt;}
.y7{bottom:29.504000pt;}
.y20{bottom:31.040000pt;}
.y15{bottom:33.600000pt;}
.yac{bottom:34.656000pt;}
.yaa{bottom:37.440000pt;}
.y3d{bottom:37.760000pt;}
.yb6{bottom:38.720000pt;}
.y82{bottom:40.640000pt;}
.yc7{bottom:42.240000pt;}
.y2e{bottom:42.560000pt;}
.y55{bottom:45.760000pt;}
.y9c{bottom:46.880000pt;}
.ye7{bottom:47.520000pt;}
.y63{bottom:51.680000pt;}
.y78{bottom:56.640000pt;}
.y49{bottom:62.720000pt;}
.y14{bottom:72.000000pt;}
.y8b{bottom:75.840000pt;}
.y3c{bottom:76.160000pt;}
.y1f{bottom:80.000000pt;}
.yc6{bottom:80.640000pt;}
.yd4{bottom:83.360000pt;}
.yb5{bottom:83.520000pt;}
.y6f{bottom:84.960000pt;}
.y9b{bottom:86.400000pt;}
.y81{bottom:87.040000pt;}
.y62{bottom:91.200000pt;}
.y48{bottom:93.440000pt;}
.y6{bottom:93.504000pt;}
.y2d{bottom:95.040000pt;}
.yde{bottom:99.840000pt;}
.y54{bottom:100.800000pt;}
.ya9{bottom:114.240000pt;}
.yd3{bottom:116.480000pt;}
.y13{bottom:118.400000pt;}
.yc5{bottom:119.040000pt;}
.y3b{bottom:122.240000pt;}
.y6e{bottom:123.360000pt;}
.y80{bottom:125.440000pt;}
.y5{bottom:125.504000pt;}
.yb4{bottom:128.320000pt;}
.y1e{bottom:128.960000pt;}
.y8a{bottom:129.600000pt;}
.y9a{bottom:131.360000pt;}
.y2c{bottom:133.466667pt;}
.y61{bottom:135.546667pt;}
.ydd{bottom:139.546667pt;}
.y47{bottom:139.866667pt;}
.y53{bottom:145.626667pt;}
.ya8{bottom:152.666667pt;}
.yd2{bottom:154.906667pt;}
.y6d{bottom:155.386667pt;}
.y12{bottom:156.826667pt;}
.yc4{bottom:157.466667pt;}
.y4{bottom:157.533333pt;}
.y3a{bottom:160.666667pt;}
.ye6{bottom:162.746667pt;}
.y99{bottom:163.386667pt;}
.y60{bottom:166.106667pt;}
.y77{bottom:171.866667pt;}
.yb3{bottom:173.146667pt;}
.y1d{bottom:177.946667pt;}
.y2b{bottom:179.546667pt;}
.y89{bottom:183.386667pt;}
.y46{bottom:186.266667pt;}
.y52{bottom:190.426667pt;}
.ya7{bottom:191.066667pt;}
.yd1{bottom:193.306667pt;}
.y6c{bottom:193.786667pt;}
.y39{bottom:199.066667pt;}
.ye5{bottom:201.146667pt;}
.y98{bottom:202.906667pt;}
.yc3{bottom:203.866667pt;}
.y5f{bottom:204.506667pt;}
.y76{bottom:210.266667pt;}
.y11{bottom:210.906667pt;}
.yb2{bottom:216.666667pt;}
.y45{bottom:216.986667pt;}
.y2a{bottom:225.626667pt;}
.y1c{bottom:226.906667pt;}
.ya6{bottom:229.466667pt;}
.yd0{bottom:231.706667pt;}
.y6b{bottom:232.186667pt;}
.y88{bottom:237.146667pt;}
.y38{bottom:237.466667pt;}
.y97{bottom:241.306667pt;}
.yc2{bottom:242.266667pt;}
.y5e{bottom:242.906667pt;}
.ydc{bottom:247.066667pt;}
.y75{bottom:248.666667pt;}
.y51{bottom:252.186667pt;}
.yb1{bottom:255.066667pt;}
.y44{bottom:255.386667pt;}
.y10{bottom:265.026667pt;}
.ya5{bottom:267.906667pt;}
.ycf{bottom:270.146667pt;}
.y6a{bottom:270.626667pt;}
.y29{bottom:273.186667pt;}
.ye4{bottom:277.986667pt;}
.yc1{bottom:280.706667pt;}
.y5d{bottom:281.346667pt;}
.y87{bottom:281.986667pt;}
.y96{bottom:287.426667pt;}
.y1b{bottom:291.906667pt;}
.yb0{bottom:293.506667pt;}
.y74{bottom:294.786667pt;}
.y7f{bottom:295.106667pt;}
.y50{bottom:297.026667pt;}
.y37{bottom:298.946667pt;}
.ydb{bottom:299.586667pt;}
.yf{bottom:303.426667pt;}
.y69{bottom:310.146667pt;}
.yce{bottom:316.226667pt;}
.ye3{bottom:316.386667pt;}
.y28{bottom:317.826667pt;}
.ya4{bottom:318.786667pt;}
.y5c{bottom:319.746667pt;}
.y95{bottom:325.826667pt;}
.y86{bottom:326.786667pt;}
.yc0{bottom:327.106667pt;}
.y73{bottom:333.186667pt;}
.y7e{bottom:333.506667pt;}
.y36{bottom:337.346667pt;}
.yda{bottom:339.266667pt;}
.y43{bottom:340.546667pt;}
.y4f{bottom:341.826667pt;}
.y1a{bottom:343.106667pt;}
.ye{bottom:349.506667pt;}
.ycd{bottom:354.626667pt;}
.ye2{bottom:354.786667pt;}
.y68{bottom:355.106667pt;}
.y5b{bottom:364.066667pt;}
.ya3{bottom:364.866667pt;}
.ybf{bottom:365.506667pt;}
.y42{bottom:371.266667pt;}
.y85{bottom:371.586667pt;}
.yaf{bottom:376.706667pt;}
.y72{bottom:379.266667pt;}
.y7d{bottom:379.906667pt;}
.y35{bottom:383.426667pt;}
.y4e{bottom:386.626667pt;}
.yd9{bottom:391.746667pt;}
.ycc{bottom:393.026667pt;}
.y67{bottom:393.506667pt;}
.y19{bottom:394.306667pt;}
.y5a{bottom:394.626667pt;}
.ya2{bottom:403.293333pt;}
.ybe{bottom:403.933333pt;}
.yd{bottom:404.093333pt;}
.y27{bottom:407.453333pt;}
.y41{bottom:409.693333pt;}
.y94{bottom:410.333333pt;}
.yae{bottom:415.133333pt;}
.y84{bottom:416.413333pt;}
.y7c{bottom:418.333333pt;}
.y34{bottom:421.853333pt;}
.y71{bottom:425.373333pt;}
.y4d{bottom:431.453333pt;}
.y66{bottom:431.933333pt;}
.y59{bottom:433.053333pt;}
.y40{bottom:440.413333pt;}
.ybd{bottom:442.333333pt;}
.y18{bottom:445.533333pt;}
.y93{bottom:448.733333pt;}
.ya1{bottom:449.373333pt;}
.y26{bottom:452.253333pt;}
.yc{bottom:455.133333pt;}
.yad{bottom:456.093333pt;}
.y83{bottom:461.213333pt;}
.y7b{bottom:466.013333pt;}
.y33{bottom:469.213333pt;}
.ye1{bottom:470.013333pt;}
.y65{bottom:470.333333pt;}
.y58{bottom:471.453333pt;}
.yd8{bottom:476.253333pt;}
.ycb{bottom:476.413333pt;}
.y3f{bottom:478.813333pt;}
.ybc{bottom:480.733333pt;}
.y4c{bottom:486.493333pt;}
.y92{bottom:487.133333pt;}
.yb{bottom:487.613333pt;}
.ya0{bottom:487.773333pt;}
.y17{bottom:496.733333pt;}
.y25{bottom:506.013333pt;}
.yca{bottom:508.413333pt;}
.y3e{bottom:509.533333pt;}
.y57{bottom:509.853333pt;}
.y32{bottom:514.013333pt;}
.y7a{bottom:517.533333pt;}
.ybb{bottom:519.133333pt;}
.y91{bottom:525.533333pt;}
.yd7{bottom:530.053333pt;}
.y9f{bottom:533.893333pt;}
.y4b{bottom:537.733333pt;}
.ya{bottom:540.453333pt;}
.yc9{bottom:541.573333pt;}
.ye0{bottom:546.853333pt;}
.y16{bottom:547.973333pt;}
.y24{bottom:550.853333pt;}
.y56{bottom:555.973333pt;}
.yba{bottom:557.573333pt;}
.y31{bottom:558.853333pt;}
.y90{bottom:563.973333pt;}
.yd6{bottom:574.853333pt;}
.y9{bottom:576.293333pt;}
.y9e{bottom:579.973333pt;}
.ydf{bottom:585.253333pt;}
.yb9{bottom:595.973333pt;}
.y2{bottom:610.533333pt;}
.y30{bottom:618.533333pt;}
.y8f{bottom:626.533333pt;}
.y23{bottom:644.133333pt;}
.y21{bottom:651.813333pt;}
.y22{bottom:653.253333pt;}
.yb8{bottom:656.133333pt;}
.yab{bottom:657.253333pt;}
.y8{bottom:658.053333pt;}
.yd5{bottom:660.480000pt;}
.y8d{bottom:661.280000pt;}
.y1{bottom:661.760000pt;}
.yb7{bottom:669.280000pt;}
.y2f{bottom:669.760000pt;}
.y8e{bottom:677.760000pt;}
.hf{height:56.160000pt;}
.h17{height:56.256000pt;}
.hc{height:87.500000pt;}
.ha{height:88.687500pt;}
.hb{height:88.776188pt;}
.h12{height:93.187500pt;}
.h13{height:93.312500pt;}
.h15{height:100.125000pt;}
.h16{height:100.258500pt;}
.h6{height:101.937500pt;}
.h7{height:102.025000pt;}
.h11{height:108.563437pt;}
.h3{height:111.472500pt;}
.h4{height:111.606000pt;}
.h2{height:124.405313pt;}
.h14{height:129.000000pt;}
.he{height:131.250000pt;}
.h8{height:133.500000pt;}
.h9{height:133.633500pt;}
.h5{height:155.527500pt;}
.h10{height:155.661000pt;}
.hd{height:178.222500pt;}
.h1{height:178.356000pt;}
.h0{height:720.000000pt;}
.w1{width:959.999986pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xf{left:17.599986pt;}
.x1b{left:21.599986pt;}
.x1f{left:25.599986pt;}
.x36{left:31.679986pt;}
.x26{left:33.599986pt;}
.x29{left:45.823986pt;}
.x3c{left:47.679986pt;}
.x21{left:51.039986pt;}
.x1a{left:54.079986pt;}
.x18{left:56.799986pt;}
.x3{left:58.879986pt;}
.x3d{left:59.999986pt;}
.x20{left:61.599986pt;}
.x42{left:62.943986pt;}
.x45{left:65.599986pt;}
.x37{left:67.679986pt;}
.x27{left:69.599986pt;}
.x35{left:73.599986pt;}
.x22{left:75.519986pt;}
.x38{left:79.679986pt;}
.x3f{left:81.215986pt;}
.x46{left:84.031986pt;}
.x1{left:86.591986pt;}
.x41{left:90.975986pt;}
.x23{left:92.255986pt;}
.x34{left:97.215986pt;}
.x19{left:99.871986pt;}
.x16{left:106.175986pt;}
.x39{left:109.631986pt;}
.x43{left:115.711986pt;}
.x25{left:122.015986pt;}
.x40{left:125.375986pt;}
.x17{left:129.151986pt;}
.x1d{left:134.493319pt;}
.x2e{left:148.893319pt;}
.x14{left:150.333319pt;}
.x3e{left:153.693319pt;}
.x1e{left:160.413319pt;}
.x2d{left:164.666652pt;}
.x24{left:185.693319pt;}
.x2c{left:187.386652pt;}
.x2f{left:209.533319pt;}
.x30{left:216.413319pt;}
.x6{left:219.773319pt;}
.x1c{left:246.106652pt;}
.x10{left:259.706652pt;}
.x11{left:276.226652pt;}
.x2a{left:278.306652pt;}
.x31{left:280.133319pt;}
.x13{left:289.986652pt;}
.x47{left:307.173319pt;}
.x4c{left:319.173319pt;}
.x7{left:321.666652pt;}
.x4d{left:324.773319pt;}
.x9{left:325.666652pt;}
.xb{left:328.546652pt;}
.xe{left:332.226652pt;}
.xa{left:341.186652pt;}
.x2{left:343.426652pt;}
.x4f{left:350.693319pt;}
.x4b{left:356.773319pt;}
.x49{left:357.733319pt;}
.x44{left:365.093319pt;}
.x4e{left:368.453319pt;}
.xd{left:382.946652pt;}
.x33{left:396.613319pt;}
.x4a{left:400.613319pt;}
.x4{left:409.666652pt;}
.x12{left:417.826652pt;}
.x48{left:422.879986pt;}
.x2b{left:450.333319pt;}
.xc{left:455.773319pt;}
.x3a{left:479.773319pt;}
.x3b{left:492.093319pt;}
.x5{left:586.333319pt;}
.x8{left:600.733319pt;}
.x28{left:703.973319pt;}
.x15{left:944.226652pt;}
.x32{left:969.759986pt;}
}




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