
    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_ceda999dc684956b03aa80f5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.729004;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_cb831bfc45030f6d94299355.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_bca2891ff49153b9a82bb444.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_92613d095aabe9f462617ac5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.943359;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_740f33845257763d13bd2ff4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.943359;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_338bc7ed668d0073f2a433f1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.850586;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_558373c4ed46bd5a6bb1146a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_a3fda0bfb49fb3d11dd61a56.woff')format("woff");}.ff8{font-family:ff8;line-height:1.080566;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_977563530f09ed6e5611bf60.woff')format("woff");}.ff9{font-family:ff9;line-height:1.097168;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_68f9ffa742ea425e7703b949.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_284fdc4ac37a37d826014446.woff')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_922db0bd84976f535e417623.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_db3721f43926ddc805ca81e0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.080078;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_fbddff783bee59413d3300d4.woff')format("woff");}.ffe{font-family:ffe;line-height:1.080078;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);}
.v0{vertical-align:0.000000px;}
.ls25{letter-spacing:-2.016000px;}
.ls6{letter-spacing:-1.440000px;}
.ls12{letter-spacing:-0.816000px;}
.ls5{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.600000px;}
.ls23{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.516000px;}
.ls4{letter-spacing:-0.240000px;}
.ls52{letter-spacing:-0.096000px;}
.ls31{letter-spacing:-0.048000px;}
.ls32{letter-spacing:-0.024000px;}
.ls3{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.024000px;}
.ls20{letter-spacing:0.060000px;}
.ls21{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.252000px;}
.ls1f{letter-spacing:0.408000px;}
.ls22{letter-spacing:0.438000px;}
.ls0{letter-spacing:0.480000px;}
.ls4b{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.600000px;}
.ls1d{letter-spacing:0.660000px;}
.ls3e{letter-spacing:0.780000px;}
.lsa{letter-spacing:0.828000px;}
.ls3d{letter-spacing:0.948000px;}
.ls1e{letter-spacing:1.140000px;}
.ls48{letter-spacing:1.380000px;}
.ls4a{letter-spacing:2.400000px;}
.ls2a{letter-spacing:3.000000px;}
.ls45{letter-spacing:4.140000px;}
.ls3b{letter-spacing:4.200000px;}
.ls4e{letter-spacing:4.800000px;}
.lsb{letter-spacing:5.400000px;}
.ls15{letter-spacing:7.800000px;}
.ls2c{letter-spacing:9.000000px;}
.ls2f{letter-spacing:9.660000px;}
.ls9{letter-spacing:10.200000px;}
.ls3c{letter-spacing:10.320000px;}
.ls30{letter-spacing:10.800000px;}
.ls40{letter-spacing:11.340000px;}
.ls14{letter-spacing:11.400000px;}
.ls29{letter-spacing:15.600000px;}
.ls54{letter-spacing:16.320000px;}
.ls4d{letter-spacing:16.380000px;}
.ls41{letter-spacing:16.800000px;}
.ls42{letter-spacing:16.980000px;}
.ls53{letter-spacing:17.580000px;}
.ls7{letter-spacing:18.540000px;}
.ls47{letter-spacing:18.600000px;}
.lsc{letter-spacing:19.740000px;}
.ls2b{letter-spacing:21.000000px;}
.ls16{letter-spacing:21.180000px;}
.ls44{letter-spacing:25.800000px;}
.lsd{letter-spacing:26.400000px;}
.ls27{letter-spacing:28.140000px;}
.ls38{letter-spacing:28.200000px;}
.ls28{letter-spacing:28.380000px;}
.ls36{letter-spacing:29.400000px;}
.ls2{letter-spacing:29.580000px;}
.ls46{letter-spacing:31.800000px;}
.lsf{letter-spacing:33.660000px;}
.ls35{letter-spacing:34.200000px;}
.ls34{letter-spacing:34.320000px;}
.lse{letter-spacing:37.200000px;}
.ls43{letter-spacing:37.740000px;}
.ls4f{letter-spacing:40.200000px;}
.ls50{letter-spacing:40.320000px;}
.ls51{letter-spacing:40.380000px;}
.ls17{letter-spacing:41.400000px;}
.ls1b{letter-spacing:46.200000px;}
.ls1c{letter-spacing:46.320000px;}
.ls10{letter-spacing:48.060000px;}
.ls33{letter-spacing:48.540000px;}
.ls26{letter-spacing:59.400000px;}
.ls19{letter-spacing:60.720000px;}
.ls39{letter-spacing:61.200000px;}
.ls3a{letter-spacing:61.800000px;}
.ls18{letter-spacing:64.260000px;}
.ls4c{letter-spacing:72.600000px;}
.ls3f{letter-spacing:79.800000px;}
.ls2d{letter-spacing:81.000000px;}
.ls2e{letter-spacing:82.200000px;}
.ls37{letter-spacing:100.320000px;}
.ls1a{letter-spacing:103.800000px;}
.ls13{letter-spacing:191.550000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(79,129,189),0 0.015em rgb(79,129,189),0.015em 0 rgb(79,129,189),0 -0.015em  rgb(79,129,189);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(79,129,189);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-24.480000px;}
.ws1{word-spacing:-24.240000px;}
.ws2{word-spacing:-23.760000px;}
.ws4{word-spacing:-23.040000px;}
.ws6{word-spacing:-22.800000px;}
.wsd{word-spacing:-21.552000px;}
.ws8{word-spacing:-21.252000px;}
.ws7{word-spacing:-21.000000px;}
.wse{word-spacing:-20.904000px;}
.wsb{word-spacing:-20.460000px;}
.wsc{word-spacing:-18.480000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.184000px;}
.ws9{word-spacing:0.000000px;}
._44{margin-left:-4.974000px;}
._35{margin-left:-3.720000px;}
._3{margin-left:-2.376000px;}
._0{margin-left:-1.152000px;}
._2{width:1.296000px;}
._1{width:2.688000px;}
._10{width:3.756000px;}
._29{width:5.310000px;}
._28{width:6.420000px;}
._9{width:7.536000px;}
._a{width:8.712000px;}
._23{width:9.816000px;}
._24{width:11.118000px;}
._5{width:13.080000px;}
._8{width:14.424000px;}
._15{width:15.540000px;}
._d{width:17.508000px;}
._c{width:18.612000px;}
._1b{width:19.992000px;}
._1f{width:22.932000px;}
._20{width:23.988000px;}
._1a{width:25.008000px;}
._2d{width:26.568000px;}
._e{width:27.624000px;}
._f{width:28.908000px;}
._6{width:30.468000px;}
._7{width:31.500000px;}
._22{width:32.712000px;}
._21{width:33.876000px;}
._45{width:34.896000px;}
._12{width:36.012000px;}
._11{width:37.440000px;}
._2c{width:38.664000px;}
._2b{width:39.732000px;}
._2f{width:41.238000px;}
._4a{width:42.246000px;}
._25{width:43.332000px;}
._26{width:44.760000px;}
._1c{width:45.936000px;}
._14{width:47.892000px;}
._13{width:49.284000px;}
._30{width:50.880000px;}
._3b{width:52.152000px;}
._2e{width:54.180000px;}
._b{width:55.776000px;}
._40{width:57.288000px;}
._34{width:59.544000px;}
._31{width:61.320000px;}
._38{width:62.430000px;}
._32{width:63.738000px;}
._33{width:64.764000px;}
._4b{width:65.790000px;}
._19{width:69.504000px;}
._18{width:70.608000px;}
._49{width:71.826000px;}
._46{width:73.020000px;}
._47{width:74.196000px;}
._37{width:77.172000px;}
._1e{width:78.876000px;}
._1d{width:80.376000px;}
._3e{width:82.212000px;}
._4c{width:84.240000px;}
._16{width:85.680000px;}
._17{width:87.084000px;}
._2a{width:88.644000px;}
._39{width:90.762000px;}
._3a{width:91.788000px;}
._3f{width:92.928000px;}
._42{width:99.354000px;}
._41{width:101.196000px;}
._36{width:103.632000px;}
._3d{width:112.284000px;}
._3c{width:114.552000px;}
._4e{width:117.576000px;}
._4f{width:119.490000px;}
._43{width:154.008000px;}
._27{width:179.928000px;}
._48{width:210.000000px;}
._4d{width:1422.174000px;}
._4{width:1466.574000px;}
.fc2{color:rgb(79,129,189);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs7{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:57.037500px;}
.y4{bottom:92.137500px;}
.y6a{bottom:121.537500px;}
.y3f{bottom:126.037500px;}
.y22{bottom:133.837500px;}
.y58{bottom:134.737500px;}
.ya0{bottom:141.637500px;}
.y69{bottom:142.237500px;}
.y68{bottom:149.137500px;}
.y57{bottom:156.930000px;}
.y3e{bottom:162.345000px;}
.y78{bottom:163.830000px;}
.y9f{bottom:168.975000px;}
.y21{bottom:170.175000px;}
.y85{bottom:175.275000px;}
.yb8{bottom:175.875000px;}
.y67{bottom:176.175000px;}
.y56{bottom:178.875000px;}
.y6d{bottom:185.775000px;}
.y77{bottom:190.875000px;}
.y9e{bottom:196.875000px;}
.y76{bottom:197.775000px;}
.y66{bottom:198.375000px;}
.y3d{bottom:198.675000px;}
.y83{bottom:199.575000px;}
.y55{bottom:201.075000px;}
.yb7{bottom:202.875000px;}
.yc7{bottom:204.675000px;}
.y65{bottom:205.275000px;}
.y20{bottom:206.175000px;}
.y54{bottom:207.975000px;}
.y84{bottom:211.575000px;}
.y6c{bottom:214.875000px;}
.y82{bottom:220.275000px;}
.yb6{bottom:225.075000px;}
.y75{bottom:225.975000px;}
.y9d{bottom:226.875000px;}
.y81{bottom:227.175000px;}
.yb5{bottom:231.975000px;}
.y64{bottom:232.275000px;}
.y74{bottom:233.475000px;}
.y3c{bottom:234.675000px;}
.y53{bottom:235.275000px;}
.y63{bottom:239.175000px;}
.y1f{bottom:242.475000px;}
.yc0{bottom:247.275000px;}
.y5b{bottom:247.575000px;}
.ybf{bottom:254.175000px;}
.y80{bottom:254.475000px;}
.y52{bottom:257.175000px;}
.yb4{bottom:260.775000px;}
.y7f{bottom:261.375000px;}
.y73{bottom:262.875000px;}
.y62{bottom:266.475000px;}
.y3b{bottom:270.975000px;}
.y9c{bottom:277.275000px;}
.y1e{bottom:278.775000px;}
.y51{bottom:279.375000px;}
.ybe{bottom:281.175000px;}
.y5a{bottom:283.875000px;}
.y72{bottom:284.775000px;}
.y50{bottom:286.275000px;}
.y61{bottom:288.675000px;}
.y7e{bottom:289.575000px;}
.y71{bottom:291.675000px;}
.y60{bottom:295.575000px;}
.ybd{bottom:303.375000px;}
.y3a{bottom:307.275000px;}
.ybc{bottom:310.275000px;}
.y9b{bottom:313.575000px;}
.y1d{bottom:315.075000px;}
.y7d{bottom:315.375000px;}
.y59{bottom:320.175000px;}
.y70{bottom:320.775000px;}
.y7c{bottom:322.875000px;}
.y5f{bottom:324.375000px;}
.yc6{bottom:337.275000px;}
.y39{bottom:338.220000px;}
.ybb{bottom:339.120000px;}
.y1c{bottom:346.320000px;}
.y9a{bottom:349.905000px;}
.yb3{bottom:352.005000px;}
.y7b{bottom:353.820000px;}
.y4f{bottom:356.505000px;}
.yc5{bottom:359.505000px;}
.yc4{bottom:366.405000px;}
.y38{bottom:369.420000px;}
.y1b{bottom:376.620000px;}
.y99{bottom:385.920000px;}
.yb2{bottom:388.005000px;}
.y4e{bottom:392.505000px;}
.yc3{bottom:395.220000px;}
.y37{bottom:405.705000px;}
.y1a{bottom:412.620000px;}
.y98{bottom:422.205000px;}
.yb1{bottom:424.320000px;}
.y4d{bottom:428.820000px;}
.yba{bottom:436.320000px;}
.y36{bottom:441.705000px;}
.y19{bottom:449.505000px;}
.y97{bottom:458.505000px;}
.yb0{bottom:460.620000px;}
.y4c{bottom:465.120000px;}
.y5e{bottom:472.605000px;}
.y35{bottom:478.005000px;}
.y18{bottom:485.820000px;}
.y95{bottom:494.820000px;}
.yae{bottom:496.905000px;}
.y4b{bottom:501.405000px;}
.y96{bottom:502.305000px;}
.yaf{bottom:504.405000px;}
.yc2{bottom:508.950000px;}
.y34{bottom:514.350000px;}
.y17{bottom:522.150000px;}
.y94{bottom:530.850000px;}
.yad{bottom:532.950000px;}
.y49{bottom:537.450000px;}
.y4a{bottom:544.950000px;}
.y33{bottom:550.650000px;}
.y16{bottom:558.150000px;}
.y93{bottom:567.150000px;}
.yac{bottom:569.250000px;}
.y48{bottom:573.750000px;}
.y32{bottom:586.650000px;}
.y15{bottom:594.450000px;}
.y92{bottom:603.450000px;}
.yab{bottom:605.550000px;}
.y47{bottom:610.050000px;}
.y31{bottom:622.950000px;}
.y14{bottom:630.750000px;}
.y91{bottom:639.750000px;}
.yaa{bottom:641.850000px;}
.y46{bottom:646.350000px;}
.y7a{bottom:653.850000px;}
.y30{bottom:659.250000px;}
.y13{bottom:667.050000px;}
.y90{bottom:675.750000px;}
.ya9{bottom:677.880000px;}
.y44{bottom:682.380000px;}
.y45{bottom:689.880000px;}
.y2f{bottom:695.280000px;}
.y12{bottom:703.080000px;}
.ya7{bottom:714.195000px;}
.y8f{bottom:715.980000px;}
.y43{bottom:718.695000px;}
.ya8{bottom:721.680000px;}
.y6f{bottom:726.195000px;}
.y2e{bottom:731.580000px;}
.y11{bottom:739.380000px;}
.ya6{bottom:750.495000px;}
.y8e{bottom:752.280000px;}
.y42{bottom:754.980000px;}
.y2d{bottom:761.880000px;}
.yb9{bottom:762.495000px;}
.y10{bottom:775.695000px;}
.ya5{bottom:786.795000px;}
.y8d{bottom:788.880000px;}
.y2c{bottom:790.695000px;}
.y41{bottom:791.295000px;}
.yf{bottom:811.980000px;}
.ya4{bottom:822.780000px;}
.y8c{bottom:825.195000px;}
.y2b{bottom:826.695000px;}
.y40{bottom:827.295000px;}
.ye{bottom:848.025000px;}
.ya3{bottom:859.125000px;}
.y8b{bottom:861.525000px;}
.y2a{bottom:863.625000px;}
.y5d{bottom:871.125000px;}
.yd{bottom:884.325000px;}
.y8a{bottom:897.825000px;}
.ya2{bottom:899.325000px;}
.y29{bottom:899.925000px;}
.yc8{bottom:903.225000px;}
.yc{bottom:920.025000px;}
.y89{bottom:933.825000px;}
.ya1{bottom:935.625000px;}
.y28{bottom:936.225000px;}
.yc1{bottom:943.725000px;}
.yb{bottom:956.325000px;}
.y88{bottom:970.125000px;}
.y27{bottom:972.225000px;}
.y79{bottom:979.725000px;}
.ya{bottom:992.325000px;}
.y87{bottom:1007.025000px;}
.y26{bottom:1008.525000px;}
.y9{bottom:1019.370000px;}
.y86{bottom:1043.955000px;}
.y8{bottom:1044.255000px;}
.y25{bottom:1044.870000px;}
.y6e{bottom:1052.355000px;}
.y7{bottom:1080.255000px;}
.y24{bottom:1080.870000px;}
.y6b{bottom:1088.370000px;}
.y6{bottom:1116.570000px;}
.y23{bottom:1117.155000px;}
.y5c{bottom:1124.655000px;}
.y3{bottom:1154.370000px;}
.y2{bottom:1190.100000px;}
.y1{bottom:1226.400000px;}
.h8{height:36.281250px;}
.h15{height:47.085938px;}
.h10{height:47.109375px;}
.h4{height:47.340820px;}
.hc{height:52.998047px;}
.h5{height:55.623047px;}
.hb{height:58.886719px;}
.hd{height:60.468750px;}
.h12{height:63.457031px;}
.hf{height:65.645508px;}
.h2{height:68.859375px;}
.h16{height:70.628906px;}
.h11{height:70.664062px;}
.h13{height:71.613281px;}
.h3{height:72.562500px;}
.h6{height:72.638672px;}
.h14{height:72.761719px;}
.h9{height:74.033203px;}
.ha{height:82.441406px;}
.h7{height:84.656250px;}
.he{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:127.537500px;}
.x5{left:140.437500px;}
.x1{left:157.830000px;}
.xb{left:170.130000px;}
.xc{left:171.330000px;}
.x6{left:173.745000px;}
.x1d{left:176.175000px;}
.x20{left:177.975000px;}
.x13{left:180.975000px;}
.x14{left:182.475000px;}
.x37{left:184.275000px;}
.x2f{left:188.475000px;}
.x4{left:193.275000px;}
.x30{left:195.675000px;}
.x4d{left:201.375000px;}
.x17{left:231.937500px;}
.x4a{left:242.137500px;}
.x18{left:247.575000px;}
.x4b{left:255.975000px;}
.xd{left:269.775000px;}
.x23{left:278.437500px;}
.x24{left:285.375000px;}
.x27{left:300.367500px;}
.x10{left:310.867500px;}
.x11{left:327.120000px;}
.x28{left:334.905000px;}
.x12{left:343.620000px;}
.x8{left:348.120000px;}
.x47{left:372.682500px;}
.x48{left:386.520000px;}
.x9{left:395.220000px;}
.x32{left:397.620000px;}
.x25{left:404.467500px;}
.x4e{left:414.105000px;}
.x26{left:418.350000px;}
.x33{left:424.012500px;}
.x34{left:437.850000px;}
.x31{left:440.250000px;}
.x49{left:454.050000px;}
.x40{left:462.412500px;}
.x38{left:475.012500px;}
.x41{left:476.250000px;}
.x39{left:488.850000px;}
.x19{left:498.112500px;}
.x7{left:499.650000px;}
.x29{left:503.512500px;}
.x43{left:505.312500px;}
.xe{left:508.012500px;}
.x1a{left:514.050000px;}
.xf{left:517.050000px;}
.x44{left:519.150000px;}
.x3a{left:520.312500px;}
.x2a{left:527.250000px;}
.x3b{left:534.150000px;}
.x35{left:540.157500px;}
.x2b{left:552.757500px;}
.x36{left:553.980000px;}
.xa{left:558.195000px;}
.x1e{left:565.657500px;}
.x1f{left:572.580000px;}
.x2{left:614.880000px;}
.x2d{left:639.457500px;}
.x42{left:666.825000px;}
.x2e{left:675.825000px;}
.x3e{left:694.987500px;}
.x3f{left:708.825000px;}
.x45{left:726.787500px;}
.x46{left:745.125000px;}
.x3c{left:772.687500px;}
.x1b{left:778.717500px;}
.x3d{left:786.570000px;}
.x1c{left:796.755000px;}
.x15{left:804.832500px;}
.x4f{left:807.832500px;}
.x4c{left:810.532500px;}
.x2c{left:815.632500px;}
.x21{left:822.532500px;}
.x16{left:824.370000px;}
.x22{left:829.455000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls25{letter-spacing:-1.792000pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls12{letter-spacing:-0.725333pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.533333pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.458667pt;}
.ls4{letter-spacing:-0.213333pt;}
.ls52{letter-spacing:-0.085333pt;}
.ls31{letter-spacing:-0.042667pt;}
.ls32{letter-spacing:-0.021333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.021333pt;}
.ls20{letter-spacing:0.053333pt;}
.ls21{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.224000pt;}
.ls1f{letter-spacing:0.362667pt;}
.ls22{letter-spacing:0.389333pt;}
.ls0{letter-spacing:0.426667pt;}
.ls4b{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls3e{letter-spacing:0.693333pt;}
.lsa{letter-spacing:0.736000pt;}
.ls3d{letter-spacing:0.842667pt;}
.ls1e{letter-spacing:1.013333pt;}
.ls48{letter-spacing:1.226667pt;}
.ls4a{letter-spacing:2.133333pt;}
.ls2a{letter-spacing:2.666667pt;}
.ls45{letter-spacing:3.680000pt;}
.ls3b{letter-spacing:3.733333pt;}
.ls4e{letter-spacing:4.266667pt;}
.lsb{letter-spacing:4.800000pt;}
.ls15{letter-spacing:6.933333pt;}
.ls2c{letter-spacing:8.000000pt;}
.ls2f{letter-spacing:8.586667pt;}
.ls9{letter-spacing:9.066667pt;}
.ls3c{letter-spacing:9.173333pt;}
.ls30{letter-spacing:9.600000pt;}
.ls40{letter-spacing:10.080000pt;}
.ls14{letter-spacing:10.133333pt;}
.ls29{letter-spacing:13.866667pt;}
.ls54{letter-spacing:14.506667pt;}
.ls4d{letter-spacing:14.560000pt;}
.ls41{letter-spacing:14.933333pt;}
.ls42{letter-spacing:15.093333pt;}
.ls53{letter-spacing:15.626667pt;}
.ls7{letter-spacing:16.480000pt;}
.ls47{letter-spacing:16.533333pt;}
.lsc{letter-spacing:17.546667pt;}
.ls2b{letter-spacing:18.666667pt;}
.ls16{letter-spacing:18.826667pt;}
.ls44{letter-spacing:22.933333pt;}
.lsd{letter-spacing:23.466667pt;}
.ls27{letter-spacing:25.013333pt;}
.ls38{letter-spacing:25.066667pt;}
.ls28{letter-spacing:25.226667pt;}
.ls36{letter-spacing:26.133333pt;}
.ls2{letter-spacing:26.293333pt;}
.ls46{letter-spacing:28.266667pt;}
.lsf{letter-spacing:29.920000pt;}
.ls35{letter-spacing:30.400000pt;}
.ls34{letter-spacing:30.506667pt;}
.lse{letter-spacing:33.066667pt;}
.ls43{letter-spacing:33.546667pt;}
.ls4f{letter-spacing:35.733333pt;}
.ls50{letter-spacing:35.840000pt;}
.ls51{letter-spacing:35.893333pt;}
.ls17{letter-spacing:36.800000pt;}
.ls1b{letter-spacing:41.066667pt;}
.ls1c{letter-spacing:41.173333pt;}
.ls10{letter-spacing:42.720000pt;}
.ls33{letter-spacing:43.146667pt;}
.ls26{letter-spacing:52.800000pt;}
.ls19{letter-spacing:53.973333pt;}
.ls39{letter-spacing:54.400000pt;}
.ls3a{letter-spacing:54.933333pt;}
.ls18{letter-spacing:57.120000pt;}
.ls4c{letter-spacing:64.533333pt;}
.ls3f{letter-spacing:70.933333pt;}
.ls2d{letter-spacing:72.000000pt;}
.ls2e{letter-spacing:73.066667pt;}
.ls37{letter-spacing:89.173333pt;}
.ls1a{letter-spacing:92.266667pt;}
.ls13{letter-spacing:170.266667pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-21.760000pt;}
.ws1{word-spacing:-21.546667pt;}
.ws2{word-spacing:-21.120000pt;}
.ws4{word-spacing:-20.480000pt;}
.ws6{word-spacing:-20.266667pt;}
.wsd{word-spacing:-19.157333pt;}
.ws8{word-spacing:-18.890667pt;}
.ws7{word-spacing:-18.666667pt;}
.wse{word-spacing:-18.581333pt;}
.wsb{word-spacing:-18.186667pt;}
.wsc{word-spacing:-16.426667pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.274667pt;}
.ws9{word-spacing:0.000000pt;}
._44{margin-left:-4.421333pt;}
._35{margin-left:-3.306667pt;}
._3{margin-left:-2.112000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.152000pt;}
._1{width:2.389333pt;}
._10{width:3.338667pt;}
._29{width:4.720000pt;}
._28{width:5.706667pt;}
._9{width:6.698667pt;}
._a{width:7.744000pt;}
._23{width:8.725333pt;}
._24{width:9.882667pt;}
._5{width:11.626667pt;}
._8{width:12.821333pt;}
._15{width:13.813333pt;}
._d{width:15.562667pt;}
._c{width:16.544000pt;}
._1b{width:17.770667pt;}
._1f{width:20.384000pt;}
._20{width:21.322667pt;}
._1a{width:22.229333pt;}
._2d{width:23.616000pt;}
._e{width:24.554667pt;}
._f{width:25.696000pt;}
._6{width:27.082667pt;}
._7{width:28.000000pt;}
._22{width:29.077333pt;}
._21{width:30.112000pt;}
._45{width:31.018667pt;}
._12{width:32.010667pt;}
._11{width:33.280000pt;}
._2c{width:34.368000pt;}
._2b{width:35.317333pt;}
._2f{width:36.656000pt;}
._4a{width:37.552000pt;}
._25{width:38.517333pt;}
._26{width:39.786667pt;}
._1c{width:40.832000pt;}
._14{width:42.570667pt;}
._13{width:43.808000pt;}
._30{width:45.226667pt;}
._3b{width:46.357333pt;}
._2e{width:48.160000pt;}
._b{width:49.578667pt;}
._40{width:50.922667pt;}
._34{width:52.928000pt;}
._31{width:54.506667pt;}
._38{width:55.493333pt;}
._32{width:56.656000pt;}
._33{width:57.568000pt;}
._4b{width:58.480000pt;}
._19{width:61.781333pt;}
._18{width:62.762667pt;}
._49{width:63.845333pt;}
._46{width:64.906667pt;}
._47{width:65.952000pt;}
._37{width:68.597333pt;}
._1e{width:70.112000pt;}
._1d{width:71.445333pt;}
._3e{width:73.077333pt;}
._4c{width:74.880000pt;}
._16{width:76.160000pt;}
._17{width:77.408000pt;}
._2a{width:78.794667pt;}
._39{width:80.677333pt;}
._3a{width:81.589333pt;}
._3f{width:82.602667pt;}
._42{width:88.314667pt;}
._41{width:89.952000pt;}
._36{width:92.117333pt;}
._3d{width:99.808000pt;}
._3c{width:101.824000pt;}
._4e{width:104.512000pt;}
._4f{width:106.213333pt;}
._43{width:136.896000pt;}
._27{width:159.936000pt;}
._48{width:186.666667pt;}
._4d{width:1264.154667pt;}
._4{width:1303.621333pt;}
.fs4{font-size:32.000000pt;}
.fs7{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:50.700000pt;}
.y4{bottom:81.900000pt;}
.y6a{bottom:108.033333pt;}
.y3f{bottom:112.033333pt;}
.y22{bottom:118.966667pt;}
.y58{bottom:119.766667pt;}
.ya0{bottom:125.900000pt;}
.y69{bottom:126.433333pt;}
.y68{bottom:132.566667pt;}
.y57{bottom:139.493333pt;}
.y3e{bottom:144.306667pt;}
.y78{bottom:145.626667pt;}
.y9f{bottom:150.200000pt;}
.y21{bottom:151.266667pt;}
.y85{bottom:155.800000pt;}
.yb8{bottom:156.333333pt;}
.y67{bottom:156.600000pt;}
.y56{bottom:159.000000pt;}
.y6d{bottom:165.133333pt;}
.y77{bottom:169.666667pt;}
.y9e{bottom:175.000000pt;}
.y76{bottom:175.800000pt;}
.y66{bottom:176.333333pt;}
.y3d{bottom:176.600000pt;}
.y83{bottom:177.400000pt;}
.y55{bottom:178.733333pt;}
.yb7{bottom:180.333333pt;}
.yc7{bottom:181.933333pt;}
.y65{bottom:182.466667pt;}
.y20{bottom:183.266667pt;}
.y54{bottom:184.866667pt;}
.y84{bottom:188.066667pt;}
.y6c{bottom:191.000000pt;}
.y82{bottom:195.800000pt;}
.yb6{bottom:200.066667pt;}
.y75{bottom:200.866667pt;}
.y9d{bottom:201.666667pt;}
.y81{bottom:201.933333pt;}
.yb5{bottom:206.200000pt;}
.y64{bottom:206.466667pt;}
.y74{bottom:207.533333pt;}
.y3c{bottom:208.600000pt;}
.y53{bottom:209.133333pt;}
.y63{bottom:212.600000pt;}
.y1f{bottom:215.533333pt;}
.yc0{bottom:219.800000pt;}
.y5b{bottom:220.066667pt;}
.ybf{bottom:225.933333pt;}
.y80{bottom:226.200000pt;}
.y52{bottom:228.600000pt;}
.yb4{bottom:231.800000pt;}
.y7f{bottom:232.333333pt;}
.y73{bottom:233.666667pt;}
.y62{bottom:236.866667pt;}
.y3b{bottom:240.866667pt;}
.y9c{bottom:246.466667pt;}
.y1e{bottom:247.800000pt;}
.y51{bottom:248.333333pt;}
.ybe{bottom:249.933333pt;}
.y5a{bottom:252.333333pt;}
.y72{bottom:253.133333pt;}
.y50{bottom:254.466667pt;}
.y61{bottom:256.600000pt;}
.y7e{bottom:257.400000pt;}
.y71{bottom:259.266667pt;}
.y60{bottom:262.733333pt;}
.ybd{bottom:269.666667pt;}
.y3a{bottom:273.133333pt;}
.ybc{bottom:275.800000pt;}
.y9b{bottom:278.733333pt;}
.y1d{bottom:280.066667pt;}
.y7d{bottom:280.333333pt;}
.y59{bottom:284.600000pt;}
.y70{bottom:285.133333pt;}
.y7c{bottom:287.000000pt;}
.y5f{bottom:288.333333pt;}
.yc6{bottom:299.800000pt;}
.y39{bottom:300.640000pt;}
.ybb{bottom:301.440000pt;}
.y1c{bottom:307.840000pt;}
.y9a{bottom:311.026667pt;}
.yb3{bottom:312.893333pt;}
.y7b{bottom:314.506667pt;}
.y4f{bottom:316.893333pt;}
.yc5{bottom:319.560000pt;}
.yc4{bottom:325.693333pt;}
.y38{bottom:328.373333pt;}
.y1b{bottom:334.773333pt;}
.y99{bottom:343.040000pt;}
.yb2{bottom:344.893333pt;}
.y4e{bottom:348.893333pt;}
.yc3{bottom:351.306667pt;}
.y37{bottom:360.626667pt;}
.y1a{bottom:366.773333pt;}
.y98{bottom:375.293333pt;}
.yb1{bottom:377.173333pt;}
.y4d{bottom:381.173333pt;}
.yba{bottom:387.840000pt;}
.y36{bottom:392.626667pt;}
.y19{bottom:399.560000pt;}
.y97{bottom:407.560000pt;}
.yb0{bottom:409.440000pt;}
.y4c{bottom:413.440000pt;}
.y5e{bottom:420.093333pt;}
.y35{bottom:424.893333pt;}
.y18{bottom:431.840000pt;}
.y95{bottom:439.840000pt;}
.yae{bottom:441.693333pt;}
.y4b{bottom:445.693333pt;}
.y96{bottom:446.493333pt;}
.yaf{bottom:448.360000pt;}
.yc2{bottom:452.400000pt;}
.y34{bottom:457.200000pt;}
.y17{bottom:464.133333pt;}
.y94{bottom:471.866667pt;}
.yad{bottom:473.733333pt;}
.y49{bottom:477.733333pt;}
.y4a{bottom:484.400000pt;}
.y33{bottom:489.466667pt;}
.y16{bottom:496.133333pt;}
.y93{bottom:504.133333pt;}
.yac{bottom:506.000000pt;}
.y48{bottom:510.000000pt;}
.y32{bottom:521.466667pt;}
.y15{bottom:528.400000pt;}
.y92{bottom:536.400000pt;}
.yab{bottom:538.266667pt;}
.y47{bottom:542.266667pt;}
.y31{bottom:553.733333pt;}
.y14{bottom:560.666667pt;}
.y91{bottom:568.666667pt;}
.yaa{bottom:570.533333pt;}
.y46{bottom:574.533333pt;}
.y7a{bottom:581.200000pt;}
.y30{bottom:586.000000pt;}
.y13{bottom:592.933333pt;}
.y90{bottom:600.666667pt;}
.ya9{bottom:602.560000pt;}
.y44{bottom:606.560000pt;}
.y45{bottom:613.226667pt;}
.y2f{bottom:618.026667pt;}
.y12{bottom:624.960000pt;}
.ya7{bottom:634.840000pt;}
.y8f{bottom:636.426667pt;}
.y43{bottom:638.840000pt;}
.ya8{bottom:641.493333pt;}
.y6f{bottom:645.506667pt;}
.y2e{bottom:650.293333pt;}
.y11{bottom:657.226667pt;}
.ya6{bottom:667.106667pt;}
.y8e{bottom:668.693333pt;}
.y42{bottom:671.093333pt;}
.y2d{bottom:677.226667pt;}
.yb9{bottom:677.773333pt;}
.y10{bottom:689.506667pt;}
.ya5{bottom:699.373333pt;}
.y8d{bottom:701.226667pt;}
.y2c{bottom:702.840000pt;}
.y41{bottom:703.373333pt;}
.yf{bottom:721.760000pt;}
.ya4{bottom:731.360000pt;}
.y8c{bottom:733.506667pt;}
.y2b{bottom:734.840000pt;}
.y40{bottom:735.373333pt;}
.ye{bottom:753.800000pt;}
.ya3{bottom:763.666667pt;}
.y8b{bottom:765.800000pt;}
.y2a{bottom:767.666667pt;}
.y5d{bottom:774.333333pt;}
.yd{bottom:786.066667pt;}
.y8a{bottom:798.066667pt;}
.ya2{bottom:799.400000pt;}
.y29{bottom:799.933333pt;}
.yc8{bottom:802.866667pt;}
.yc{bottom:817.800000pt;}
.y89{bottom:830.066667pt;}
.ya1{bottom:831.666667pt;}
.y28{bottom:832.200000pt;}
.yc1{bottom:838.866667pt;}
.yb{bottom:850.066667pt;}
.y88{bottom:862.333333pt;}
.y27{bottom:864.200000pt;}
.y79{bottom:870.866667pt;}
.ya{bottom:882.066667pt;}
.y87{bottom:895.133333pt;}
.y26{bottom:896.466667pt;}
.y9{bottom:906.106667pt;}
.y86{bottom:927.960000pt;}
.y8{bottom:928.226667pt;}
.y25{bottom:928.773333pt;}
.y6e{bottom:935.426667pt;}
.y7{bottom:960.226667pt;}
.y24{bottom:960.773333pt;}
.y6b{bottom:967.440000pt;}
.y6{bottom:992.506667pt;}
.y23{bottom:993.026667pt;}
.y5c{bottom:999.693333pt;}
.y3{bottom:1026.106667pt;}
.y2{bottom:1057.866667pt;}
.y1{bottom:1090.133333pt;}
.h8{height:32.250000pt;}
.h15{height:41.854167pt;}
.h10{height:41.875000pt;}
.h4{height:42.080729pt;}
.hc{height:47.109375pt;}
.h5{height:49.442708pt;}
.hb{height:52.343750pt;}
.hd{height:53.750000pt;}
.h12{height:56.406250pt;}
.hf{height:58.351562pt;}
.h2{height:61.208333pt;}
.h16{height:62.781250pt;}
.h11{height:62.812500pt;}
.h13{height:63.656250pt;}
.h3{height:64.500000pt;}
.h6{height:64.567708pt;}
.h14{height:64.677083pt;}
.h9{height:65.807292pt;}
.ha{height:73.281250pt;}
.h7{height:75.250000pt;}
.he{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.366667pt;}
.x5{left:124.833333pt;}
.x1{left:140.293333pt;}
.xb{left:151.226667pt;}
.xc{left:152.293333pt;}
.x6{left:154.440000pt;}
.x1d{left:156.600000pt;}
.x20{left:158.200000pt;}
.x13{left:160.866667pt;}
.x14{left:162.200000pt;}
.x37{left:163.800000pt;}
.x2f{left:167.533333pt;}
.x4{left:171.800000pt;}
.x30{left:173.933333pt;}
.x4d{left:179.000000pt;}
.x17{left:206.166667pt;}
.x4a{left:215.233333pt;}
.x18{left:220.066667pt;}
.x4b{left:227.533333pt;}
.xd{left:239.800000pt;}
.x23{left:247.500000pt;}
.x24{left:253.666667pt;}
.x27{left:266.993333pt;}
.x10{left:276.326667pt;}
.x11{left:290.773333pt;}
.x28{left:297.693333pt;}
.x12{left:305.440000pt;}
.x8{left:309.440000pt;}
.x47{left:331.273333pt;}
.x48{left:343.573333pt;}
.x9{left:351.306667pt;}
.x32{left:353.440000pt;}
.x25{left:359.526667pt;}
.x4e{left:368.093333pt;}
.x26{left:371.866667pt;}
.x33{left:376.900000pt;}
.x34{left:389.200000pt;}
.x31{left:391.333333pt;}
.x49{left:403.600000pt;}
.x40{left:411.033333pt;}
.x38{left:422.233333pt;}
.x41{left:423.333333pt;}
.x39{left:434.533333pt;}
.x19{left:442.766667pt;}
.x7{left:444.133333pt;}
.x29{left:447.566667pt;}
.x43{left:449.166667pt;}
.xe{left:451.566667pt;}
.x1a{left:456.933333pt;}
.xf{left:459.600000pt;}
.x44{left:461.466667pt;}
.x3a{left:462.500000pt;}
.x2a{left:468.666667pt;}
.x3b{left:474.800000pt;}
.x35{left:480.140000pt;}
.x2b{left:491.340000pt;}
.x36{left:492.426667pt;}
.xa{left:496.173333pt;}
.x1e{left:502.806667pt;}
.x1f{left:508.960000pt;}
.x2{left:546.560000pt;}
.x2d{left:568.406667pt;}
.x42{left:592.733333pt;}
.x2e{left:600.733333pt;}
.x3e{left:617.766667pt;}
.x3f{left:630.066667pt;}
.x45{left:646.033333pt;}
.x46{left:662.333333pt;}
.x3c{left:686.833333pt;}
.x1b{left:692.193333pt;}
.x3d{left:699.173333pt;}
.x1c{left:708.226667pt;}
.x15{left:715.406667pt;}
.x4f{left:718.073333pt;}
.x4c{left:720.473333pt;}
.x2c{left:725.006667pt;}
.x21{left:731.140000pt;}
.x16{left:732.773333pt;}
.x22{left:737.293333pt;}
}




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