
    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_42f77891b73bb508070c1472.woff')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6431c1208d9175d974af80a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.197754;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_d61757b54da3c9b737723a40.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_edff3de32f53c156a58b003c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.059000;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_565cb46d9bffff83f31d938e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_e04bbf3e2be6aeca0755fe8a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.819000;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_8a4c4b65d1e83c7bbaed789b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.992676;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_bd702a4986f4bb10231000ab.woff')format("woff");}.ff8{font-family:ff8;line-height:1.028000;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_aed1fb2dce9091cf84473d3a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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);}
.v4{vertical-align:-23.760000px;}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:15.840000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:180.000000px;}
.lsa{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000600px;}
.ls43{letter-spacing:0.009000px;}
.ls1b{letter-spacing:0.012000px;}
.ls21{letter-spacing:0.018000px;}
.ls30{letter-spacing:0.022800px;}
.ls25{letter-spacing:0.071400px;}
.ls11{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.086400px;}
.ls29{letter-spacing:0.087600px;}
.ls2a{letter-spacing:0.088200px;}
.ls4{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.219600px;}
.ls36{letter-spacing:0.220200px;}
.ls34{letter-spacing:0.229200px;}
.lsc{letter-spacing:0.244800px;}
.ls2c{letter-spacing:0.249600px;}
.ls3{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.336600px;}
.ls5{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.362400px;}
.ls10{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.444600px;}
.ls28{letter-spacing:0.445200px;}
.ls14{letter-spacing:0.504000px;}
.ls13{letter-spacing:0.576000px;}
.ls33{letter-spacing:0.578400px;}
.ls8{letter-spacing:0.581400px;}
.ls16{letter-spacing:0.648000px;}
.ls20{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.810600px;}
.ls7{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.936000px;}
.ls19{letter-spacing:1.008000px;}
.ls31{letter-spacing:1.056600px;}
.ls17{letter-spacing:1.060200px;}
.ls39{letter-spacing:1.080000px;}
.ls1f{letter-spacing:1.152000px;}
.ls3b{letter-spacing:1.152600px;}
.ls44{letter-spacing:1.200000px;}
.ls2d{letter-spacing:1.328400px;}
.ls26{letter-spacing:1.333200px;}
.ls3a{letter-spacing:1.440000px;}
.ls38{letter-spacing:1.512000px;}
.ls3c{letter-spacing:1.656000px;}
.ls3e{letter-spacing:1.716000px;}
.ls3d{letter-spacing:1.728000px;}
.lse{letter-spacing:2.346600px;}
.ls15{letter-spacing:2.991600px;}
.ls1c{letter-spacing:4.305000px;}
.ls3f{letter-spacing:4.752000px;}
.ls1e{letter-spacing:5.361600px;}
.ls32{letter-spacing:5.688000px;}
.ls24{letter-spacing:5.921400px;}
.ls2b{letter-spacing:5.976000px;}
.ls2f{letter-spacing:6.617400px;}
.ls9{letter-spacing:6.622200px;}
.ls23{letter-spacing:6.727800px;}
.ls35{letter-spacing:7.036800px;}
.ls18{letter-spacing:7.205400px;}
.ls0{letter-spacing:8.460000px;}
.ls2{letter-spacing:10.592088px;}
.ls1{letter-spacing:10.740000px;}
.ls40{letter-spacing:15.199800px;}
.ls1a{letter-spacing:18.188160px;}
.ls41{letter-spacing:112.840200px;}
.ls42{letter-spacing:115.184400px;}
.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;}
}
.ws17{word-spacing:-50.184000px;}
.ws16{word-spacing:-49.968000px;}
.ws15{word-spacing:-49.680000px;}
.ws14{word-spacing:-49.608000px;}
.ws11{word-spacing:-49.536000px;}
.ws7{word-spacing:-49.392000px;}
.ws12{word-spacing:-49.176000px;}
.wsf{word-spacing:-49.104000px;}
.wsb{word-spacing:-49.032000px;}
.wsc{word-spacing:-48.960000px;}
.ws4{word-spacing:-48.888000px;}
.ws1{word-spacing:-48.816000px;}
.wsd{word-spacing:-48.744000px;}
.ws8{word-spacing:-48.672000px;}
.wse{word-spacing:-48.600000px;}
.ws2{word-spacing:-48.528000px;}
.ws1b{word-spacing:-41.640000px;}
.ws1d{word-spacing:-40.440000px;}
.wsa{word-spacing:-32.352000px;}
.ws5{word-spacing:-21.096000px;}
.ws9{word-spacing:-20.232000px;}
.ws1c{word-spacing:-18.060000px;}
.ws13{word-spacing:-16.860000px;}
.ws3{word-spacing:-13.757760px;}
.ws19{word-spacing:-13.488000px;}
.ws18{word-spacing:-12.336000px;}
.ws10{word-spacing:-9.171840px;}
.ws0{word-spacing:-8.520000px;}
.ws6{word-spacing:0.000000px;}
.ws1a{word-spacing:9.792000px;}
._16{margin-left:-2135.423400px;}
._17{margin-left:-1808.202600px;}
._28{margin-left:-915.272400px;}
._13{margin-left:-21.424200px;}
._1a{margin-left:-19.744200px;}
._1f{margin-left:-17.856000px;}
._3{margin-left:-15.423000px;}
._4{margin-left:-14.209800px;}
._15{margin-left:-12.483600px;}
._2{margin-left:-11.400000px;}
._1e{margin-left:-9.840000px;}
._0{margin-left:-8.460000px;}
._b{margin-left:-7.223400px;}
._d{margin-left:-6.168000px;}
._e{margin-left:-5.146200px;}
._c{margin-left:-4.140600px;}
._1{margin-left:-3.000000px;}
._5{margin-left:-1.560000px;}
._8{width:1.072200px;}
._7{width:2.160000px;}
._9{width:3.479400px;}
._a{width:4.543800px;}
._f{width:5.904000px;}
._6{width:6.912000px;}
._14{width:8.280000px;}
._12{width:9.504000px;}
._18{width:10.728000px;}
._1c{width:12.036600px;}
._1b{width:13.271400px;}
._1d{width:14.608200px;}
._26{width:16.148160px;}
._19{width:18.188160px;}
._10{width:34.508160px;}
._22{width:40.512000px;}
._25{width:56.160000px;}
._24{width:68.832000px;}
._20{width:74.784000px;}
._27{width:104.496000px;}
._21{width:118.512000px;}
._23{width:120.144000px;}
._11{width:163.080000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:32.640000px;}
.fs7{font-size:33.600000px;}
.fs6{font-size:48.000000px;}
.fs4{font-size:48.960000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:423.828000px;}
.y0{bottom:0.000000px;}
.y22{bottom:102.750750px;}
.y1{bottom:103.500000px;}
.yaa{bottom:148.499850px;}
.y21{bottom:148.500000px;}
.y5a{bottom:148.649850px;}
.y2b{bottom:152.460000px;}
.y83{bottom:152.460150px;}
.y103{bottom:156.000000px;}
.y11c{bottom:159.750000px;}
.ya9{bottom:163.499850px;}
.y2f{bottom:163.500000px;}
.yfa{bottom:167.459850px;}
.y20{bottom:167.460000px;}
.y5b{bottom:171.000000px;}
.y82{bottom:171.000150px;}
.y59{bottom:171.149850px;}
.y2a{bottom:174.960000px;}
.y2e{bottom:178.500000px;}
.ya8{bottom:182.459850px;}
.y84{bottom:182.460000px;}
.yce{bottom:185.550000px;}
.yf9{bottom:185.999850px;}
.y86{bottom:186.000000px;}
.y81{bottom:186.000150px;}
.y1f{bottom:189.960000px;}
.y2d{bottom:193.500000px;}
.y58{bottom:193.649850px;}
.y11b{bottom:197.250000px;}
.yfb{bottom:197.460000px;}
.ycd{bottom:200.100000px;}
.y102{bottom:201.000000px;}
.y80{bottom:201.000150px;}
.yf8{bottom:204.959850px;}
.y85{bottom:204.960000px;}
.y43{bottom:208.500000px;}
.ya7{bottom:209.249850px;}
.y2c{bottom:212.460000px;}
.y1e{bottom:216.000000px;}
.y7f{bottom:216.000150px;}
.y57{bottom:216.149850px;}
.ycc{bottom:218.610000px;}
.yf7{bottom:223.499850px;}
.y5d{bottom:223.500000px;}
.y42{bottom:231.000000px;}
.ya6{bottom:231.299850px;}
.y11a{bottom:234.750000px;}
.y1d{bottom:238.500000px;}
.y56{bottom:238.649850px;}
.ydc{bottom:240.000000px;}
.ycb{bottom:240.660000px;}
.yf6{bottom:242.459850px;}
.y7e{bottom:248.400150px;}
.ya5{bottom:253.349850px;}
.y41{bottom:253.500000px;}
.y5c{bottom:257.460000px;}
.yca{bottom:259.200000px;}
.y1c{bottom:261.000000px;}
.y55{bottom:261.149850px;}
.ydb{bottom:262.050000px;}
.y101{bottom:268.500000px;}
.y7d{bottom:270.600150px;}
.y119{bottom:272.250000px;}
.yc9{bottom:273.750000px;}
.ya4{bottom:275.399850px;}
.y40{bottom:276.000000px;}
.y1b{bottom:283.500000px;}
.yda{bottom:284.100000px;}
.yf5{bottom:285.299850px;}
.y118{bottom:291.000000px;}
.yc8{bottom:292.260000px;}
.y7c{bottom:292.800150px;}
.ya3{bottom:297.449850px;}
.y100{bottom:298.500000px;}
.y1a{bottom:306.000000px;}
.yd9{bottom:306.150000px;}
.yf4{bottom:307.799850px;}
.y117{bottom:309.750000px;}
.yff{bottom:313.500000px;}
.y7b{bottom:315.000150px;}
.ya2{bottom:319.499850px;}
.y3f{bottom:321.000000px;}
.yc7{bottom:321.750000px;}
.yd8{bottom:328.200000px;}
.y19{bottom:328.500000px;}
.yf3{bottom:330.299850px;}
.y7a{bottom:337.200150px;}
.ya1{bottom:341.549850px;}
.y3e{bottom:343.500000px;}
.yc6{bottom:343.725000px;}
.y116{bottom:347.250000px;}
.yd7{bottom:350.250000px;}
.y18{bottom:351.000000px;}
.yf2{bottom:352.799850px;}
.yfe{bottom:358.500000px;}
.y79{bottom:359.400150px;}
.ya0{bottom:363.599850px;}
.yc5{bottom:365.700000px;}
.y3d{bottom:366.000000px;}
.yd6{bottom:372.300000px;}
.y17{bottom:373.500000px;}
.yf1{bottom:375.299850px;}
.y78{bottom:381.600150px;}
.y115{bottom:384.750000px;}
.y9f{bottom:385.649850px;}
.yc4{bottom:387.675000px;}
.y3c{bottom:388.500000px;}
.y16{bottom:396.000000px;}
.yf0{bottom:397.800000px;}
.yfd{bottom:403.500000px;}
.ycf{bottom:403.800000px;}
.y77{bottom:403.800150px;}
.y9e{bottom:407.699850px;}
.yc3{bottom:409.650000px;}
.y3b{bottom:411.000000px;}
.y15{bottom:418.500000px;}
.yef{bottom:420.300000px;}
.y114{bottom:422.250000px;}
.y76{bottom:426.000150px;}
.y9d{bottom:429.749850px;}
.yc2{bottom:431.625000px;}
.y3a{bottom:433.500000px;}
.y14{bottom:441.000000px;}
.yee{bottom:442.800000px;}
.y75{bottom:448.200000px;}
.yfc{bottom:448.500000px;}
.y9c{bottom:451.800000px;}
.yc1{bottom:453.600000px;}
.y39{bottom:456.000000px;}
.y113{bottom:459.750000px;}
.y13{bottom:463.500000px;}
.yed{bottom:465.300000px;}
.y74{bottom:470.400150px;}
.y9b{bottom:473.849850px;}
.yc0{bottom:475.575000px;}
.y38{bottom:478.500000px;}
.y12{bottom:486.000000px;}
.yec{bottom:487.800000px;}
.y73{bottom:492.600150px;}
.y9a{bottom:495.899850px;}
.ybf{bottom:497.550000px;}
.y37{bottom:501.000000px;}
.y11{bottom:508.500000px;}
.yeb{bottom:510.300000px;}
.y72{bottom:514.800150px;}
.y99{bottom:517.949850px;}
.ybe{bottom:519.525000px;}
.y36{bottom:523.500000px;}
.y10{bottom:531.000000px;}
.yea{bottom:532.800000px;}
.y71{bottom:537.000150px;}
.y98{bottom:539.999850px;}
.ybd{bottom:541.500000px;}
.y35{bottom:546.000000px;}
.yf{bottom:553.500000px;}
.ye9{bottom:555.300000px;}
.y70{bottom:559.200000px;}
.y112{bottom:561.000000px;}
.y54{bottom:561.149850px;}
.y97{bottom:562.050000px;}
.ybc{bottom:563.475000px;}
.y34{bottom:568.500000px;}
.ye{bottom:576.000000px;}
.ye8{bottom:577.800000px;}
.y6f{bottom:581.400150px;}
.y96{bottom:584.099850px;}
.ybb{bottom:585.450000px;}
.y33{bottom:591.000000px;}
.yd{bottom:598.500000px;}
.ye7{bottom:600.300000px;}
.y6e{bottom:603.600150px;}
.y53{bottom:605.699850px;}
.y111{bottom:606.000000px;}
.y95{bottom:606.149850px;}
.yba{bottom:607.425000px;}
.y32{bottom:613.500000px;}
.yc{bottom:621.000000px;}
.ye6{bottom:622.800000px;}
.y6d{bottom:625.800150px;}
.y52{bottom:627.749850px;}
.y94{bottom:628.199850px;}
.yb9{bottom:629.400000px;}
.y31{bottom:636.000000px;}
.y127{bottom:639.750000px;}
.yb{bottom:643.500000px;}
.ye5{bottom:645.300000px;}
.y6c{bottom:648.000150px;}
.y51{bottom:649.800000px;}
.y93{bottom:650.249850px;}
.y110{bottom:651.000000px;}
.yb8{bottom:651.375000px;}
.y30{bottom:658.500000px;}
.ya{bottom:666.000000px;}
.ye4{bottom:667.800000px;}
.y6b{bottom:670.200000px;}
.yd5{bottom:671.400000px;}
.y50{bottom:671.849850px;}
.y92{bottom:672.300000px;}
.y126{bottom:677.250000px;}
.y10f{bottom:681.000000px;}
.y9{bottom:688.500000px;}
.ye3{bottom:690.300000px;}
.y6a{bottom:692.400150px;}
.y4f{bottom:693.899850px;}
.y91{bottom:694.349850px;}
.yb7{bottom:695.325000px;}
.y10e{bottom:696.000000px;}
.y7{bottom:711.000000px;}
.ye2{bottom:712.800000px;}
.y69{bottom:714.600150px;}
.y125{bottom:714.750000px;}
.y4e{bottom:715.949850px;}
.y90{bottom:716.399850px;}
.yd4{bottom:716.400000px;}
.yb6{bottom:717.300000px;}
.y10d{bottom:726.000000px;}
.y8{bottom:733.500000px;}
.ye1{bottom:735.300000px;}
.y68{bottom:736.800150px;}
.y4d{bottom:737.999850px;}
.y8f{bottom:738.449850px;}
.yd3{bottom:738.450000px;}
.yb5{bottom:739.275000px;}
.y10c{bottom:741.000000px;}
.y29{bottom:756.000000px;}
.ye0{bottom:757.800000px;}
.y67{bottom:759.000150px;}
.y4c{bottom:760.050000px;}
.y8e{bottom:760.499850px;}
.yd2{bottom:760.500000px;}
.yb4{bottom:761.250000px;}
.y10b{bottom:771.000000px;}
.y124{bottom:774.750000px;}
.y28{bottom:778.500000px;}
.ydf{bottom:780.300000px;}
.y66{bottom:781.200000px;}
.y4b{bottom:782.100000px;}
.y8d{bottom:782.550000px;}
.yb3{bottom:783.225000px;}
.y10a{bottom:786.000000px;}
.y123{bottom:793.500000px;}
.y6{bottom:801.000000px;}
.yde{bottom:802.800000px;}
.y65{bottom:803.400000px;}
.y4a{bottom:804.150000px;}
.y8c{bottom:804.600000px;}
.yb2{bottom:805.200000px;}
.y122{bottom:812.250000px;}
.y109{bottom:816.000000px;}
.y5{bottom:823.500000px;}
.ydd{bottom:825.300000px;}
.y64{bottom:825.600000px;}
.y49{bottom:826.199850px;}
.y8b{bottom:826.650000px;}
.yb1{bottom:827.175000px;}
.y108{bottom:831.000000px;}
.y27{bottom:846.000000px;}
.y63{bottom:847.800150px;}
.y48{bottom:848.249850px;}
.y8a{bottom:848.699850px;}
.yd1{bottom:848.700000px;}
.yb0{bottom:849.150000px;}
.y121{bottom:849.750000px;}
.y107{bottom:861.000000px;}
.y26{bottom:868.500000px;}
.y62{bottom:870.000150px;}
.y47{bottom:870.300000px;}
.y89{bottom:870.749850px;}
.yd0{bottom:870.750000px;}
.yaf{bottom:871.125000px;}
.y106{bottom:876.000000px;}
.y120{bottom:887.250000px;}
.y4{bottom:891.000000px;}
.y61{bottom:892.200000px;}
.y46{bottom:892.350000px;}
.y88{bottom:892.800000px;}
.yae{bottom:893.100000px;}
.y105{bottom:906.000000px;}
.y25{bottom:913.500000px;}
.y60{bottom:914.400000px;}
.y87{bottom:914.850000px;}
.yad{bottom:915.075000px;}
.y3{bottom:921.000000px;}
.y11f{bottom:924.750000px;}
.y24{bottom:936.000000px;}
.y5f{bottom:936.600000px;}
.y45{bottom:936.900000px;}
.yac{bottom:937.050000px;}
.y11e{bottom:943.500000px;}
.y2{bottom:951.000000px;}
.y23{bottom:958.500000px;}
.y5e{bottom:958.800000px;}
.y44{bottom:958.950000px;}
.yab{bottom:959.025000px;}
.y11d{bottom:962.250000px;}
.y104{bottom:966.000000px;}
.h7{height:30.472500px;}
.hb{height:31.492500px;}
.hf{height:39.072000px;}
.h1{height:39.990234px;}
.h8{height:46.312500px;}
.hc{height:48.840000px;}
.h3{height:50.580000px;}
.h9{height:57.890625px;}
.h4{height:61.136719px;}
.h6{height:69.468750px;}
.he{height:70.998150px;}
.ha{height:70.998750px;}
.hd{height:70.999350px;}
.h2{height:115.781250px;}
.h5{height:342.453024px;}
.h0{height:1080.000000px;}
.w0{width:783.000000px;}
.x0{left:0.000000px;}
.x1{left:99.000000px;}
.x3{left:114.000000px;}
.x2{left:144.454650px;}
.x6{left:159.000000px;}
.x4{left:166.500000px;}
.x7{left:211.500000px;}
.x5{left:453.653250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:14.080000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:160.000000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000533pt;}
.ls43{letter-spacing:0.008000pt;}
.ls1b{letter-spacing:0.010667pt;}
.ls21{letter-spacing:0.016000pt;}
.ls30{letter-spacing:0.020267pt;}
.ls25{letter-spacing:0.063467pt;}
.ls11{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.076800pt;}
.ls29{letter-spacing:0.077867pt;}
.ls2a{letter-spacing:0.078400pt;}
.ls4{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.195200pt;}
.ls36{letter-spacing:0.195733pt;}
.ls34{letter-spacing:0.203733pt;}
.lsc{letter-spacing:0.217600pt;}
.ls2c{letter-spacing:0.221867pt;}
.ls3{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.299200pt;}
.ls5{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.322133pt;}
.ls10{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.395200pt;}
.ls28{letter-spacing:0.395733pt;}
.ls14{letter-spacing:0.448000pt;}
.ls13{letter-spacing:0.512000pt;}
.ls33{letter-spacing:0.514133pt;}
.ls8{letter-spacing:0.516800pt;}
.ls16{letter-spacing:0.576000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.720533pt;}
.ls7{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.832000pt;}
.ls19{letter-spacing:0.896000pt;}
.ls31{letter-spacing:0.939200pt;}
.ls17{letter-spacing:0.942400pt;}
.ls39{letter-spacing:0.960000pt;}
.ls1f{letter-spacing:1.024000pt;}
.ls3b{letter-spacing:1.024533pt;}
.ls44{letter-spacing:1.066667pt;}
.ls2d{letter-spacing:1.180800pt;}
.ls26{letter-spacing:1.185067pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls38{letter-spacing:1.344000pt;}
.ls3c{letter-spacing:1.472000pt;}
.ls3e{letter-spacing:1.525333pt;}
.ls3d{letter-spacing:1.536000pt;}
.lse{letter-spacing:2.085867pt;}
.ls15{letter-spacing:2.659200pt;}
.ls1c{letter-spacing:3.826667pt;}
.ls3f{letter-spacing:4.224000pt;}
.ls1e{letter-spacing:4.765867pt;}
.ls32{letter-spacing:5.056000pt;}
.ls24{letter-spacing:5.263467pt;}
.ls2b{letter-spacing:5.312000pt;}
.ls2f{letter-spacing:5.882133pt;}
.ls9{letter-spacing:5.886400pt;}
.ls23{letter-spacing:5.980267pt;}
.ls35{letter-spacing:6.254933pt;}
.ls18{letter-spacing:6.404800pt;}
.ls0{letter-spacing:7.520000pt;}
.ls2{letter-spacing:9.415189pt;}
.ls1{letter-spacing:9.546667pt;}
.ls40{letter-spacing:13.510933pt;}
.ls1a{letter-spacing:16.167253pt;}
.ls41{letter-spacing:100.302400pt;}
.ls42{letter-spacing:102.386133pt;}
.ws17{word-spacing:-44.608000pt;}
.ws16{word-spacing:-44.416000pt;}
.ws15{word-spacing:-44.160000pt;}
.ws14{word-spacing:-44.096000pt;}
.ws11{word-spacing:-44.032000pt;}
.ws7{word-spacing:-43.904000pt;}
.ws12{word-spacing:-43.712000pt;}
.wsf{word-spacing:-43.648000pt;}
.wsb{word-spacing:-43.584000pt;}
.wsc{word-spacing:-43.520000pt;}
.ws4{word-spacing:-43.456000pt;}
.ws1{word-spacing:-43.392000pt;}
.wsd{word-spacing:-43.328000pt;}
.ws8{word-spacing:-43.264000pt;}
.wse{word-spacing:-43.200000pt;}
.ws2{word-spacing:-43.136000pt;}
.ws1b{word-spacing:-37.013333pt;}
.ws1d{word-spacing:-35.946667pt;}
.wsa{word-spacing:-28.757333pt;}
.ws5{word-spacing:-18.752000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws1c{word-spacing:-16.053333pt;}
.ws13{word-spacing:-14.986667pt;}
.ws3{word-spacing:-12.229120pt;}
.ws19{word-spacing:-11.989333pt;}
.ws18{word-spacing:-10.965333pt;}
.ws10{word-spacing:-8.152747pt;}
.ws0{word-spacing:-7.573333pt;}
.ws6{word-spacing:0.000000pt;}
.ws1a{word-spacing:8.704000pt;}
._16{margin-left:-1898.154133pt;}
._17{margin-left:-1607.291200pt;}
._28{margin-left:-813.575467pt;}
._13{margin-left:-19.043733pt;}
._1a{margin-left:-17.550400pt;}
._1f{margin-left:-15.872000pt;}
._3{margin-left:-13.709333pt;}
._4{margin-left:-12.630933pt;}
._15{margin-left:-11.096533pt;}
._2{margin-left:-10.133333pt;}
._1e{margin-left:-8.746667pt;}
._0{margin-left:-7.520000pt;}
._b{margin-left:-6.420800pt;}
._d{margin-left:-5.482667pt;}
._e{margin-left:-4.574400pt;}
._c{margin-left:-3.680533pt;}
._1{margin-left:-2.666667pt;}
._5{margin-left:-1.386667pt;}
._8{width:0.953067pt;}
._7{width:1.920000pt;}
._9{width:3.092800pt;}
._a{width:4.038933pt;}
._f{width:5.248000pt;}
._6{width:6.144000pt;}
._14{width:7.360000pt;}
._12{width:8.448000pt;}
._18{width:9.536000pt;}
._1c{width:10.699200pt;}
._1b{width:11.796800pt;}
._1d{width:12.985067pt;}
._26{width:14.353920pt;}
._19{width:16.167253pt;}
._10{width:30.673920pt;}
._22{width:36.010667pt;}
._25{width:49.920000pt;}
._24{width:61.184000pt;}
._20{width:66.474667pt;}
._27{width:92.885333pt;}
._21{width:105.344000pt;}
._23{width:106.794667pt;}
._11{width:144.960000pt;}
.fs5{font-size:29.013333pt;}
.fs7{font-size:29.866667pt;}
.fs6{font-size:42.666667pt;}
.fs4{font-size:43.520000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:376.736000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:91.334000pt;}
.y1{bottom:92.000000pt;}
.yaa{bottom:131.999867pt;}
.y21{bottom:132.000000pt;}
.y5a{bottom:132.133200pt;}
.y2b{bottom:135.520000pt;}
.y83{bottom:135.520133pt;}
.y103{bottom:138.666667pt;}
.y11c{bottom:142.000000pt;}
.ya9{bottom:145.333200pt;}
.y2f{bottom:145.333333pt;}
.yfa{bottom:148.853200pt;}
.y20{bottom:148.853333pt;}
.y5b{bottom:152.000000pt;}
.y82{bottom:152.000133pt;}
.y59{bottom:152.133200pt;}
.y2a{bottom:155.520000pt;}
.y2e{bottom:158.666667pt;}
.ya8{bottom:162.186533pt;}
.y84{bottom:162.186667pt;}
.yce{bottom:164.933333pt;}
.yf9{bottom:165.333200pt;}
.y86{bottom:165.333333pt;}
.y81{bottom:165.333467pt;}
.y1f{bottom:168.853333pt;}
.y2d{bottom:172.000000pt;}
.y58{bottom:172.133200pt;}
.y11b{bottom:175.333333pt;}
.yfb{bottom:175.520000pt;}
.ycd{bottom:177.866667pt;}
.y102{bottom:178.666667pt;}
.y80{bottom:178.666800pt;}
.yf8{bottom:182.186533pt;}
.y85{bottom:182.186667pt;}
.y43{bottom:185.333333pt;}
.ya7{bottom:185.999867pt;}
.y2c{bottom:188.853333pt;}
.y1e{bottom:192.000000pt;}
.y7f{bottom:192.000133pt;}
.y57{bottom:192.133200pt;}
.ycc{bottom:194.320000pt;}
.yf7{bottom:198.666533pt;}
.y5d{bottom:198.666667pt;}
.y42{bottom:205.333333pt;}
.ya6{bottom:205.599867pt;}
.y11a{bottom:208.666667pt;}
.y1d{bottom:212.000000pt;}
.y56{bottom:212.133200pt;}
.ydc{bottom:213.333333pt;}
.ycb{bottom:213.920000pt;}
.yf6{bottom:215.519867pt;}
.y7e{bottom:220.800133pt;}
.ya5{bottom:225.199867pt;}
.y41{bottom:225.333333pt;}
.y5c{bottom:228.853333pt;}
.yca{bottom:230.400000pt;}
.y1c{bottom:232.000000pt;}
.y55{bottom:232.133200pt;}
.ydb{bottom:232.933333pt;}
.y101{bottom:238.666667pt;}
.y7d{bottom:240.533467pt;}
.y119{bottom:242.000000pt;}
.yc9{bottom:243.333333pt;}
.ya4{bottom:244.799867pt;}
.y40{bottom:245.333333pt;}
.y1b{bottom:252.000000pt;}
.yda{bottom:252.533333pt;}
.yf5{bottom:253.599867pt;}
.y118{bottom:258.666667pt;}
.yc8{bottom:259.786667pt;}
.y7c{bottom:260.266800pt;}
.ya3{bottom:264.399867pt;}
.y100{bottom:265.333333pt;}
.y1a{bottom:272.000000pt;}
.yd9{bottom:272.133333pt;}
.yf4{bottom:273.599867pt;}
.y117{bottom:275.333333pt;}
.yff{bottom:278.666667pt;}
.y7b{bottom:280.000133pt;}
.ya2{bottom:283.999867pt;}
.y3f{bottom:285.333333pt;}
.yc7{bottom:286.000000pt;}
.yd8{bottom:291.733333pt;}
.y19{bottom:292.000000pt;}
.yf3{bottom:293.599867pt;}
.y7a{bottom:299.733467pt;}
.ya1{bottom:303.599867pt;}
.y3e{bottom:305.333333pt;}
.yc6{bottom:305.533333pt;}
.y116{bottom:308.666667pt;}
.yd7{bottom:311.333333pt;}
.y18{bottom:312.000000pt;}
.yf2{bottom:313.599867pt;}
.yfe{bottom:318.666667pt;}
.y79{bottom:319.466800pt;}
.ya0{bottom:323.199867pt;}
.yc5{bottom:325.066667pt;}
.y3d{bottom:325.333333pt;}
.yd6{bottom:330.933333pt;}
.y17{bottom:332.000000pt;}
.yf1{bottom:333.599867pt;}
.y78{bottom:339.200133pt;}
.y115{bottom:342.000000pt;}
.y9f{bottom:342.799867pt;}
.yc4{bottom:344.600000pt;}
.y3c{bottom:345.333333pt;}
.y16{bottom:352.000000pt;}
.yf0{bottom:353.600000pt;}
.yfd{bottom:358.666667pt;}
.ycf{bottom:358.933333pt;}
.y77{bottom:358.933467pt;}
.y9e{bottom:362.399867pt;}
.yc3{bottom:364.133333pt;}
.y3b{bottom:365.333333pt;}
.y15{bottom:372.000000pt;}
.yef{bottom:373.600000pt;}
.y114{bottom:375.333333pt;}
.y76{bottom:378.666800pt;}
.y9d{bottom:381.999867pt;}
.yc2{bottom:383.666667pt;}
.y3a{bottom:385.333333pt;}
.y14{bottom:392.000000pt;}
.yee{bottom:393.600000pt;}
.y75{bottom:398.400000pt;}
.yfc{bottom:398.666667pt;}
.y9c{bottom:401.600000pt;}
.yc1{bottom:403.200000pt;}
.y39{bottom:405.333333pt;}
.y113{bottom:408.666667pt;}
.y13{bottom:412.000000pt;}
.yed{bottom:413.600000pt;}
.y74{bottom:418.133467pt;}
.y9b{bottom:421.199867pt;}
.yc0{bottom:422.733333pt;}
.y38{bottom:425.333333pt;}
.y12{bottom:432.000000pt;}
.yec{bottom:433.600000pt;}
.y73{bottom:437.866800pt;}
.y9a{bottom:440.799867pt;}
.ybf{bottom:442.266667pt;}
.y37{bottom:445.333333pt;}
.y11{bottom:452.000000pt;}
.yeb{bottom:453.600000pt;}
.y72{bottom:457.600133pt;}
.y99{bottom:460.399867pt;}
.ybe{bottom:461.800000pt;}
.y36{bottom:465.333333pt;}
.y10{bottom:472.000000pt;}
.yea{bottom:473.600000pt;}
.y71{bottom:477.333467pt;}
.y98{bottom:479.999867pt;}
.ybd{bottom:481.333333pt;}
.y35{bottom:485.333333pt;}
.yf{bottom:492.000000pt;}
.ye9{bottom:493.600000pt;}
.y70{bottom:497.066667pt;}
.y112{bottom:498.666667pt;}
.y54{bottom:498.799867pt;}
.y97{bottom:499.600000pt;}
.ybc{bottom:500.866667pt;}
.y34{bottom:505.333333pt;}
.ye{bottom:512.000000pt;}
.ye8{bottom:513.600000pt;}
.y6f{bottom:516.800133pt;}
.y96{bottom:519.199867pt;}
.ybb{bottom:520.400000pt;}
.y33{bottom:525.333333pt;}
.yd{bottom:532.000000pt;}
.ye7{bottom:533.600000pt;}
.y6e{bottom:536.533467pt;}
.y53{bottom:538.399867pt;}
.y111{bottom:538.666667pt;}
.y95{bottom:538.799867pt;}
.yba{bottom:539.933333pt;}
.y32{bottom:545.333333pt;}
.yc{bottom:552.000000pt;}
.ye6{bottom:553.600000pt;}
.y6d{bottom:556.266800pt;}
.y52{bottom:557.999867pt;}
.y94{bottom:558.399867pt;}
.yb9{bottom:559.466667pt;}
.y31{bottom:565.333333pt;}
.y127{bottom:568.666667pt;}
.yb{bottom:572.000000pt;}
.ye5{bottom:573.600000pt;}
.y6c{bottom:576.000133pt;}
.y51{bottom:577.600000pt;}
.y93{bottom:577.999867pt;}
.y110{bottom:578.666667pt;}
.yb8{bottom:579.000000pt;}
.y30{bottom:585.333333pt;}
.ya{bottom:592.000000pt;}
.ye4{bottom:593.600000pt;}
.y6b{bottom:595.733333pt;}
.yd5{bottom:596.800000pt;}
.y50{bottom:597.199867pt;}
.y92{bottom:597.600000pt;}
.y126{bottom:602.000000pt;}
.y10f{bottom:605.333333pt;}
.y9{bottom:612.000000pt;}
.ye3{bottom:613.600000pt;}
.y6a{bottom:615.466800pt;}
.y4f{bottom:616.799867pt;}
.y91{bottom:617.199867pt;}
.yb7{bottom:618.066667pt;}
.y10e{bottom:618.666667pt;}
.y7{bottom:632.000000pt;}
.ye2{bottom:633.600000pt;}
.y69{bottom:635.200133pt;}
.y125{bottom:635.333333pt;}
.y4e{bottom:636.399867pt;}
.y90{bottom:636.799867pt;}
.yd4{bottom:636.800000pt;}
.yb6{bottom:637.600000pt;}
.y10d{bottom:645.333333pt;}
.y8{bottom:652.000000pt;}
.ye1{bottom:653.600000pt;}
.y68{bottom:654.933467pt;}
.y4d{bottom:655.999867pt;}
.y8f{bottom:656.399867pt;}
.yd3{bottom:656.400000pt;}
.yb5{bottom:657.133333pt;}
.y10c{bottom:658.666667pt;}
.y29{bottom:672.000000pt;}
.ye0{bottom:673.600000pt;}
.y67{bottom:674.666800pt;}
.y4c{bottom:675.600000pt;}
.y8e{bottom:675.999867pt;}
.yd2{bottom:676.000000pt;}
.yb4{bottom:676.666667pt;}
.y10b{bottom:685.333333pt;}
.y124{bottom:688.666667pt;}
.y28{bottom:692.000000pt;}
.ydf{bottom:693.600000pt;}
.y66{bottom:694.400000pt;}
.y4b{bottom:695.200000pt;}
.y8d{bottom:695.600000pt;}
.yb3{bottom:696.200000pt;}
.y10a{bottom:698.666667pt;}
.y123{bottom:705.333333pt;}
.y6{bottom:712.000000pt;}
.yde{bottom:713.600000pt;}
.y65{bottom:714.133333pt;}
.y4a{bottom:714.800000pt;}
.y8c{bottom:715.200000pt;}
.yb2{bottom:715.733333pt;}
.y122{bottom:722.000000pt;}
.y109{bottom:725.333333pt;}
.y5{bottom:732.000000pt;}
.ydd{bottom:733.600000pt;}
.y64{bottom:733.866667pt;}
.y49{bottom:734.399867pt;}
.y8b{bottom:734.800000pt;}
.yb1{bottom:735.266667pt;}
.y108{bottom:738.666667pt;}
.y27{bottom:752.000000pt;}
.y63{bottom:753.600133pt;}
.y48{bottom:753.999867pt;}
.y8a{bottom:754.399867pt;}
.yd1{bottom:754.400000pt;}
.yb0{bottom:754.800000pt;}
.y121{bottom:755.333333pt;}
.y107{bottom:765.333333pt;}
.y26{bottom:772.000000pt;}
.y62{bottom:773.333467pt;}
.y47{bottom:773.600000pt;}
.y89{bottom:773.999867pt;}
.yd0{bottom:774.000000pt;}
.yaf{bottom:774.333333pt;}
.y106{bottom:778.666667pt;}
.y120{bottom:788.666667pt;}
.y4{bottom:792.000000pt;}
.y61{bottom:793.066667pt;}
.y46{bottom:793.200000pt;}
.y88{bottom:793.600000pt;}
.yae{bottom:793.866667pt;}
.y105{bottom:805.333333pt;}
.y25{bottom:812.000000pt;}
.y60{bottom:812.800000pt;}
.y87{bottom:813.200000pt;}
.yad{bottom:813.400000pt;}
.y3{bottom:818.666667pt;}
.y11f{bottom:822.000000pt;}
.y24{bottom:832.000000pt;}
.y5f{bottom:832.533333pt;}
.y45{bottom:832.800000pt;}
.yac{bottom:832.933333pt;}
.y11e{bottom:838.666667pt;}
.y2{bottom:845.333333pt;}
.y23{bottom:852.000000pt;}
.y5e{bottom:852.266667pt;}
.y44{bottom:852.400000pt;}
.yab{bottom:852.466667pt;}
.y11d{bottom:855.333333pt;}
.y104{bottom:858.666667pt;}
.h7{height:27.086667pt;}
.hb{height:27.993333pt;}
.hf{height:34.730667pt;}
.h1{height:35.546875pt;}
.h8{height:41.166667pt;}
.hc{height:43.413333pt;}
.h3{height:44.960000pt;}
.h9{height:51.458333pt;}
.h4{height:54.343750pt;}
.h6{height:61.750000pt;}
.he{height:63.109467pt;}
.ha{height:63.110000pt;}
.hd{height:63.110533pt;}
.h2{height:102.916667pt;}
.h5{height:304.402688pt;}
.h0{height:960.000000pt;}
.w0{width:696.000000pt;}
.x0{left:0.000000pt;}
.x1{left:88.000000pt;}
.x3{left:101.333333pt;}
.x2{left:128.404133pt;}
.x6{left:141.333333pt;}
.x4{left:148.000000pt;}
.x7{left:188.000000pt;}
.x5{left:403.247333pt;}
}




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