
    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_9635157b9f93f0aee192ade8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_69a36fd914e0aa511e17bb2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_f5ef80614bf5a76e48501a80.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_39f0984fcdd2baa7dc068012.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940918;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740234;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_db025dd2ce18f951f06f9994.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.053223;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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_70a7333a6e4461e26785421a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.044000px;}
.ls37{letter-spacing:-0.960000px;}
.ls2a{letter-spacing:-0.579600px;}
.ls6{letter-spacing:-0.463800px;}
.lsd{letter-spacing:-0.326400px;}
.lsb{letter-spacing:-0.303000px;}
.ls19{letter-spacing:-0.214800px;}
.ls23{letter-spacing:-0.208800px;}
.ls39{letter-spacing:-0.194400px;}
.ls27{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.ls10{letter-spacing:-0.115800px;}
.ls38{letter-spacing:-0.078600px;}
.ls26{letter-spacing:-0.069600px;}
.ls18{letter-spacing:-0.058320px;}
.ls22{letter-spacing:-0.055440px;}
.ls42{letter-spacing:-0.041040px;}
.ls3c{letter-spacing:-0.038160px;}
.ls8{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.ls11{letter-spacing:0.060600px;}
.ls3b{letter-spacing:0.061200px;}
.lsf{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.093000px;}
.ls41{letter-spacing:0.121680px;}
.ls24{letter-spacing:0.140400px;}
.ls33{letter-spacing:0.143280px;}
.ls7{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.174000px;}
.ls31{letter-spacing:0.174240px;}
.ls2f{letter-spacing:0.175200px;}
.ls17{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.190200px;}
.ls1a{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.314400px;}
.ls32{letter-spacing:0.314640px;}
.ls29{letter-spacing:0.353520px;}
.ls25{letter-spacing:0.357000px;}
.ls40{letter-spacing:0.376800px;}
.ls12{letter-spacing:0.393600px;}
.lsa{letter-spacing:0.417000px;}
.ls0{letter-spacing:0.427680px;}
.ls2{letter-spacing:0.479520px;}
.ls2e{letter-spacing:0.599520px;}
.ls3d{letter-spacing:0.617760px;}
.ls9{letter-spacing:0.672000px;}
.ls1d{letter-spacing:0.894240px;}
.ls30{letter-spacing:2.106720px;}
.ls2b{letter-spacing:5.706720px;}
.ls3f{letter-spacing:12.186720px;}
.ls1e{letter-spacing:15.786720px;}
.ls15{letter-spacing:17.226720px;}
.ls3a{letter-spacing:17.946720px;}
.ls16{letter-spacing:20.106720px;}
.ls14{letter-spacing:21.546720px;}
.ls1c{letter-spacing:22.986720px;}
.ls1f{letter-spacing:24.426720px;}
.ls20{letter-spacing:25.866720px;}
.ls21{letter-spacing:26.586720px;}
.ls1{letter-spacing:38.106720px;}
.ls2d{letter-spacing:41.706720px;}
.ls35{letter-spacing:41.850720px;}
.ls3e{letter-spacing:42.426720px;}
.ls2c{letter-spacing:44.586720px;}
.ls34{letter-spacing:44.730720px;}
.ls36{letter-spacing:47.610720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws17{word-spacing:-13.882560px;}
.wsf{word-spacing:-13.862760px;}
.wsb{word-spacing:-13.820160px;}
.ws13{word-spacing:-13.811760px;}
.ws12{word-spacing:-13.680960px;}
.wse{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.598760px;}
.ws6{word-spacing:-13.505760px;}
.ws16{word-spacing:-13.467600px;}
.wsc{word-spacing:-13.450320px;}
.ws9{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.436160px;}
.ws14{word-spacing:-13.427160px;}
.ws7{word-spacing:-13.389960px;}
.ws15{word-spacing:-13.311360px;}
.wsd{word-spacing:-13.296960px;}
.wsa{word-spacing:-13.290960px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.170240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.774000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._22{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-144.434880px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.522560px;}
._23{margin-left:-110.223360px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.351360px;}
._15{margin-left:-66.703680px;}
._14{margin-left:-49.123920px;}
._19{margin-left:-32.468640px;}
._27{margin-left:-4.827600px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2a{width:1.149120px;}
._30{width:2.211120px;}
._2d{width:3.346560px;}
._2c{width:4.543200px;}
._2e{width:5.659200px;}
._2f{width:6.715440px;}
._33{width:8.264880px;}
._32{width:9.474480px;}
._31{width:10.697040px;}
._34{width:12.411840px;}
._39{width:14.627520px;}
._3b{width:15.955920px;}
._3a{width:17.210880px;}
._29{width:18.992880px;}
._28{width:20.552880px;}
._35{width:23.563440px;}
._3c{width:24.860160px;}
._38{width:26.534880px;}
._37{width:27.798480px;}
._2b{width:29.245680px;}
._3d{width:31.218720px;}
._36{width:1844.255760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya1{bottom:6.660000px;}
.y6{bottom:59.760000px;}
.y10f{bottom:92.160000px;}
.ydf{bottom:95.220000px;}
.y86{bottom:95.760000px;}
.y57{bottom:97.740000px;}
.y10e{bottom:107.280000px;}
.y9c{bottom:113.220000px;}
.yde{bottom:116.280000px;}
.y85{bottom:116.820000px;}
.yc7{bottom:118.620000px;}
.y56{bottom:118.800000px;}
.y110{bottom:122.940000px;}
.y10d{bottom:128.340000px;}
.y2e{bottom:134.280000px;}
.ydd{bottom:137.340000px;}
.y84{bottom:137.880000px;}
.yc6{bottom:139.500000px;}
.y55{bottom:139.860000px;}
.y10c{bottom:149.400000px;}
.y2d{bottom:155.370000px;}
.ydc{bottom:158.430000px;}
.y83{bottom:158.970000px;}
.yc5{bottom:160.590000px;}
.y54{bottom:169.770000px;}
.y10b{bottom:170.490000px;}
.y2c{bottom:176.430000px;}
.ydb{bottom:179.490000px;}
.y82{bottom:180.030000px;}
.yc4{bottom:181.650000px;}
.y53{bottom:190.830000px;}
.y10a{bottom:191.550000px;}
.y2b{bottom:197.490000px;}
.yda{bottom:200.550000px;}
.y81{bottom:201.090000px;}
.yc3{bottom:202.710000px;}
.y52{bottom:211.890000px;}
.y109{bottom:212.610000px;}
.y2a{bottom:218.550000px;}
.yd9{bottom:221.610000px;}
.y80{bottom:222.150000px;}
.yc2{bottom:223.770000px;}
.y51{bottom:232.950000px;}
.y108{bottom:233.670000px;}
.y29{bottom:239.610000px;}
.yd8{bottom:242.670000px;}
.y7f{bottom:243.210000px;}
.yc1{bottom:244.830000px;}
.y50{bottom:254.010000px;}
.y107{bottom:254.730000px;}
.yc0{bottom:260.130000px;}
.y28{bottom:260.670000px;}
.yd7{bottom:263.730000px;}
.y7e{bottom:264.270000px;}
.y4f{bottom:275.070000px;}
.y106{bottom:275.790000px;}
.ybf{bottom:281.190000px;}
.y27{bottom:281.730000px;}
.y7d{bottom:285.330000px;}
.yd6{bottom:293.790000px;}
.y4e{bottom:296.130000px;}
.y105{bottom:296.850000px;}
.y26{bottom:302.790000px;}
.ybe{bottom:302.970000px;}
.y7c{bottom:306.390000px;}
.yd5{bottom:314.850000px;}
.y4d{bottom:317.190000px;}
.y104{bottom:317.910000px;}
.y25{bottom:323.850000px;}
.ybd{bottom:324.030000px;}
.y7b{bottom:327.450000px;}
.yd4{bottom:335.910000px;}
.y4c{bottom:338.250000px;}
.y103{bottom:338.970000px;}
.y24{bottom:344.910000px;}
.ybc{bottom:345.090000px;}
.y7a{bottom:348.510000px;}
.yd3{bottom:356.970000px;}
.y4b{bottom:359.310000px;}
.y102{bottom:360.030000px;}
.y23{bottom:365.970000px;}
.ybb{bottom:366.150000px;}
.y79{bottom:369.570000px;}
.yd2{bottom:378.030000px;}
.y4a{bottom:380.370000px;}
.y101{bottom:381.090000px;}
.y22{bottom:387.030000px;}
.yba{bottom:387.930000px;}
.y78{bottom:390.630000px;}
.yd1{bottom:399.090000px;}
.y49{bottom:401.475000px;}
.y100{bottom:402.195000px;}
.y21{bottom:408.135000px;}
.yb9{bottom:416.415000px;}
.yd0{bottom:420.195000px;}
.y77{bottom:420.735000px;}
.y48{bottom:422.535000px;}
.yff{bottom:423.255000px;}
.y20{bottom:429.195000px;}
.yb8{bottom:437.475000px;}
.ycf{bottom:441.255000px;}
.y76{bottom:441.795000px;}
.y47{bottom:443.595000px;}
.yfe{bottom:444.315000px;}
.y1f{bottom:450.255000px;}
.yb7{bottom:458.535000px;}
.yce{bottom:462.315000px;}
.y75{bottom:462.855000px;}
.y46{bottom:464.655000px;}
.yfd{bottom:465.375000px;}
.y1e{bottom:471.315000px;}
.ycd{bottom:483.375000px;}
.y74{bottom:483.915000px;}
.yb6{bottom:485.175000px;}
.y45{bottom:485.715000px;}
.yfc{bottom:486.435000px;}
.y1d{bottom:492.375000px;}
.ycc{bottom:504.435000px;}
.y73{bottom:504.975000px;}
.yb5{bottom:506.235000px;}
.y44{bottom:506.775000px;}
.y1c{bottom:513.435000px;}
.yfb{bottom:516.495000px;}
.ycb{bottom:525.495000px;}
.yb4{bottom:527.295000px;}
.y43{bottom:527.835000px;}
.y1b{bottom:534.495000px;}
.yfa{bottom:537.555000px;}
.y72{bottom:541.515000px;}
.yca{bottom:546.555000px;}
.yb3{bottom:548.355000px;}
.y42{bottom:548.895000px;}
.y1a{bottom:555.555000px;}
.yf9{bottom:558.615000px;}
.y71{bottom:565.635000px;}
.yc9{bottom:567.615000px;}
.yb2{bottom:569.415000px;}
.y41{bottom:569.955000px;}
.y19{bottom:576.615000px;}
.yf8{bottom:579.675000px;}
.y70{bottom:586.695000px;}
.yc8{bottom:588.675000px;}
.yb1{bottom:590.295000px;}
.y40{bottom:591.015000px;}
.y18{bottom:597.675000px;}
.yf7{bottom:600.735000px;}
.y6f{bottom:607.755000px;}
.yb0{bottom:611.355000px;}
.y3f{bottom:612.075000px;}
.y9b{bottom:618.735000px;}
.yf6{bottom:621.795000px;}
.y6e{bottom:628.815000px;}
.yaf{bottom:632.415000px;}
.y3e{bottom:633.135000px;}
.y9a{bottom:639.795000px;}
.y17{bottom:642.135000px;}
.yf5{bottom:642.855000px;}
.yae{bottom:653.505000px;}
.y3d{bottom:654.225000px;}
.y99{bottom:660.885000px;}
.yf4{bottom:663.945000px;}
.y6d{bottom:665.385000px;}
.y16{bottom:672.045000px;}
.yad{bottom:674.565000px;}
.y3c{bottom:675.285000px;}
.y98{bottom:681.945000px;}
.yf3{bottom:685.005000px;}
.y6c{bottom:689.505000px;}
.y15{bottom:693.105000px;}
.yac{bottom:695.625000px;}
.y3b{bottom:696.345000px;}
.y97{bottom:703.005000px;}
.yf2{bottom:706.065000px;}
.y6b{bottom:710.565000px;}
.y14{bottom:714.165000px;}
.yab{bottom:716.685000px;}
.y3a{bottom:717.405000px;}
.y96{bottom:724.065000px;}
.yf1{bottom:727.125000px;}
.y6a{bottom:731.625000px;}
.y13{bottom:735.225000px;}
.yaa{bottom:737.745000px;}
.y39{bottom:738.465000px;}
.y95{bottom:745.125000px;}
.yf0{bottom:748.005000px;}
.y69{bottom:752.685000px;}
.y12{bottom:756.285000px;}
.ya9{bottom:758.805000px;}
.y38{bottom:759.525000px;}
.y94{bottom:766.005000px;}
.yef{bottom:769.065000px;}
.y68{bottom:773.745000px;}
.ya8{bottom:774.105000px;}
.y11{bottom:777.345000px;}
.y37{bottom:780.585000px;}
.y93{bottom:787.065000px;}
.y67{bottom:794.805000px;}
.ya7{bottom:795.165000px;}
.y10{bottom:798.405000px;}
.yee{bottom:799.125000px;}
.y36{bottom:801.645000px;}
.y92{bottom:808.125000px;}
.y66{bottom:815.865000px;}
.ya6{bottom:816.945000px;}
.yf{bottom:819.465000px;}
.yed{bottom:820.185000px;}
.y35{bottom:822.705000px;}
.y91{bottom:829.185000px;}
.y65{bottom:836.925000px;}
.ya5{bottom:838.005000px;}
.ye{bottom:840.525000px;}
.yec{bottom:841.245000px;}
.y34{bottom:843.765000px;}
.y90{bottom:850.245000px;}
.ya4{bottom:859.065000px;}
.yeb{bottom:862.305000px;}
.yd{bottom:863.745000px;}
.y33{bottom:864.825000px;}
.y8f{bottom:871.305000px;}
.y64{bottom:873.465000px;}
.ya3{bottom:880.125000px;}
.yea{bottom:883.365000px;}
.yc{bottom:884.805000px;}
.y32{bottom:885.885000px;}
.y8e{bottom:892.365000px;}
.y63{bottom:896.685000px;}
.ya2{bottom:901.230000px;}
.y31{bottom:903.030000px;}
.ye9{bottom:904.470000px;}
.yb{bottom:911.130000px;}
.y8d{bottom:913.470000px;}
.y62{bottom:917.790000px;}
.ya0{bottom:923.010000px;}
.ye8{bottom:925.530000px;}
.ya{bottom:927.870000px;}
.y8c{bottom:934.530000px;}
.y61{bottom:938.850000px;}
.ye7{bottom:946.590000px;}
.y9{bottom:950.190000px;}
.y9f{bottom:951.450000px;}
.y8b{bottom:955.590000px;}
.y60{bottom:959.910000px;}
.ye6{bottom:967.650000px;}
.y9e{bottom:972.510000px;}
.y8{bottom:975.390000px;}
.y8a{bottom:976.650000px;}
.y5f{bottom:980.970000px;}
.ye5{bottom:988.710000px;}
.y89{bottom:997.710000px;}
.y9d{bottom:997.890000px;}
.y5e{bottom:1002.030000px;}
.y7{bottom:1009.050000px;}
.ye4{bottom:1009.770000px;}
.y88{bottom:1018.770000px;}
.ye3{bottom:1030.830000px;}
.y5d{bottom:1036.410000px;}
.y87{bottom:1039.830000px;}
.y5{bottom:1049.190000px;}
.ye2{bottom:1051.890000px;}
.y5c{bottom:1060.890000px;}
.ye1{bottom:1072.950000px;}
.y4{bottom:1081.410000px;}
.y5b{bottom:1081.950000px;}
.ye0{bottom:1094.010000px;}
.y5a{bottom:1103.010000px;}
.y3{bottom:1113.630000px;}
.y59{bottom:1124.070000px;}
.y58{bottom:1145.130000px;}
.y2{bottom:1145.670000px;}
.y30{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y2f{bottom:1193.220000px;}
.hb{height:21.060000px;}
.hc{height:21.096000px;}
.h7{height:38.671172px;}
.h9{height:45.578672px;}
.ha{height:52.260820px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:63.720000px;}
.wb{width:63.756000px;}
.w7{width:64.080000px;}
.wd{width:64.116000px;}
.wc{width:67.500000px;}
.w5{width:67.536000px;}
.w6{width:71.280000px;}
.we{width:109.260000px;}
.w8{width:109.296000px;}
.w3{width:191.010000px;}
.wa{width:300.090000px;}
.w9{width:375.915000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x6{left:53.999987px;}
.xe{left:70.199987px;}
.x7{left:75.599987px;}
.x20{left:80.999987px;}
.x18{left:97.235987px;}
.x1a{left:108.576000px;}
.xc{left:150.329987px;}
.x5{left:156.449987px;}
.x17{left:162.029987px;}
.x10{left:163.110000px;}
.xb{left:210.629987px;}
.xa{left:236.729987px;}
.x8{left:250.049987px;}
.x9{left:257.429987px;}
.xd{left:267.374987px;}
.x3{left:286.634987px;}
.x2{left:350.534987px;}
.x12{left:354.135000px;}
.x1b{left:408.675000px;}
.xf{left:410.474987px;}
.x13{left:417.855000px;}
.x4{left:419.114987px;}
.x1c{left:472.425000px;}
.x1{left:479.264987px;}
.x14{left:485.385000px;}
.x1d{left:539.925000px;}
.x15{left:556.665000px;}
.x1e{left:611.205000px;}
.x16{left:620.745000px;}
.x1f{left:675.330000px;}
.x19{left:797.549987px;}
.x21{left:838.439987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.928000pt;}
.ls37{letter-spacing:-0.853333pt;}
.ls2a{letter-spacing:-0.515200pt;}
.ls6{letter-spacing:-0.412267pt;}
.lsd{letter-spacing:-0.290133pt;}
.lsb{letter-spacing:-0.269333pt;}
.ls19{letter-spacing:-0.190933pt;}
.ls23{letter-spacing:-0.185600pt;}
.ls39{letter-spacing:-0.172800pt;}
.ls27{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls10{letter-spacing:-0.102933pt;}
.ls38{letter-spacing:-0.069867pt;}
.ls26{letter-spacing:-0.061867pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls22{letter-spacing:-0.049280pt;}
.ls42{letter-spacing:-0.036480pt;}
.ls3c{letter-spacing:-0.033920pt;}
.ls8{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls11{letter-spacing:0.053867pt;}
.ls3b{letter-spacing:0.054400pt;}
.lsf{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.082667pt;}
.ls41{letter-spacing:0.108160pt;}
.ls24{letter-spacing:0.124800pt;}
.ls33{letter-spacing:0.127360pt;}
.ls7{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.154667pt;}
.ls31{letter-spacing:0.154880pt;}
.ls2f{letter-spacing:0.155733pt;}
.ls17{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.169067pt;}
.ls1a{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.279467pt;}
.ls32{letter-spacing:0.279680pt;}
.ls29{letter-spacing:0.314240pt;}
.ls25{letter-spacing:0.317333pt;}
.ls40{letter-spacing:0.334933pt;}
.ls12{letter-spacing:0.349867pt;}
.lsa{letter-spacing:0.370667pt;}
.ls0{letter-spacing:0.380160pt;}
.ls2{letter-spacing:0.426240pt;}
.ls2e{letter-spacing:0.532907pt;}
.ls3d{letter-spacing:0.549120pt;}
.ls9{letter-spacing:0.597333pt;}
.ls1d{letter-spacing:0.794880pt;}
.ls30{letter-spacing:1.872640pt;}
.ls2b{letter-spacing:5.072640pt;}
.ls3f{letter-spacing:10.832640pt;}
.ls1e{letter-spacing:14.032640pt;}
.ls15{letter-spacing:15.312640pt;}
.ls3a{letter-spacing:15.952640pt;}
.ls16{letter-spacing:17.872640pt;}
.ls14{letter-spacing:19.152640pt;}
.ls1c{letter-spacing:20.432640pt;}
.ls1f{letter-spacing:21.712640pt;}
.ls20{letter-spacing:22.992640pt;}
.ls21{letter-spacing:23.632640pt;}
.ls1{letter-spacing:33.872640pt;}
.ls2d{letter-spacing:37.072640pt;}
.ls35{letter-spacing:37.200640pt;}
.ls3e{letter-spacing:37.712640pt;}
.ls2c{letter-spacing:39.632640pt;}
.ls34{letter-spacing:39.760640pt;}
.ls36{letter-spacing:42.320640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws17{word-spacing:-12.340053pt;}
.wsf{word-spacing:-12.322453pt;}
.wsb{word-spacing:-12.284587pt;}
.ws13{word-spacing:-12.277120pt;}
.ws12{word-spacing:-12.160853pt;}
.wse{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.087787pt;}
.ws6{word-spacing:-12.005120pt;}
.ws16{word-spacing:-11.971200pt;}
.wsc{word-spacing:-11.955840pt;}
.ws9{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.943253pt;}
.ws14{word-spacing:-11.935253pt;}
.ws7{word-spacing:-11.902187pt;}
.ws15{word-spacing:-11.832320pt;}
.wsd{word-spacing:-11.819520pt;}
.wsa{word-spacing:-11.814187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.706880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-198.021333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._22{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-128.386560pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.686720pt;}
._23{margin-left:-97.976320pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.312320pt;}
._15{margin-left:-59.292160pt;}
._14{margin-left:-43.665707pt;}
._19{margin-left:-28.861013pt;}
._27{margin-left:-4.291200pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2a{width:1.021440pt;}
._30{width:1.965440pt;}
._2d{width:2.974720pt;}
._2c{width:4.038400pt;}
._2e{width:5.030400pt;}
._2f{width:5.969280pt;}
._33{width:7.346560pt;}
._32{width:8.421760pt;}
._31{width:9.508480pt;}
._34{width:11.032747pt;}
._39{width:13.002240pt;}
._3b{width:14.183040pt;}
._3a{width:15.298560pt;}
._29{width:16.882560pt;}
._28{width:18.269227pt;}
._35{width:20.945280pt;}
._3c{width:22.097920pt;}
._38{width:23.586560pt;}
._37{width:24.709760pt;}
._2b{width:25.996160pt;}
._3d{width:27.749973pt;}
._36{width:1639.338453pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:5.920000pt;}
.y6{bottom:53.120000pt;}
.y10f{bottom:81.920000pt;}
.ydf{bottom:84.640000pt;}
.y86{bottom:85.120000pt;}
.y57{bottom:86.880000pt;}
.y10e{bottom:95.360000pt;}
.y9c{bottom:100.640000pt;}
.yde{bottom:103.360000pt;}
.y85{bottom:103.840000pt;}
.yc7{bottom:105.440000pt;}
.y56{bottom:105.600000pt;}
.y110{bottom:109.280000pt;}
.y10d{bottom:114.080000pt;}
.y2e{bottom:119.360000pt;}
.ydd{bottom:122.080000pt;}
.y84{bottom:122.560000pt;}
.yc6{bottom:124.000000pt;}
.y55{bottom:124.320000pt;}
.y10c{bottom:132.800000pt;}
.y2d{bottom:138.106667pt;}
.ydc{bottom:140.826667pt;}
.y83{bottom:141.306667pt;}
.yc5{bottom:142.746667pt;}
.y54{bottom:150.906667pt;}
.y10b{bottom:151.546667pt;}
.y2c{bottom:156.826667pt;}
.ydb{bottom:159.546667pt;}
.y82{bottom:160.026667pt;}
.yc4{bottom:161.466667pt;}
.y53{bottom:169.626667pt;}
.y10a{bottom:170.266667pt;}
.y2b{bottom:175.546667pt;}
.yda{bottom:178.266667pt;}
.y81{bottom:178.746667pt;}
.yc3{bottom:180.186667pt;}
.y52{bottom:188.346667pt;}
.y109{bottom:188.986667pt;}
.y2a{bottom:194.266667pt;}
.yd9{bottom:196.986667pt;}
.y80{bottom:197.466667pt;}
.yc2{bottom:198.906667pt;}
.y51{bottom:207.066667pt;}
.y108{bottom:207.706667pt;}
.y29{bottom:212.986667pt;}
.yd8{bottom:215.706667pt;}
.y7f{bottom:216.186667pt;}
.yc1{bottom:217.626667pt;}
.y50{bottom:225.786667pt;}
.y107{bottom:226.426667pt;}
.yc0{bottom:231.226667pt;}
.y28{bottom:231.706667pt;}
.yd7{bottom:234.426667pt;}
.y7e{bottom:234.906667pt;}
.y4f{bottom:244.506667pt;}
.y106{bottom:245.146667pt;}
.ybf{bottom:249.946667pt;}
.y27{bottom:250.426667pt;}
.y7d{bottom:253.626667pt;}
.yd6{bottom:261.146667pt;}
.y4e{bottom:263.226667pt;}
.y105{bottom:263.866667pt;}
.y26{bottom:269.146667pt;}
.ybe{bottom:269.306667pt;}
.y7c{bottom:272.346667pt;}
.yd5{bottom:279.866667pt;}
.y4d{bottom:281.946667pt;}
.y104{bottom:282.586667pt;}
.y25{bottom:287.866667pt;}
.ybd{bottom:288.026667pt;}
.y7b{bottom:291.066667pt;}
.yd4{bottom:298.586667pt;}
.y4c{bottom:300.666667pt;}
.y103{bottom:301.306667pt;}
.y24{bottom:306.586667pt;}
.ybc{bottom:306.746667pt;}
.y7a{bottom:309.786667pt;}
.yd3{bottom:317.306667pt;}
.y4b{bottom:319.386667pt;}
.y102{bottom:320.026667pt;}
.y23{bottom:325.306667pt;}
.ybb{bottom:325.466667pt;}
.y79{bottom:328.506667pt;}
.yd2{bottom:336.026667pt;}
.y4a{bottom:338.106667pt;}
.y101{bottom:338.746667pt;}
.y22{bottom:344.026667pt;}
.yba{bottom:344.826667pt;}
.y78{bottom:347.226667pt;}
.yd1{bottom:354.746667pt;}
.y49{bottom:356.866667pt;}
.y100{bottom:357.506667pt;}
.y21{bottom:362.786667pt;}
.yb9{bottom:370.146667pt;}
.yd0{bottom:373.506667pt;}
.y77{bottom:373.986667pt;}
.y48{bottom:375.586667pt;}
.yff{bottom:376.226667pt;}
.y20{bottom:381.506667pt;}
.yb8{bottom:388.866667pt;}
.ycf{bottom:392.226667pt;}
.y76{bottom:392.706667pt;}
.y47{bottom:394.306667pt;}
.yfe{bottom:394.946667pt;}
.y1f{bottom:400.226667pt;}
.yb7{bottom:407.586667pt;}
.yce{bottom:410.946667pt;}
.y75{bottom:411.426667pt;}
.y46{bottom:413.026667pt;}
.yfd{bottom:413.666667pt;}
.y1e{bottom:418.946667pt;}
.ycd{bottom:429.666667pt;}
.y74{bottom:430.146667pt;}
.yb6{bottom:431.266667pt;}
.y45{bottom:431.746667pt;}
.yfc{bottom:432.386667pt;}
.y1d{bottom:437.666667pt;}
.ycc{bottom:448.386667pt;}
.y73{bottom:448.866667pt;}
.yb5{bottom:449.986667pt;}
.y44{bottom:450.466667pt;}
.y1c{bottom:456.386667pt;}
.yfb{bottom:459.106667pt;}
.ycb{bottom:467.106667pt;}
.yb4{bottom:468.706667pt;}
.y43{bottom:469.186667pt;}
.y1b{bottom:475.106667pt;}
.yfa{bottom:477.826667pt;}
.y72{bottom:481.346667pt;}
.yca{bottom:485.826667pt;}
.yb3{bottom:487.426667pt;}
.y42{bottom:487.906667pt;}
.y1a{bottom:493.826667pt;}
.yf9{bottom:496.546667pt;}
.y71{bottom:502.786667pt;}
.yc9{bottom:504.546667pt;}
.yb2{bottom:506.146667pt;}
.y41{bottom:506.626667pt;}
.y19{bottom:512.546667pt;}
.yf8{bottom:515.266667pt;}
.y70{bottom:521.506667pt;}
.yc8{bottom:523.266667pt;}
.yb1{bottom:524.706667pt;}
.y40{bottom:525.346667pt;}
.y18{bottom:531.266667pt;}
.yf7{bottom:533.986667pt;}
.y6f{bottom:540.226667pt;}
.yb0{bottom:543.426667pt;}
.y3f{bottom:544.066667pt;}
.y9b{bottom:549.986667pt;}
.yf6{bottom:552.706667pt;}
.y6e{bottom:558.946667pt;}
.yaf{bottom:562.146667pt;}
.y3e{bottom:562.786667pt;}
.y9a{bottom:568.706667pt;}
.y17{bottom:570.786667pt;}
.yf5{bottom:571.426667pt;}
.yae{bottom:580.893333pt;}
.y3d{bottom:581.533333pt;}
.y99{bottom:587.453333pt;}
.yf4{bottom:590.173333pt;}
.y6d{bottom:591.453333pt;}
.y16{bottom:597.373333pt;}
.yad{bottom:599.613333pt;}
.y3c{bottom:600.253333pt;}
.y98{bottom:606.173333pt;}
.yf3{bottom:608.893333pt;}
.y6c{bottom:612.893333pt;}
.y15{bottom:616.093333pt;}
.yac{bottom:618.333333pt;}
.y3b{bottom:618.973333pt;}
.y97{bottom:624.893333pt;}
.yf2{bottom:627.613333pt;}
.y6b{bottom:631.613333pt;}
.y14{bottom:634.813333pt;}
.yab{bottom:637.053333pt;}
.y3a{bottom:637.693333pt;}
.y96{bottom:643.613333pt;}
.yf1{bottom:646.333333pt;}
.y6a{bottom:650.333333pt;}
.y13{bottom:653.533333pt;}
.yaa{bottom:655.773333pt;}
.y39{bottom:656.413333pt;}
.y95{bottom:662.333333pt;}
.yf0{bottom:664.893333pt;}
.y69{bottom:669.053333pt;}
.y12{bottom:672.253333pt;}
.ya9{bottom:674.493333pt;}
.y38{bottom:675.133333pt;}
.y94{bottom:680.893333pt;}
.yef{bottom:683.613333pt;}
.y68{bottom:687.773333pt;}
.ya8{bottom:688.093333pt;}
.y11{bottom:690.973333pt;}
.y37{bottom:693.853333pt;}
.y93{bottom:699.613333pt;}
.y67{bottom:706.493333pt;}
.ya7{bottom:706.813333pt;}
.y10{bottom:709.693333pt;}
.yee{bottom:710.333333pt;}
.y36{bottom:712.573333pt;}
.y92{bottom:718.333333pt;}
.y66{bottom:725.213333pt;}
.ya6{bottom:726.173333pt;}
.yf{bottom:728.413333pt;}
.yed{bottom:729.053333pt;}
.y35{bottom:731.293333pt;}
.y91{bottom:737.053333pt;}
.y65{bottom:743.933333pt;}
.ya5{bottom:744.893333pt;}
.ye{bottom:747.133333pt;}
.yec{bottom:747.773333pt;}
.y34{bottom:750.013333pt;}
.y90{bottom:755.773333pt;}
.ya4{bottom:763.613333pt;}
.yeb{bottom:766.493333pt;}
.yd{bottom:767.773333pt;}
.y33{bottom:768.733333pt;}
.y8f{bottom:774.493333pt;}
.y64{bottom:776.413333pt;}
.ya3{bottom:782.333333pt;}
.yea{bottom:785.213333pt;}
.yc{bottom:786.493333pt;}
.y32{bottom:787.453333pt;}
.y8e{bottom:793.213333pt;}
.y63{bottom:797.053333pt;}
.ya2{bottom:801.093333pt;}
.y31{bottom:802.693333pt;}
.ye9{bottom:803.973333pt;}
.yb{bottom:809.893333pt;}
.y8d{bottom:811.973333pt;}
.y62{bottom:815.813333pt;}
.ya0{bottom:820.453333pt;}
.ye8{bottom:822.693333pt;}
.ya{bottom:824.773333pt;}
.y8c{bottom:830.693333pt;}
.y61{bottom:834.533333pt;}
.ye7{bottom:841.413333pt;}
.y9{bottom:844.613333pt;}
.y9f{bottom:845.733333pt;}
.y8b{bottom:849.413333pt;}
.y60{bottom:853.253333pt;}
.ye6{bottom:860.133333pt;}
.y9e{bottom:864.453333pt;}
.y8{bottom:867.013333pt;}
.y8a{bottom:868.133333pt;}
.y5f{bottom:871.973333pt;}
.ye5{bottom:878.853333pt;}
.y89{bottom:886.853333pt;}
.y9d{bottom:887.013333pt;}
.y5e{bottom:890.693333pt;}
.y7{bottom:896.933333pt;}
.ye4{bottom:897.573333pt;}
.y88{bottom:905.573333pt;}
.ye3{bottom:916.293333pt;}
.y5d{bottom:921.253333pt;}
.y87{bottom:924.293333pt;}
.y5{bottom:932.613333pt;}
.ye2{bottom:935.013333pt;}
.y5c{bottom:943.013333pt;}
.ye1{bottom:953.733333pt;}
.y4{bottom:961.253333pt;}
.y5b{bottom:961.733333pt;}
.ye0{bottom:972.453333pt;}
.y5a{bottom:980.453333pt;}
.y3{bottom:989.893333pt;}
.y59{bottom:999.173333pt;}
.y58{bottom:1017.893333pt;}
.y2{bottom:1018.373333pt;}
.y30{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y2f{bottom:1060.640000pt;}
.hb{height:18.720000pt;}
.hc{height:18.752000pt;}
.h7{height:34.374375pt;}
.h9{height:40.514375pt;}
.ha{height:46.454062pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:56.640000pt;}
.wb{width:56.672000pt;}
.w7{width:56.960000pt;}
.wd{width:56.992000pt;}
.wc{width:60.000000pt;}
.w5{width:60.032000pt;}
.w6{width:63.360000pt;}
.we{width:97.120000pt;}
.w8{width:97.152000pt;}
.w3{width:169.786667pt;}
.wa{width:266.746667pt;}
.w9{width:334.146667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x6{left:47.999988pt;}
.xe{left:62.399988pt;}
.x7{left:67.199988pt;}
.x20{left:71.999988pt;}
.x18{left:86.431988pt;}
.x1a{left:96.512000pt;}
.xc{left:133.626655pt;}
.x5{left:139.066655pt;}
.x17{left:144.026655pt;}
.x10{left:144.986667pt;}
.xb{left:187.226655pt;}
.xa{left:210.426655pt;}
.x8{left:222.266655pt;}
.x9{left:228.826655pt;}
.xd{left:237.666655pt;}
.x3{left:254.786655pt;}
.x2{left:311.586655pt;}
.x12{left:314.786667pt;}
.x1b{left:363.266667pt;}
.xf{left:364.866655pt;}
.x13{left:371.426667pt;}
.x4{left:372.546655pt;}
.x1c{left:419.933333pt;}
.x1{left:426.013322pt;}
.x14{left:431.453333pt;}
.x1d{left:479.933333pt;}
.x15{left:494.813333pt;}
.x1e{left:543.293333pt;}
.x16{left:551.773333pt;}
.x1f{left:600.293333pt;}
.x19{left:708.933322pt;}
.x21{left:745.279988pt;}
}




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