
    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_843e9f8dd3ba3d5f0599076b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_10d4e6cc453b7377d7a99000.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_d26117eb1c3d946515dec274.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.971191;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_5573e87b3bb3ff3ee683d0ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.962402;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_7307c09949f6d7c3d8f7f920.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_01a3d05a1eccca9d8cbe7ab0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_a09f6468bf6627520e5720ee.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.892578;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_cf5b54b838ee9f69dcdff9c4.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_3cb426ce875f10dc118ed1c0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.853027;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls34{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.262200px;}
.ls27{letter-spacing:-0.085200px;}
.ls8{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.005040px;}
.ls22{letter-spacing:0.016560px;}
.ls32{letter-spacing:0.018000px;}
.ls15{letter-spacing:0.020880px;}
.ls1b{letter-spacing:0.031680px;}
.lsc{letter-spacing:0.053280px;}
.ls2b{letter-spacing:0.055200px;}
.ls14{letter-spacing:0.072720px;}
.ls13{letter-spacing:0.084240px;}
.ls28{letter-spacing:0.085200px;}
.ls29{letter-spacing:0.094320px;}
.ls23{letter-spacing:0.120000px;}
.ls1c{letter-spacing:0.136080px;}
.ls26{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.153360px;}
.ls16{letter-spacing:0.169920px;}
.lsa{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.192240px;}
.lsb{letter-spacing:0.206640px;}
.lsd{letter-spacing:0.236880px;}
.ls18{letter-spacing:0.259800px;}
.ls2a{letter-spacing:0.272880px;}
.ls25{letter-spacing:0.285120px;}
.ls31{letter-spacing:0.288000px;}
.ls1e{letter-spacing:0.310320px;}
.ls21{letter-spacing:0.349680px;}
.ls7{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.373680px;}
.ls19{letter-spacing:0.468000px;}
.ls11{letter-spacing:0.613440px;}
.ls2f{letter-spacing:0.720000px;}
.ls2{letter-spacing:5.911680px;}
.ls0{letter-spacing:6.070320px;}
.ls1{letter-spacing:6.140880px;}
.ls2c{letter-spacing:13.104000px;}
.ls20{letter-spacing:16.181280px;}
.ls1a{letter-spacing:30.456000px;}
.ls1f{letter-spacing:52.901280px;}
.ls1d{letter-spacing:54.864000px;}
.ls2e{letter-spacing:55.386720px;}
.ls30{letter-spacing:62.784000px;}
.ls2d{letter-spacing:64.026720px;}
.lse{letter-spacing:75.600000px;}
.ls9{letter-spacing:83.664000px;}
.lsf{letter-spacing:105.096000px;}
.ls3{letter-spacing:846.300000px;}
.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;}
}
.wse{word-spacing:-72.000000px;}
.ws14{word-spacing:-59.760000px;}
.wsb{word-spacing:-33.804000px;}
.ws11{word-spacing:-26.452320px;}
.ws12{word-spacing:-26.367120px;}
.wsc{word-spacing:-24.682320px;}
.wsf{word-spacing:-24.597120px;}
.ws13{word-spacing:-21.096000px;}
.ws4{word-spacing:-19.944000px;}
.ws0{word-spacing:-19.408320px;}
.wsa{word-spacing:-18.704880px;}
.wsd{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws17{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.509680px;}
.ws16{word-spacing:-16.297800px;}
.ws3{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws5{word-spacing:-15.120000px;}
.ws9{word-spacing:-15.099120px;}
.ws6{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.220000px;}
.ws7{word-spacing:-12.060000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-14.339520px;}
._13{margin-left:-12.765120px;}
._d{margin-left:-10.140000px;}
._14{margin-left:-7.740000px;}
._12{margin-left:-6.601680px;}
._e{margin-left:-5.315280px;}
._f{margin-left:-3.840000px;}
._10{margin-left:-2.721840px;}
._5{margin-left:-1.406160px;}
._7{width:1.127760px;}
._11{width:2.228880px;}
._6{width:3.482640px;}
._2{width:4.520880px;}
._0{width:5.574960px;}
._1{width:7.547520px;}
._8{width:9.472080px;}
._4{width:10.568160px;}
._3{width:11.843280px;}
._16{width:13.320000px;}
._17{width:14.520000px;}
._18{width:15.600240px;}
._19{width:16.632000px;}
._15{width:19.512000px;}
._a{width:20.822160px;}
._9{width:21.888000px;}
._1c{width:23.208240px;}
._1a{width:25.704000px;}
._1b{width:26.964240px;}
._1d{width:110.592000px;}
._b{width:846.300000px;}
.fc6{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,153);}
.fc5{color:transparent;}
.fc3{color:rgb(1,37,69);}
.fc1{color:rgb(0,88,164);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fsc{font-size:56.880000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fsa{font-size:88.795869px;}
.fsb{font-size:108.000000px;}
.fs5{font-size:156.240000px;}
.fs4{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.y9e{bottom:-21.600000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:4.500000px;}
.y8{bottom:11.700000px;}
.y27{bottom:12.600000px;}
.y24{bottom:13.500000px;}
.ye{bottom:14.400000px;}
.y13{bottom:14.580000px;}
.y2b{bottom:16.560000px;}
.y123{bottom:16.920000px;}
.y10{bottom:17.100000px;}
.y3c{bottom:17.460000px;}
.y16e{bottom:17.496000px;}
.y38{bottom:17.640000px;}
.ybc{bottom:17.814000px;}
.yc0{bottom:18.180000px;}
.yb1{bottom:18.360000px;}
.y28{bottom:19.800000px;}
.yb7{bottom:20.160000px;}
.y15{bottom:20.520000px;}
.y6{bottom:20.700000px;}
.y20{bottom:21.780000px;}
.yc5{bottom:22.680000px;}
.y11{bottom:23.220000px;}
.y3e{bottom:23.580000px;}
.y42{bottom:25.740000px;}
.yc7{bottom:26.820000px;}
.ybe{bottom:27.000000px;}
.y36{bottom:28.620000px;}
.yb4{bottom:28.800000px;}
.yc3{bottom:33.840000px;}
.y39{bottom:34.740000px;}
.y41{bottom:36.720000px;}
.y3b{bottom:39.780000px;}
.yb5{bottom:39.960000px;}
.y25{bottom:41.400000px;}
.y5{bottom:42.840000px;}
.yc4{bottom:45.000000px;}
.yc2{bottom:45.540000px;}
.y3d{bottom:45.900000px;}
.y37{bottom:51.840000px;}
.y3f{bottom:52.020000px;}
.y1f{bottom:56.025000px;}
.y2c{bottom:71.496000px;}
.y4{bottom:73.620000px;}
.y1e{bottom:78.525000px;}
.y2a{bottom:88.236000px;}
.y1d{bottom:100.845000px;}
.y16d{bottom:120.780000px;}
.y1c{bottom:123.165000px;}
.y3{bottom:127.440000px;}
.ye2{bottom:131.976000px;}
.ybb{bottom:138.276000px;}
.y14e{bottom:144.396000px;}
.y1b{bottom:145.305000px;}
.y185{bottom:150.150000px;}
.ye1{bottom:152.670000px;}
.y100{bottom:156.810000px;}
.y12b{bottom:165.270000px;}
.y14d{bottom:166.710000px;}
.y184{bottom:172.470000px;}
.ye0{bottom:173.370000px;}
.yba{bottom:179.130000px;}
.y22{bottom:186.330000px;}
.y9c{bottom:186.870000px;}
.y12a{bottom:187.590000px;}
.y14c{bottom:189.030000px;}
.ydf{bottom:194.070000px;}
.y183{bottom:194.790000px;}
.yff{bottom:201.450000px;}
.y129{bottom:210.090000px;}
.y14b{bottom:211.350000px;}
.yde{bottom:214.770000px;}
.y21{bottom:216.930000px;}
.y182{bottom:217.290000px;}
.yb9{bottom:219.450000px;}
.yfe{bottom:223.770000px;}
.y1a{bottom:230.970000px;}
.y128{bottom:233.130000px;}
.y14a{bottom:233.670000px;}
.ydd{bottom:235.470000px;}
.y82{bottom:239.250000px;}
.y181{bottom:239.610000px;}
.y149{bottom:255.990000px;}
.ydc{bottom:256.170000px;}
.yfd{bottom:258.150000px;}
.y81{bottom:261.570000px;}
.y180{bottom:261.930000px;}
.ydb{bottom:276.870000px;}
.y148{bottom:278.310000px;}
.yfc{bottom:280.470000px;}
.yb8{bottom:282.135000px;}
.y80{bottom:283.935000px;}
.y17f{bottom:284.295000px;}
.y127{bottom:286.815000px;}
.y13a{bottom:287.355000px;}
.yda{bottom:297.615000px;}
.y147{bottom:300.675000px;}
.y7f{bottom:306.255000px;}
.y19a{bottom:307.875000px;}
.y126{bottom:309.135000px;}
.y9f{bottom:310.755000px;}
.yfb{bottom:322.275000px;}
.y63{bottom:322.455000px;}
.y139{bottom:322.815000px;}
.y17e{bottom:323.355000px;}
.yb6{bottom:327.495000px;}
.y125{bottom:331.455000px;}
.y199{bottom:331.635000px;}
.y146{bottom:335.055000px;}
.yd9{bottom:340.995000px;}
.yfa{bottom:342.975000px;}
.y7e{bottom:344.955000px;}
.y198{bottom:355.395000px;}
.y145{bottom:357.375000px;}
.y62{bottom:361.155000px;}
.yd8{bottom:363.315000px;}
.yf9{bottom:363.675000px;}
.y186{bottom:365.475000px;}
.y124{bottom:365.835000px;}
.y7d{bottom:368.715000px;}
.yb3{bottom:372.855000px;}
.y122{bottom:379.515000px;}
.y144{bottom:379.695000px;}
.yf8{bottom:384.375000px;}
.yd7{bottom:385.635000px;}
.y197{bottom:391.215000px;}
.y7c{bottom:393.915000px;}
.y9b{bottom:395.355000px;}
.y61{bottom:395.535000px;}
.y19{bottom:398.415000px;}
.yf7{bottom:405.075000px;}
.yd6{bottom:408.495000px;}
.y121{bottom:413.355000px;}
.y143{bottom:414.075000px;}
.y196{bottom:414.975000px;}
.y17d{bottom:417.315000px;}
.y7b{bottom:417.675000px;}
.y60{bottom:429.735000px;}
.yb2{bottom:435.495000px;}
.y142{bottom:436.395000px;}
.y9a{bottom:439.995000px;}
.y7a{bottom:442.875000px;}
.y18{bottom:444.675000px;}
.yf6{bottom:448.275000px;}
.yd5{bottom:450.255000px;}
.y195{bottom:450.795000px;}
.y163{bottom:454.395000px;}
.y141{bottom:458.715000px;}
.y5f{bottom:460.515000px;}
.y99{bottom:462.315000px;}
.y17{bottom:462.495000px;}
.y120{bottom:465.015000px;}
.y79{bottom:466.455000px;}
.yf5{bottom:470.775000px;}
.yd4{bottom:472.575000px;}
.y16c{bottom:474.375000px;}
.y194{bottom:474.735000px;}
.yb0{bottom:475.815000px;}
.y162{bottom:476.715000px;}
.y140{bottom:481.035000px;}
.y98{bottom:484.635000px;}
.y11f{bottom:487.335000px;}
.y5e{bottom:489.675000px;}
.y78{bottom:491.655000px;}
.yd3{bottom:494.895000px;}
.y16b{bottom:496.695000px;}
.y193{bottom:497.055000px;}
.y161{bottom:499.215000px;}
.y16{bottom:502.995000px;}
.y13f{bottom:503.535000px;}
.yf4{bottom:504.975000px;}
.y114{bottom:507.855000px;}
.y11e{bottom:509.655000px;}
.y5d{bottom:517.215000px;}
.yd2{bottom:517.395000px;}
.y97{bottom:519.015000px;}
.y192{bottom:519.375000px;}
.y160{bottom:521.535000px;}
.yaf{bottom:526.575000px;}
.y77{bottom:527.295000px;}
.y113{bottom:530.175000px;}
.y11d{bottom:531.975000px;}
.yd1{bottom:539.715000px;}
.y96{bottom:541.335000px;}
.y191{bottom:541.695000px;}
.y13e{bottom:542.415000px;}
.y14{bottom:543.315000px;}
.y15f{bottom:543.855000px;}
.y5c{bottom:544.755000px;}
.y76{bottom:549.615000px;}
.yf3{bottom:549.795000px;}
.y112{bottom:552.495000px;}
.y16a{bottom:559.335000px;}
.y95{bottom:563.655000px;}
.y190{bottom:564.015000px;}
.y15e{bottom:566.205000px;}
.y11c{bottom:566.385000px;}
.y75{bottom:572.145000px;}
.y5b{bottom:572.505000px;}
.yf2{bottom:572.685000px;}
.yd0{bottom:573.945000px;}
.y17c{bottom:579.165000px;}
.yae{bottom:580.065000px;}
.y169{bottom:581.865000px;}
.y12{bottom:583.665000px;}
.y94{bottom:586.005000px;}
.y18f{bottom:586.365000px;}
.y111{bottom:586.905000px;}
.y11b{bottom:588.705000px;}
.y74{bottom:595.185000px;}
.ycf{bottom:596.265000px;}
.y5a{bottom:600.045000px;}
.y15d{bottom:600.585000px;}
.y13d{bottom:602.205000px;}
.yad{bottom:602.385000px;}
.y168{bottom:604.185000px;}
.y93{bottom:608.325000px;}
.y11a{bottom:611.025000px;}
.y17b{bottom:613.365000px;}
.yf1{bottom:614.445000px;}
.yce{bottom:618.765000px;}
.y18e{bottom:622.185000px;}
.y15c{bottom:622.905000px;}
.yf{bottom:623.985000px;}
.yac{bottom:624.705000px;}
.y110{bottom:625.605000px;}
.y167{bottom:627.225000px;}
.y43{bottom:627.585000px;}
.y59{bottom:627.765000px;}
.y119{bottom:633.345000px;}
.y17a{bottom:635.865000px;}
.yf0{bottom:636.765000px;}
.ycd{bottom:641.085000px;}
.y40{bottom:644.685000px;}
.y15b{bottom:645.225000px;}
.y92{bottom:645.765000px;}
.y18d{bottom:645.945000px;}
.y58{bottom:646.305000px;}
.yab{bottom:647.925000px;}
.y73{bottom:648.825000px;}
.y10f{bottom:650.625000px;}
.y118{bottom:655.665000px;}
.yef{bottom:659.085000px;}
.y13c{bottom:663.225000px;}
.ycc{bottom:664.125000px;}
.y57{bottom:664.845000px;}
.yd{bottom:669.525000px;}
.y179{bottom:670.065000px;}
.y72{bottom:671.145000px;}
.y10e{bottom:675.825000px;}
.y117{bottom:677.985000px;}
.y15a{bottom:679.605000px;}
.y166{bottom:680.865000px;}
.y18c{bottom:681.765000px;}
.y56{bottom:683.745000px;}
.y178{bottom:692.385000px;}
.y71{bottom:693.465000px;}
.y138{bottom:699.045000px;}
.y91{bottom:699.225000px;}
.yaa{bottom:701.565000px;}
.y159{bottom:701.925000px;}
.y55{bottom:703.365000px;}
.y18b{bottom:705.525000px;}
.ycb{bottom:706.425000px;}
.y3a{bottom:707.685000px;}
.y10d{bottom:711.465000px;}
.y116{bottom:712.545000px;}
.y177{bottom:714.705000px;}
.y165{bottom:715.245000px;}
.y70{bottom:715.785000px;}
.y137{bottom:721.365000px;}
.y90{bottom:721.545000px;}
.y54{bottom:722.985000px;}
.ya9{bottom:723.885000px;}
.y158{bottom:724.245000px;}
.y18a{bottom:729.465000px;}
.yca{bottom:733.785000px;}
.yc{bottom:734.505000px;}
.y6f{bottom:738.105000px;}
.y115{bottom:738.825000px;}
.y164{bottom:741.705000px;}
.y53{bottom:742.785000px;}
.y136{bottom:743.865000px;}
.y8f{bottom:744.045000px;}
.ya8{bottom:746.205000px;}
.y176{bottom:749.085000px;}
.y10c{bottom:756.105000px;}
.y157{bottom:758.445000px;}
.yee{bottom:761.145000px;}
.y52{bottom:762.405000px;}
.y135{bottom:766.185000px;}
.y8e{bottom:766.365000px;}
.y189{bottom:768.345000px;}
.ya7{bottom:768.525000px;}
.y175{bottom:771.405000px;}
.y6e{bottom:772.485000px;}
.y35{bottom:776.805000px;}
.y10b{bottom:778.605000px;}
.y156{bottom:780.945000px;}
.yb{bottom:781.485000px;}
.y51{bottom:782.205000px;}
.y134{bottom:788.505000px;}
.yc9{bottom:790.305000px;}
.ya6{bottom:791.565000px;}
.y174{bottom:793.725000px;}
.y6d{bottom:794.805000px;}
.y10a{bottom:800.925000px;}
.y50{bottom:801.825000px;}
.yed{bottom:802.725000px;}
.y155{bottom:803.265000px;}
.y8d{bottom:805.065000px;}
.y133{bottom:810.825000px;}
.y173{bottom:816.045000px;}
.y6c{bottom:817.125000px;}
.yec{bottom:825.225000px;}
.y154{bottom:825.585000px;}
.ya{bottom:828.645000px;}
.y8c{bottom:828.825000px;}
.y4f{bottom:830.445000px;}
.y188{bottom:832.785000px;}
.y132{bottom:833.145000px;}
.y172{bottom:838.545000px;}
.y6b{bottom:839.445000px;}
.yc8{bottom:841.245000px;}
.ya5{bottom:845.205000px;}
.yeb{bottom:847.590000px;}
.y34{bottom:847.770000px;}
.y153{bottom:847.950000px;}
.y109{bottom:850.290000px;}
.y8b{bottom:854.070000px;}
.yc6{bottom:858.930000px;}
.y4e{bottom:859.110000px;}
.y6a{bottom:861.810000px;}
.ya4{bottom:867.570000px;}
.y152{bottom:870.270000px;}
.y108{bottom:872.610000px;}
.y171{bottom:872.790000px;}
.y4d{bottom:877.650000px;}
.yea{bottom:881.790000px;}
.y69{bottom:884.850000px;}
.ya3{bottom:889.890000px;}
.y151{bottom:892.590000px;}
.y9{bottom:893.670000px;}
.y107{bottom:894.930000px;}
.y170{bottom:895.110000px;}
.y4c{bottom:896.370000px;}
.y8a{bottom:902.850000px;}
.y33{bottom:903.930000px;}
.ye9{bottom:904.110000px;}
.y131{bottom:909.150000px;}
.ya2{bottom:912.210000px;}
.y4b{bottom:914.910000px;}
.y106{bottom:917.250000px;}
.yc1{bottom:921.570000px;}
.y89{bottom:926.610000px;}
.y130{bottom:929.850000px;}
.y7{bottom:932.730000px;}
.y4a{bottom:933.450000px;}
.y16f{bottom:934.170000px;}
.ya1{bottom:935.250000px;}
.y150{bottom:937.230000px;}
.y32{bottom:938.490000px;}
.ye8{bottom:948.930000px;}
.y12f{bottom:950.550000px;}
.y105{bottom:951.630000px;}
.y88{bottom:951.810000px;}
.y187{bottom:959.550000px;}
.y68{bottom:960.810000px;}
.y49{bottom:961.350000px;}
.ye7{bottom:971.250000px;}
.y14f{bottom:971.610000px;}
.y31{bottom:972.870000px;}
.y104{bottom:973.950000px;}
.y87{bottom:975.570000px;}
.y67{bottom:983.130000px;}
.ya0{bottom:988.890000px;}
.y2{bottom:989.430000px;}
.y48{bottom:989.790000px;}
.ye6{bottom:993.570000px;}
.y12e{bottom:993.930000px;}
.ybf{bottom:994.290000px;}
.y103{bottom:996.270000px;}
.y66{bottom:1005.450000px;}
.y30{bottom:1006.170000px;}
.y47{bottom:1008.510000px;}
.y86{bottom:1011.210000px;}
.y12d{bottom:1016.250000px;}
.ye5{bottom:1016.610000px;}
.y102{bottom:1019.310000px;}
.y2f{bottom:1024.710000px;}
.y46{bottom:1027.050000px;}
.y65{bottom:1027.950000px;}
.y85{bottom:1033.530000px;}
.y12c{bottom:1038.570000px;}
.ybd{bottom:1039.650000px;}
.y45{bottom:1054.590000px;}
.y2e{bottom:1055.310000px;}
.y84{bottom:1056.030000px;}
.y101{bottom:1060.890000px;}
.ye4{bottom:1062.510000px;}
.y64{bottom:1072.950000px;}
.y13b{bottom:1078.890000px;}
.y83{bottom:1079.070000px;}
.y44{bottom:1083.030000px;}
.ye3{bottom:1083.210000px;}
.y2d{bottom:1085.910000px;}
.y29{bottom:1117.590000px;}
.y23{bottom:1135.080000px;}
.y1{bottom:1148.580000px;}
.y26{bottom:1175.940000px;}
.h24{height:30.420000px;}
.h1a{height:30.600000px;}
.h2c{height:32.400000px;}
.h2b{height:32.580000px;}
.h17{height:32.940000px;}
.h26{height:34.380000px;}
.h27{height:34.920000px;}
.h23{height:37.204102px;}
.h28{height:39.240000px;}
.h25{height:39.420000px;}
.h19{height:40.140000px;}
.ha{height:40.320000px;}
.he{height:40.356000px;}
.hf{height:40.500000px;}
.h4{height:41.291016px;}
.h11{height:41.400000px;}
.h18{height:43.246406px;}
.h2a{height:44.507812px;}
.hd{height:45.540000px;}
.h15{height:45.695391px;}
.h1e{height:48.166689px;}
.h10{height:49.809375px;}
.h16{height:50.650312px;}
.h13{height:53.573906px;}
.hb{height:54.140625px;}
.h6{height:55.054688px;}
.h7{height:56.700000px;}
.h1f{height:59.343750px;}
.h2{height:59.383125px;}
.h1d{height:62.640000px;}
.h9{height:64.413984px;}
.hc{height:64.546875px;}
.h29{height:66.600000px;}
.h20{height:67.897622px;}
.h1b{height:68.580000px;}
.h1c{height:68.760000px;}
.h14{height:73.800000px;}
.h21{height:82.582031px;}
.h8{height:119.468672px;}
.h22{height:123.876000px;}
.h3{height:145.656000px;}
.h5{height:146.996016px;}
.h12{height:165.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:62.460000px;}
.w15{width:62.496000px;}
.w13{width:63.180000px;}
.we{width:108.180000px;}
.wc{width:117.756000px;}
.wf{width:139.176000px;}
.w9{width:144.576000px;}
.w7{width:166.890000px;}
.w12{width:231.195000px;}
.wb{width:240.870000px;}
.wa{width:241.275000px;}
.w4{width:301.395000px;}
.wd{width:356.295000px;}
.w17{width:363.240000px;}
.w18{width:363.315000px;}
.w8{width:411.555000px;}
.w14{width:414.435000px;}
.w5{width:421.635000px;}
.w11{width:637.305000px;}
.w6{width:722.310000px;}
.w3{width:723.030000px;}
.w10{width:765.510000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x35{left:1.080000px;}
.xc{left:5.400000px;}
.xf{left:8.100000px;}
.x33{left:9.540000px;}
.x4a{left:10.656000px;}
.x4b{left:14.040000px;}
.x36{left:17.460000px;}
.x37{left:19.800000px;}
.x41{left:21.636000px;}
.x55{left:23.040000px;}
.x3a{left:24.480000px;}
.x3c{left:26.100000px;}
.x12{left:27.360000px;}
.x2b{left:42.480000px;}
.x15{left:53.325000px;}
.x31{left:59.976000px;}
.x53{left:75.315000px;}
.x5{left:80.490000px;}
.x2{left:84.960000px;}
.x30{left:88.380000px;}
.x17{left:93.780000px;}
.x1f{left:101.555987px;}
.x7{left:108.390000px;}
.x2a{left:111.995987px;}
.x56{left:113.795987px;}
.x20{left:117.935987px;}
.x2d{left:127.650000px;}
.x10{left:136.290000px;}
.x28{left:138.995987px;}
.x2f{left:149.625000px;}
.x6{left:151.770000px;}
.x13{left:154.665000px;}
.x3e{left:165.989987px;}
.x9{left:167.789987px;}
.x2e{left:170.670000px;}
.x21{left:183.989987px;}
.x3b{left:186.690000px;}
.x1{left:190.469987px;}
.x3f{left:192.989987px;}
.x39{left:195.690000px;}
.x38{left:197.670000px;}
.x19{left:201.465000px;}
.x1b{left:203.430000px;}
.x42{left:212.250000px;}
.x52{left:222.300000px;}
.xa{left:238.349987px;}
.x4f{left:241.589987px;}
.x11{left:251.850000px;}
.x43{left:275.430000px;}
.x4{left:277.635000px;}
.x23{left:300.674987px;}
.x51{left:309.134987px;}
.x4c{left:311.654987px;}
.xe{left:313.275000px;}
.x32{left:323.355000px;}
.x16{left:326.235000px;}
.x3d{left:332.894987px;}
.x44{left:338.835000px;}
.xb{left:343.334987px;}
.x1e{left:349.454987px;}
.x29{left:359.534987px;}
.x3{left:361.515000px;}
.x24{left:370.154987px;}
.x25{left:378.074987px;}
.xd{left:386.355000px;}
.x34{left:390.315000px;}
.x1a{left:392.474987px;}
.x45{left:402.015000px;}
.x27{left:432.434987px;}
.x8{left:446.474987px;}
.x46{left:465.195000px;}
.x26{left:496.004987px;}
.x22{left:501.584987px;}
.x47{left:528.405000px;}
.x4d{left:543.164987px;}
.x1c{left:560.085000px;}
.x18{left:567.105000px;}
.x48{left:591.765000px;}
.x50{left:598.784987px;}
.x2c{left:632.805000px;}
.x49{left:654.945000px;}
.x14{left:663.405000px;}
.x1d{left:668.445000px;}
.x54{left:683.024987px;}
.x40{left:721.409987px;}
.x4e{left:765.329987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.233067pt;}
.ls27{letter-spacing:-0.075733pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.004480pt;}
.ls22{letter-spacing:0.014720pt;}
.ls32{letter-spacing:0.016000pt;}
.ls15{letter-spacing:0.018560pt;}
.ls1b{letter-spacing:0.028160pt;}
.lsc{letter-spacing:0.047360pt;}
.ls2b{letter-spacing:0.049067pt;}
.ls14{letter-spacing:0.064640pt;}
.ls13{letter-spacing:0.074880pt;}
.ls28{letter-spacing:0.075733pt;}
.ls29{letter-spacing:0.083840pt;}
.ls23{letter-spacing:0.106667pt;}
.ls1c{letter-spacing:0.120960pt;}
.ls26{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.136320pt;}
.ls16{letter-spacing:0.151040pt;}
.lsa{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.170880pt;}
.lsb{letter-spacing:0.183680pt;}
.lsd{letter-spacing:0.210560pt;}
.ls18{letter-spacing:0.230933pt;}
.ls2a{letter-spacing:0.242560pt;}
.ls25{letter-spacing:0.253440pt;}
.ls31{letter-spacing:0.256000pt;}
.ls1e{letter-spacing:0.275840pt;}
.ls21{letter-spacing:0.310827pt;}
.ls7{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.332160pt;}
.ls19{letter-spacing:0.416000pt;}
.ls11{letter-spacing:0.545280pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls2{letter-spacing:5.254827pt;}
.ls0{letter-spacing:5.395840pt;}
.ls1{letter-spacing:5.458560pt;}
.ls2c{letter-spacing:11.648000pt;}
.ls20{letter-spacing:14.383360pt;}
.ls1a{letter-spacing:27.072000pt;}
.ls1f{letter-spacing:47.023360pt;}
.ls1d{letter-spacing:48.768000pt;}
.ls2e{letter-spacing:49.232640pt;}
.ls30{letter-spacing:55.808000pt;}
.ls2d{letter-spacing:56.912640pt;}
.lse{letter-spacing:67.200000pt;}
.ls9{letter-spacing:74.368000pt;}
.lsf{letter-spacing:93.418667pt;}
.ls3{letter-spacing:752.266667pt;}
.wse{word-spacing:-64.000000pt;}
.ws14{word-spacing:-53.120000pt;}
.wsb{word-spacing:-30.048000pt;}
.ws11{word-spacing:-23.513173pt;}
.ws12{word-spacing:-23.437440pt;}
.wsc{word-spacing:-21.939840pt;}
.wsf{word-spacing:-21.864107pt;}
.ws13{word-spacing:-18.752000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws0{word-spacing:-17.251840pt;}
.wsa{word-spacing:-16.626560pt;}
.wsd{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws17{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.564160pt;}
.ws16{word-spacing:-14.486933pt;}
.ws3{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws5{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.421440pt;}
.ws6{word-spacing:-13.280000pt;}
.ws15{word-spacing:-12.640000pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-12.746240pt;}
._13{margin-left:-11.346773pt;}
._d{margin-left:-9.013333pt;}
._14{margin-left:-6.880000pt;}
._12{margin-left:-5.868160pt;}
._e{margin-left:-4.724693pt;}
._f{margin-left:-3.413333pt;}
._10{margin-left:-2.419413pt;}
._5{margin-left:-1.249920pt;}
._7{width:1.002453pt;}
._11{width:1.981227pt;}
._6{width:3.095680pt;}
._2{width:4.018560pt;}
._0{width:4.955520pt;}
._1{width:6.708907pt;}
._8{width:8.419627pt;}
._4{width:9.393920pt;}
._3{width:10.527360pt;}
._16{width:11.840000pt;}
._17{width:12.906667pt;}
._18{width:13.866880pt;}
._19{width:14.784000pt;}
._15{width:17.344000pt;}
._a{width:18.508587pt;}
._9{width:19.456000pt;}
._1c{width:20.629547pt;}
._1a{width:22.848000pt;}
._1b{width:23.968213pt;}
._1d{width:98.304000pt;}
._b{width:752.266667pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fsc{font-size:50.560000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fsa{font-size:78.929661pt;}
.fsb{font-size:96.000000pt;}
.fs5{font-size:138.880000pt;}
.fs4{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.y9e{bottom:-19.200000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:4.000000pt;}
.y8{bottom:10.400000pt;}
.y27{bottom:11.200000pt;}
.y24{bottom:12.000000pt;}
.ye{bottom:12.800000pt;}
.y13{bottom:12.960000pt;}
.y2b{bottom:14.720000pt;}
.y123{bottom:15.040000pt;}
.y10{bottom:15.200000pt;}
.y3c{bottom:15.520000pt;}
.y16e{bottom:15.552000pt;}
.y38{bottom:15.680000pt;}
.ybc{bottom:15.834667pt;}
.yc0{bottom:16.160000pt;}
.yb1{bottom:16.320000pt;}
.y28{bottom:17.600000pt;}
.yb7{bottom:17.920000pt;}
.y15{bottom:18.240000pt;}
.y6{bottom:18.400000pt;}
.y20{bottom:19.360000pt;}
.yc5{bottom:20.160000pt;}
.y11{bottom:20.640000pt;}
.y3e{bottom:20.960000pt;}
.y42{bottom:22.880000pt;}
.yc7{bottom:23.840000pt;}
.ybe{bottom:24.000000pt;}
.y36{bottom:25.440000pt;}
.yb4{bottom:25.600000pt;}
.yc3{bottom:30.080000pt;}
.y39{bottom:30.880000pt;}
.y41{bottom:32.640000pt;}
.y3b{bottom:35.360000pt;}
.yb5{bottom:35.520000pt;}
.y25{bottom:36.800000pt;}
.y5{bottom:38.080000pt;}
.yc4{bottom:40.000000pt;}
.yc2{bottom:40.480000pt;}
.y3d{bottom:40.800000pt;}
.y37{bottom:46.080000pt;}
.y3f{bottom:46.240000pt;}
.y1f{bottom:49.800000pt;}
.y2c{bottom:63.552000pt;}
.y4{bottom:65.440000pt;}
.y1e{bottom:69.800000pt;}
.y2a{bottom:78.432000pt;}
.y1d{bottom:89.640000pt;}
.y16d{bottom:107.360000pt;}
.y1c{bottom:109.480000pt;}
.y3{bottom:113.280000pt;}
.ye2{bottom:117.312000pt;}
.ybb{bottom:122.912000pt;}
.y14e{bottom:128.352000pt;}
.y1b{bottom:129.160000pt;}
.y185{bottom:133.466667pt;}
.ye1{bottom:135.706667pt;}
.y100{bottom:139.386667pt;}
.y12b{bottom:146.906667pt;}
.y14d{bottom:148.186667pt;}
.y184{bottom:153.306667pt;}
.ye0{bottom:154.106667pt;}
.yba{bottom:159.226667pt;}
.y22{bottom:165.626667pt;}
.y9c{bottom:166.106667pt;}
.y12a{bottom:166.746667pt;}
.y14c{bottom:168.026667pt;}
.ydf{bottom:172.506667pt;}
.y183{bottom:173.146667pt;}
.yff{bottom:179.066667pt;}
.y129{bottom:186.746667pt;}
.y14b{bottom:187.866667pt;}
.yde{bottom:190.906667pt;}
.y21{bottom:192.826667pt;}
.y182{bottom:193.146667pt;}
.yb9{bottom:195.066667pt;}
.yfe{bottom:198.906667pt;}
.y1a{bottom:205.306667pt;}
.y128{bottom:207.226667pt;}
.y14a{bottom:207.706667pt;}
.ydd{bottom:209.306667pt;}
.y82{bottom:212.666667pt;}
.y181{bottom:212.986667pt;}
.y149{bottom:227.546667pt;}
.ydc{bottom:227.706667pt;}
.yfd{bottom:229.466667pt;}
.y81{bottom:232.506667pt;}
.y180{bottom:232.826667pt;}
.ydb{bottom:246.106667pt;}
.y148{bottom:247.386667pt;}
.yfc{bottom:249.306667pt;}
.yb8{bottom:250.786667pt;}
.y80{bottom:252.386667pt;}
.y17f{bottom:252.706667pt;}
.y127{bottom:254.946667pt;}
.y13a{bottom:255.426667pt;}
.yda{bottom:264.546667pt;}
.y147{bottom:267.266667pt;}
.y7f{bottom:272.226667pt;}
.y19a{bottom:273.666667pt;}
.y126{bottom:274.786667pt;}
.y9f{bottom:276.226667pt;}
.yfb{bottom:286.466667pt;}
.y63{bottom:286.626667pt;}
.y139{bottom:286.946667pt;}
.y17e{bottom:287.426667pt;}
.yb6{bottom:291.106667pt;}
.y125{bottom:294.626667pt;}
.y199{bottom:294.786667pt;}
.y146{bottom:297.826667pt;}
.yd9{bottom:303.106667pt;}
.yfa{bottom:304.866667pt;}
.y7e{bottom:306.626667pt;}
.y198{bottom:315.906667pt;}
.y145{bottom:317.666667pt;}
.y62{bottom:321.026667pt;}
.yd8{bottom:322.946667pt;}
.yf9{bottom:323.266667pt;}
.y186{bottom:324.866667pt;}
.y124{bottom:325.186667pt;}
.y7d{bottom:327.746667pt;}
.yb3{bottom:331.426667pt;}
.y122{bottom:337.346667pt;}
.y144{bottom:337.506667pt;}
.yf8{bottom:341.666667pt;}
.yd7{bottom:342.786667pt;}
.y197{bottom:347.746667pt;}
.y7c{bottom:350.146667pt;}
.y9b{bottom:351.426667pt;}
.y61{bottom:351.586667pt;}
.y19{bottom:354.146667pt;}
.yf7{bottom:360.066667pt;}
.yd6{bottom:363.106667pt;}
.y121{bottom:367.426667pt;}
.y143{bottom:368.066667pt;}
.y196{bottom:368.866667pt;}
.y17d{bottom:370.946667pt;}
.y7b{bottom:371.266667pt;}
.y60{bottom:381.986667pt;}
.yb2{bottom:387.106667pt;}
.y142{bottom:387.906667pt;}
.y9a{bottom:391.106667pt;}
.y7a{bottom:393.666667pt;}
.y18{bottom:395.266667pt;}
.yf6{bottom:398.466667pt;}
.yd5{bottom:400.226667pt;}
.y195{bottom:400.706667pt;}
.y163{bottom:403.906667pt;}
.y141{bottom:407.746667pt;}
.y5f{bottom:409.346667pt;}
.y99{bottom:410.946667pt;}
.y17{bottom:411.106667pt;}
.y120{bottom:413.346667pt;}
.y79{bottom:414.626667pt;}
.yf5{bottom:418.466667pt;}
.yd4{bottom:420.066667pt;}
.y16c{bottom:421.666667pt;}
.y194{bottom:421.986667pt;}
.yb0{bottom:422.946667pt;}
.y162{bottom:423.746667pt;}
.y140{bottom:427.586667pt;}
.y98{bottom:430.786667pt;}
.y11f{bottom:433.186667pt;}
.y5e{bottom:435.266667pt;}
.y78{bottom:437.026667pt;}
.yd3{bottom:439.906667pt;}
.y16b{bottom:441.506667pt;}
.y193{bottom:441.826667pt;}
.y161{bottom:443.746667pt;}
.y16{bottom:447.106667pt;}
.y13f{bottom:447.586667pt;}
.yf4{bottom:448.866667pt;}
.y114{bottom:451.426667pt;}
.y11e{bottom:453.026667pt;}
.y5d{bottom:459.746667pt;}
.yd2{bottom:459.906667pt;}
.y97{bottom:461.346667pt;}
.y192{bottom:461.666667pt;}
.y160{bottom:463.586667pt;}
.yaf{bottom:468.066667pt;}
.y77{bottom:468.706667pt;}
.y113{bottom:471.266667pt;}
.y11d{bottom:472.866667pt;}
.yd1{bottom:479.746667pt;}
.y96{bottom:481.186667pt;}
.y191{bottom:481.506667pt;}
.y13e{bottom:482.146667pt;}
.y14{bottom:482.946667pt;}
.y15f{bottom:483.426667pt;}
.y5c{bottom:484.226667pt;}
.y76{bottom:488.546667pt;}
.yf3{bottom:488.706667pt;}
.y112{bottom:491.106667pt;}
.y16a{bottom:497.186667pt;}
.y95{bottom:501.026667pt;}
.y190{bottom:501.346667pt;}
.y15e{bottom:503.293333pt;}
.y11c{bottom:503.453333pt;}
.y75{bottom:508.573333pt;}
.y5b{bottom:508.893333pt;}
.yf2{bottom:509.053333pt;}
.yd0{bottom:510.173333pt;}
.y17c{bottom:514.813333pt;}
.yae{bottom:515.613333pt;}
.y169{bottom:517.213333pt;}
.y12{bottom:518.813333pt;}
.y94{bottom:520.893333pt;}
.y18f{bottom:521.213333pt;}
.y111{bottom:521.693333pt;}
.y11b{bottom:523.293333pt;}
.y74{bottom:529.053333pt;}
.ycf{bottom:530.013333pt;}
.y5a{bottom:533.373333pt;}
.y15d{bottom:533.853333pt;}
.y13d{bottom:535.293333pt;}
.yad{bottom:535.453333pt;}
.y168{bottom:537.053333pt;}
.y93{bottom:540.733333pt;}
.y11a{bottom:543.133333pt;}
.y17b{bottom:545.213333pt;}
.yf1{bottom:546.173333pt;}
.yce{bottom:550.013333pt;}
.y18e{bottom:553.053333pt;}
.y15c{bottom:553.693333pt;}
.yf{bottom:554.653333pt;}
.yac{bottom:555.293333pt;}
.y110{bottom:556.093333pt;}
.y167{bottom:557.533333pt;}
.y43{bottom:557.853333pt;}
.y59{bottom:558.013333pt;}
.y119{bottom:562.973333pt;}
.y17a{bottom:565.213333pt;}
.yf0{bottom:566.013333pt;}
.ycd{bottom:569.853333pt;}
.y40{bottom:573.053333pt;}
.y15b{bottom:573.533333pt;}
.y92{bottom:574.013333pt;}
.y18d{bottom:574.173333pt;}
.y58{bottom:574.493333pt;}
.yab{bottom:575.933333pt;}
.y73{bottom:576.733333pt;}
.y10f{bottom:578.333333pt;}
.y118{bottom:582.813333pt;}
.yef{bottom:585.853333pt;}
.y13c{bottom:589.533333pt;}
.ycc{bottom:590.333333pt;}
.y57{bottom:590.973333pt;}
.yd{bottom:595.133333pt;}
.y179{bottom:595.613333pt;}
.y72{bottom:596.573333pt;}
.y10e{bottom:600.733333pt;}
.y117{bottom:602.653333pt;}
.y15a{bottom:604.093333pt;}
.y166{bottom:605.213333pt;}
.y18c{bottom:606.013333pt;}
.y56{bottom:607.773333pt;}
.y178{bottom:615.453333pt;}
.y71{bottom:616.413333pt;}
.y138{bottom:621.373333pt;}
.y91{bottom:621.533333pt;}
.yaa{bottom:623.613333pt;}
.y159{bottom:623.933333pt;}
.y55{bottom:625.213333pt;}
.y18b{bottom:627.133333pt;}
.ycb{bottom:627.933333pt;}
.y3a{bottom:629.053333pt;}
.y10d{bottom:632.413333pt;}
.y116{bottom:633.373333pt;}
.y177{bottom:635.293333pt;}
.y165{bottom:635.773333pt;}
.y70{bottom:636.253333pt;}
.y137{bottom:641.213333pt;}
.y90{bottom:641.373333pt;}
.y54{bottom:642.653333pt;}
.ya9{bottom:643.453333pt;}
.y158{bottom:643.773333pt;}
.y18a{bottom:648.413333pt;}
.yca{bottom:652.253333pt;}
.yc{bottom:652.893333pt;}
.y6f{bottom:656.093333pt;}
.y115{bottom:656.733333pt;}
.y164{bottom:659.293333pt;}
.y53{bottom:660.253333pt;}
.y136{bottom:661.213333pt;}
.y8f{bottom:661.373333pt;}
.ya8{bottom:663.293333pt;}
.y176{bottom:665.853333pt;}
.y10c{bottom:672.093333pt;}
.y157{bottom:674.173333pt;}
.yee{bottom:676.573333pt;}
.y52{bottom:677.693333pt;}
.y135{bottom:681.053333pt;}
.y8e{bottom:681.213333pt;}
.y189{bottom:682.973333pt;}
.ya7{bottom:683.133333pt;}
.y175{bottom:685.693333pt;}
.y6e{bottom:686.653333pt;}
.y35{bottom:690.493333pt;}
.y10b{bottom:692.093333pt;}
.y156{bottom:694.173333pt;}
.yb{bottom:694.653333pt;}
.y51{bottom:695.293333pt;}
.y134{bottom:700.893333pt;}
.yc9{bottom:702.493333pt;}
.ya6{bottom:703.613333pt;}
.y174{bottom:705.533333pt;}
.y6d{bottom:706.493333pt;}
.y10a{bottom:711.933333pt;}
.y50{bottom:712.733333pt;}
.yed{bottom:713.533333pt;}
.y155{bottom:714.013333pt;}
.y8d{bottom:715.613333pt;}
.y133{bottom:720.733333pt;}
.y173{bottom:725.373333pt;}
.y6c{bottom:726.333333pt;}
.yec{bottom:733.533333pt;}
.y154{bottom:733.853333pt;}
.ya{bottom:736.573333pt;}
.y8c{bottom:736.733333pt;}
.y4f{bottom:738.173333pt;}
.y188{bottom:740.253333pt;}
.y132{bottom:740.573333pt;}
.y172{bottom:745.373333pt;}
.y6b{bottom:746.173333pt;}
.yc8{bottom:747.773333pt;}
.ya5{bottom:751.293333pt;}
.yeb{bottom:753.413333pt;}
.y34{bottom:753.573333pt;}
.y153{bottom:753.733333pt;}
.y109{bottom:755.813333pt;}
.y8b{bottom:759.173333pt;}
.yc6{bottom:763.493333pt;}
.y4e{bottom:763.653333pt;}
.y6a{bottom:766.053333pt;}
.ya4{bottom:771.173333pt;}
.y152{bottom:773.573333pt;}
.y108{bottom:775.653333pt;}
.y171{bottom:775.813333pt;}
.y4d{bottom:780.133333pt;}
.yea{bottom:783.813333pt;}
.y69{bottom:786.533333pt;}
.ya3{bottom:791.013333pt;}
.y151{bottom:793.413333pt;}
.y9{bottom:794.373333pt;}
.y107{bottom:795.493333pt;}
.y170{bottom:795.653333pt;}
.y4c{bottom:796.773333pt;}
.y8a{bottom:802.533333pt;}
.y33{bottom:803.493333pt;}
.ye9{bottom:803.653333pt;}
.y131{bottom:808.133333pt;}
.ya2{bottom:810.853333pt;}
.y4b{bottom:813.253333pt;}
.y106{bottom:815.333333pt;}
.yc1{bottom:819.173333pt;}
.y89{bottom:823.653333pt;}
.y130{bottom:826.533333pt;}
.y7{bottom:829.093333pt;}
.y4a{bottom:829.733333pt;}
.y16f{bottom:830.373333pt;}
.ya1{bottom:831.333333pt;}
.y150{bottom:833.093333pt;}
.y32{bottom:834.213333pt;}
.ye8{bottom:843.493333pt;}
.y12f{bottom:844.933333pt;}
.y105{bottom:845.893333pt;}
.y88{bottom:846.053333pt;}
.y187{bottom:852.933333pt;}
.y68{bottom:854.053333pt;}
.y49{bottom:854.533333pt;}
.ye7{bottom:863.333333pt;}
.y14f{bottom:863.653333pt;}
.y31{bottom:864.773333pt;}
.y104{bottom:865.733333pt;}
.y87{bottom:867.173333pt;}
.y67{bottom:873.893333pt;}
.ya0{bottom:879.013333pt;}
.y2{bottom:879.493333pt;}
.y48{bottom:879.813333pt;}
.ye6{bottom:883.173333pt;}
.y12e{bottom:883.493333pt;}
.ybf{bottom:883.813333pt;}
.y103{bottom:885.573333pt;}
.y66{bottom:893.733333pt;}
.y30{bottom:894.373333pt;}
.y47{bottom:896.453333pt;}
.y86{bottom:898.853333pt;}
.y12d{bottom:903.333333pt;}
.ye5{bottom:903.653333pt;}
.y102{bottom:906.053333pt;}
.y2f{bottom:910.853333pt;}
.y46{bottom:912.933333pt;}
.y65{bottom:913.733333pt;}
.y85{bottom:918.693333pt;}
.y12c{bottom:923.173333pt;}
.ybd{bottom:924.133333pt;}
.y45{bottom:937.413333pt;}
.y2e{bottom:938.053333pt;}
.y84{bottom:938.693333pt;}
.y101{bottom:943.013333pt;}
.ye4{bottom:944.453333pt;}
.y64{bottom:953.733333pt;}
.y13b{bottom:959.013333pt;}
.y83{bottom:959.173333pt;}
.y44{bottom:962.693333pt;}
.ye3{bottom:962.853333pt;}
.y2d{bottom:965.253333pt;}
.y29{bottom:993.413333pt;}
.y23{bottom:1008.960000pt;}
.y1{bottom:1020.960000pt;}
.y26{bottom:1045.280000pt;}
.h24{height:27.040000pt;}
.h1a{height:27.200000pt;}
.h2c{height:28.800000pt;}
.h2b{height:28.960000pt;}
.h17{height:29.280000pt;}
.h26{height:30.560000pt;}
.h27{height:31.040000pt;}
.h23{height:33.070312pt;}
.h28{height:34.880000pt;}
.h25{height:35.040000pt;}
.h19{height:35.680000pt;}
.ha{height:35.840000pt;}
.he{height:35.872000pt;}
.hf{height:36.000000pt;}
.h4{height:36.703125pt;}
.h11{height:36.800000pt;}
.h18{height:38.441250pt;}
.h2a{height:39.562500pt;}
.hd{height:40.480000pt;}
.h15{height:40.618125pt;}
.h1e{height:42.814835pt;}
.h10{height:44.275000pt;}
.h16{height:45.022500pt;}
.h13{height:47.621250pt;}
.hb{height:48.125000pt;}
.h6{height:48.937500pt;}
.h7{height:50.400000pt;}
.h1f{height:52.750000pt;}
.h2{height:52.785000pt;}
.h1d{height:55.680000pt;}
.h9{height:57.256875pt;}
.hc{height:57.375000pt;}
.h29{height:59.200000pt;}
.h20{height:60.353442pt;}
.h1b{height:60.960000pt;}
.h1c{height:61.120000pt;}
.h14{height:65.600000pt;}
.h21{height:73.406250pt;}
.h8{height:106.194375pt;}
.h22{height:110.112000pt;}
.h3{height:129.472000pt;}
.h5{height:130.663125pt;}
.h12{height:146.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:55.520000pt;}
.w15{width:55.552000pt;}
.w13{width:56.160000pt;}
.we{width:96.160000pt;}
.wc{width:104.672000pt;}
.wf{width:123.712000pt;}
.w9{width:128.512000pt;}
.w7{width:148.346667pt;}
.w12{width:205.506667pt;}
.wb{width:214.106667pt;}
.wa{width:214.466667pt;}
.w4{width:267.906667pt;}
.wd{width:316.706667pt;}
.w17{width:322.880000pt;}
.w18{width:322.946667pt;}
.w8{width:365.826667pt;}
.w14{width:368.386667pt;}
.w5{width:374.786667pt;}
.w11{width:566.493333pt;}
.w6{width:642.053333pt;}
.w3{width:642.693333pt;}
.w10{width:680.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x35{left:0.960000pt;}
.xc{left:4.800000pt;}
.xf{left:7.200000pt;}
.x33{left:8.480000pt;}
.x4a{left:9.472000pt;}
.x4b{left:12.480000pt;}
.x36{left:15.520000pt;}
.x37{left:17.600000pt;}
.x41{left:19.232000pt;}
.x55{left:20.480000pt;}
.x3a{left:21.760000pt;}
.x3c{left:23.200000pt;}
.x12{left:24.320000pt;}
.x2b{left:37.760000pt;}
.x15{left:47.400000pt;}
.x31{left:53.312000pt;}
.x53{left:66.946667pt;}
.x5{left:71.546667pt;}
.x2{left:75.520000pt;}
.x30{left:78.560000pt;}
.x17{left:83.360000pt;}
.x1f{left:90.271988pt;}
.x7{left:96.346667pt;}
.x2a{left:99.551988pt;}
.x56{left:101.151988pt;}
.x20{left:104.831988pt;}
.x2d{left:113.466667pt;}
.x10{left:121.146667pt;}
.x28{left:123.551988pt;}
.x2f{left:133.000000pt;}
.x6{left:134.906667pt;}
.x13{left:137.480000pt;}
.x3e{left:147.546655pt;}
.x9{left:149.146655pt;}
.x2e{left:151.706667pt;}
.x21{left:163.546655pt;}
.x3b{left:165.946667pt;}
.x1{left:169.306655pt;}
.x3f{left:171.546655pt;}
.x39{left:173.946667pt;}
.x38{left:175.706667pt;}
.x19{left:179.080000pt;}
.x1b{left:180.826667pt;}
.x42{left:188.666667pt;}
.x52{left:197.600000pt;}
.xa{left:211.866655pt;}
.x4f{left:214.746655pt;}
.x11{left:223.866667pt;}
.x43{left:244.826667pt;}
.x4{left:246.786667pt;}
.x23{left:267.266655pt;}
.x51{left:274.786655pt;}
.x4c{left:277.026655pt;}
.xe{left:278.466667pt;}
.x32{left:287.426667pt;}
.x16{left:289.986667pt;}
.x3d{left:295.906655pt;}
.x44{left:301.186667pt;}
.xb{left:305.186655pt;}
.x1e{left:310.626655pt;}
.x29{left:319.586655pt;}
.x3{left:321.346667pt;}
.x24{left:329.026655pt;}
.x25{left:336.066655pt;}
.xd{left:343.426667pt;}
.x34{left:346.946667pt;}
.x1a{left:348.866655pt;}
.x45{left:357.346667pt;}
.x27{left:384.386655pt;}
.x8{left:396.866655pt;}
.x46{left:413.506667pt;}
.x26{left:440.893322pt;}
.x22{left:445.853322pt;}
.x47{left:469.693333pt;}
.x4d{left:482.813322pt;}
.x1c{left:497.853333pt;}
.x18{left:504.093333pt;}
.x48{left:526.013333pt;}
.x50{left:532.253322pt;}
.x2c{left:562.493333pt;}
.x49{left:582.173333pt;}
.x14{left:589.693333pt;}
.x1d{left:594.173333pt;}
.x54{left:607.133322pt;}
.x40{left:641.253322pt;}
.x4e{left:680.293322pt;}
}




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