
    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_787cadb662675de72c443bf5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.783203;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_5174a144dadbbe5c97a4910e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_92f7ed0622c075d2196317fd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3eda68fbca025407b245920a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_2d89b5f8c0bfc5365073cfd5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.703613;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_d2d1f84e04fe7d3f18a5a7c5.woff')format("woff");}.ff6{font-family:ff6;line-height:0.752441;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_cc893eefc86933afe9005a4d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2a87032b606279e62a41b411.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_cd8e7bfcc605c241845928b0.woff')format("woff");}.ff9{font-family:ff9;line-height:0.783203;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_d4297d24e56f3e46c6fcaaaf.woff')format("woff");}.ffa{font-family:ffa;line-height:0.927734;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_abe2e69e273286a7a72150df.woff')format("woff");}.ffb{font-family:ffb;line-height:0.928223;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_c5b576d67d3264077932fb80.woff')format("woff");}.ffc{font-family:ffc;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_47b049d41e8eaa35a6264dc5.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7e70a7e96185d48c5550c325.woff')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_752e3cd37830ff2eb39f609b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d8c05b8fb8c5b370e23646e2.woff')format("woff");}.ff11{font-family:ff11;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_aeb4958c1cede83994ed0db6.woff')format("woff");}.ff12{font-family:ff12;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls6{letter-spacing:-5.256000px;}
.ls11{letter-spacing:-5.040000px;}
.ls10{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000001px;}
.ls2{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.260000px;}
.ls0{letter-spacing:1.368000px;}
.ls5{letter-spacing:7.320000px;}
.lsf{letter-spacing:33.984000px;}
.ls7{letter-spacing:64.026720px;}
.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;}
}
.ws1{word-spacing:-95.760000px;}
.ws9{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws4{word-spacing:-21.060000px;}
.wse{word-spacing:-18.648000px;}
.ws8{word-spacing:-18.288000px;}
.wsb{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.wsa{word-spacing:-18.000001px;}
.ws3{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws0{word-spacing:-13.860000px;}
.wsd{word-spacing:-12.960000px;}
.ws2{word-spacing:0.000000px;}
._27{margin-left:-9.552000px;}
._8{margin-left:-8.255520px;}
._1{margin-left:-6.408000px;}
._a{margin-left:-5.102640px;}
._b{margin-left:-3.834720px;}
._2{margin-left:-2.760000px;}
._0{margin-left:-1.296000px;}
._3{width:1.080000px;}
._4{width:2.232000px;}
._6{width:3.276000px;}
._5{width:4.296000px;}
._10{width:5.760000px;}
._7{width:6.852000px;}
._9{width:8.253120px;}
._12{width:9.288000px;}
._c{width:10.656000px;}
._11{width:11.664000px;}
._15{width:12.888000px;}
._17{width:13.968000px;}
._14{width:15.396000px;}
._13{width:16.920000px;}
._23{width:19.944000px;}
._16{width:21.384000px;}
._e{width:22.896000px;}
._d{width:24.624000px;}
._f{width:26.700000px;}
._26{width:27.828000px;}
._21{width:29.808000px;}
._1b{width:31.536000px;}
._1e{width:32.760000px;}
._1c{width:33.902640px;}
._1d{width:35.166720px;}
._22{width:36.730560px;}
._2a{width:37.768320px;}
._28{width:39.014640px;}
._29{width:40.060080px;}
._18{width:42.024000px;}
._1a{width:43.967520px;}
._19{width:45.096000px;}
._20{width:48.096000px;}
._1f{width:49.176000px;}
._2b{width:54.360000px;}
._24{width:61.776000px;}
._25{width:62.856000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,176,240);}
.fc7{color:rgb(5,99,193);}
.fc2{color:rgb(50,62,79);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(100,100,100);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs6{font-size:144.000000px;}
.y1c{bottom:-18.180000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.411000px;}
.y28{bottom:3.420000px;}
.y4{bottom:3.591000px;}
.y26{bottom:3.600000px;}
.y11c{bottom:4.125000px;}
.y12c{bottom:4.140000px;}
.y12e{bottom:4.185000px;}
.y14b{bottom:4.305000px;}
.y121{bottom:4.485000px;}
.y12a{bottom:4.500000px;}
.y12d{bottom:4.545000px;}
.y11e{bottom:5.025000px;}
.yc{bottom:5.391000px;}
.y18{bottom:9.540000px;}
.y59{bottom:10.845000px;}
.y13e{bottom:13.680000px;}
.y122{bottom:14.745000px;}
.y140{bottom:15.660000px;}
.y142{bottom:17.820000px;}
.y16{bottom:19.785000px;}
.yb{bottom:21.411000px;}
.y11a{bottom:24.825000px;}
.y120{bottom:25.185000px;}
.y1b{bottom:37.440000px;}
.y15{bottom:41.205000px;}
.ya{bottom:42.651000px;}
.y11b{bottom:45.525000px;}
.y22{bottom:50.415000px;}
.y24{bottom:57.060000px;}
.y2{bottom:57.096000px;}
.y14{bottom:61.950000px;}
.y9{bottom:62.865000px;}
.y1a{bottom:65.160000px;}
.y25{bottom:68.940000px;}
.y3{bottom:68.985000px;}
.y21{bottom:69.135000px;}
.y27{bottom:71.100000px;}
.y5{bottom:71.145000px;}
.y23{bottom:72.540000px;}
.y1{bottom:72.576000px;}
.y13{bottom:82.290000px;}
.y20{bottom:91.815000px;}
.ye9{bottom:115.020000px;}
.ybc{bottom:117.360000px;}
.y10b{bottom:119.700000px;}
.y1f{bottom:120.255000px;}
.y77{bottom:120.420000px;}
.y153{bottom:120.780000px;}
.y12{bottom:121.350000px;}
.y19e{bottom:121.860000px;}
.y57{bottom:123.120000px;}
.y1b8{bottom:124.200000px;}
.y128{bottom:129.240000px;}
.y177{bottom:130.680000px;}
.y94{bottom:132.300000px;}
.ye8{bottom:135.720000px;}
.ybb{bottom:138.060000px;}
.y10a{bottom:140.400000px;}
.y76{bottom:141.120000px;}
.y152{bottom:141.480000px;}
.y11{bottom:142.050000px;}
.y19d{bottom:142.560000px;}
.y56{bottom:143.820000px;}
.y1b7{bottom:144.900000px;}
.y127{bottom:149.940000px;}
.y1e{bottom:151.215000px;}
.y93{bottom:153.000000px;}
.y176{bottom:154.440000px;}
.y15b{bottom:156.060000px;}
.ye7{bottom:156.420000px;}
.yba{bottom:158.400000px;}
.y109{bottom:161.100000px;}
.y75{bottom:161.820000px;}
.y151{bottom:162.180000px;}
.y10{bottom:162.390000px;}
.y19c{bottom:163.260000px;}
.y55{bottom:164.520000px;}
.y1b6{bottom:165.600000px;}
.y126{bottom:170.670000px;}
.y92{bottom:173.730000px;}
.ye6{bottom:177.150000px;}
.y175{bottom:178.410000px;}
.yb9{bottom:179.130000px;}
.yd{bottom:179.505000px;}
.y108{bottom:181.830000px;}
.y74{bottom:182.550000px;}
.y150{bottom:182.910000px;}
.y19b{bottom:183.990000px;}
.y54{bottom:185.250000px;}
.y1b5{bottom:186.330000px;}
.y125{bottom:187.605000px;}
.y91{bottom:194.430000px;}
.ye5{bottom:197.850000px;}
.yb8{bottom:200.190000px;}
.yf{bottom:201.450000px;}
.y174{bottom:202.350000px;}
.y107{bottom:202.530000px;}
.y73{bottom:203.250000px;}
.y14f{bottom:203.610000px;}
.y19a{bottom:204.690000px;}
.y53{bottom:205.950000px;}
.y1b4{bottom:207.030000px;}
.y124{bottom:209.385000px;}
.ye4{bottom:218.550000px;}
.yb7{bottom:220.890000px;}
.ye{bottom:221.790000px;}
.y106{bottom:223.230000px;}
.y90{bottom:223.770000px;}
.y72{bottom:223.950000px;}
.y14e{bottom:224.310000px;}
.y199{bottom:225.390000px;}
.y173{bottom:226.470000px;}
.y1b3{bottom:227.730000px;}
.y123{bottom:231.165000px;}
.ye3{bottom:239.250000px;}
.y14d{bottom:241.245000px;}
.yb6{bottom:241.590000px;}
.y105{bottom:243.570000px;}
.y52{bottom:244.650000px;}
.y198{bottom:246.090000px;}
.y1b2{bottom:248.430000px;}
.y11f{bottom:252.945000px;}
.y8f{bottom:253.470000px;}
.ye2{bottom:259.950000px;}
.yb5{bottom:261.930000px;}
.y172{bottom:262.470000px;}
.y14c{bottom:263.025000px;}
.y104{bottom:264.270000px;}
.y51{bottom:265.350000px;}
.y197{bottom:266.790000px;}
.y1b1{bottom:269.130000px;}
.y8e{bottom:274.530000px;}
.ye1{bottom:280.650000px;}
.yb4{bottom:282.630000px;}
.y14a{bottom:284.805000px;}
.y103{bottom:285.330000px;}
.y50{bottom:286.050000px;}
.y171{bottom:286.410000px;}
.y196{bottom:287.490000px;}
.y1b0{bottom:289.830000px;}
.y11d{bottom:294.345000px;}
.y8d{bottom:295.230000px;}
.ye0{bottom:301.350000px;}
.yb3{bottom:303.690000px;}
.y102{bottom:306.030000px;}
.y149{bottom:306.405000px;}
.y4f{bottom:306.750000px;}
.y195{bottom:308.190000px;}
.y170{bottom:310.350000px;}
.y1af{bottom:310.530000px;}
.y8c{bottom:315.930000px;}
.y119{bottom:316.845000px;}
.ydf{bottom:322.050000px;}
.yb2{bottom:324.390000px;}
.y101{bottom:326.730000px;}
.y4e{bottom:327.450000px;}
.y194{bottom:328.890000px;}
.y148{bottom:328.905000px;}
.y1ae{bottom:331.230000px;}
.y16f{bottom:334.290000px;}
.y8b{bottom:336.630000px;}
.yde{bottom:342.750000px;}
.yb1{bottom:345.090000px;}
.y100{bottom:347.430000px;}
.y4d{bottom:348.150000px;}
.y193{bottom:349.590000px;}
.y1ad{bottom:351.930000px;}
.y147{bottom:355.890000px;}
.y8a{bottom:357.330000px;}
.y16e{bottom:358.230000px;}
.ydd{bottom:363.450000px;}
.yb0{bottom:365.790000px;}
.yff{bottom:368.130000px;}
.y4c{bottom:368.850000px;}
.y192{bottom:370.290000px;}
.y1ac{bottom:372.630000px;}
.y146{bottom:376.590000px;}
.y89{bottom:378.030000px;}
.y16d{bottom:382.170000px;}
.ydc{bottom:383.790000px;}
.y118{bottom:384.150000px;}
.yaf{bottom:386.130000px;}
.yfe{bottom:388.830000px;}
.y71{bottom:389.550000px;}
.y191{bottom:390.990000px;}
.y1ab{bottom:393.330000px;}
.y145{bottom:397.290000px;}
.y88{bottom:398.730000px;}
.ydb{bottom:404.490000px;}
.y117{bottom:404.850000px;}
.y16c{bottom:406.290000px;}
.yae{bottom:406.830000px;}
.y4b{bottom:407.550000px;}
.y70{bottom:410.250000px;}
.y190{bottom:411.330000px;}
.y1aa{bottom:414.075000px;}
.y144{bottom:417.675000px;}
.y87{bottom:419.475000px;}
.yfd{bottom:424.695000px;}
.yda{bottom:425.595000px;}
.yad{bottom:427.935000px;}
.y4a{bottom:428.295000px;}
.y6f{bottom:430.995000px;}
.y1a9{bottom:434.775000px;}
.y143{bottom:438.375000px;}
.y86{bottom:440.175000px;}
.y16b{bottom:442.335000px;}
.yd9{bottom:446.295000px;}
.y18f{bottom:447.555000px;}
.yac{bottom:448.635000px;}
.y49{bottom:448.995000px;}
.y19{bottom:450.825000px;}
.y6e{bottom:451.695000px;}
.y1a8{bottom:455.475000px;}
.y141{bottom:455.655000px;}
.y85{bottom:460.875000px;}
.y16a{bottom:466.275000px;}
.yd8{bottom:466.995000px;}
.yab{bottom:469.335000px;}
.y48{bottom:469.695000px;}
.y18e{bottom:471.495000px;}
.y6d{bottom:472.395000px;}
.yfc{bottom:472.575000px;}
.y1a7{bottom:476.175000px;}
.y84{bottom:481.575000px;}
.yd7{bottom:487.695000px;}
.yaa{bottom:489.675000px;}
.y169{bottom:490.215000px;}
.y47{bottom:490.395000px;}
.y6c{bottom:493.095000px;}
.y18d{bottom:495.435000px;}
.yfb{bottom:496.515000px;}
.y1a6{bottom:496.875000px;}
.y83{bottom:502.275000px;}
.y13f{bottom:502.995000px;}
.yd6{bottom:508.395000px;}
.ya9{bottom:510.375000px;}
.y46{bottom:511.095000px;}
.y6b{bottom:513.795000px;}
.y168{bottom:514.155000px;}
.y1a5{bottom:517.575000px;}
.y82{bottom:522.975000px;}
.yd5{bottom:529.095000px;}
.ya8{bottom:531.435000px;}
.y18c{bottom:531.615000px;}
.y45{bottom:531.795000px;}
.yfa{bottom:532.695000px;}
.y167{bottom:538.095000px;}
.y1a4{bottom:538.275000px;}
.y6a{bottom:543.135000px;}
.y81{bottom:543.675000px;}
.y13d{bottom:546.915000px;}
.yd4{bottom:549.795000px;}
.ya7{bottom:552.135000px;}
.y44{bottom:552.495000px;}
.y18b{bottom:555.375000px;}
.yf9{bottom:556.455000px;}
.y166{bottom:558.975000px;}
.y80{bottom:564.375000px;}
.yd3{bottom:570.495000px;}
.y69{bottom:572.835000px;}
.y43{bottom:573.195000px;}
.y165{bottom:579.315000px;}
.y1a3{bottom:579.675000px;}
.yf8{bottom:580.395000px;}
.y7f{bottom:585.075000px;}
.y15a{bottom:590.835000px;}
.yd2{bottom:591.195000px;}
.y13c{bottom:591.915000px;}
.ya6{bottom:593.175000px;}
.y42{bottom:593.895000px;}
.y164{bottom:600.015000px;}
.y18a{bottom:600.195000px;}
.y1a2{bottom:600.375000px;}
.yf7{bottom:604.515000px;}
.y7e{bottom:605.775000px;}
.yd1{bottom:611.895000px;}
.y13b{bottom:612.615000px;}
.ya5{bottom:613.875000px;}
.y41{bottom:614.595000px;}
.y163{bottom:621.075000px;}
.y7d{bottom:626.475000px;}
.yd0{bottom:632.595000px;}
.y13a{bottom:633.315000px;}
.ya4{bottom:634.935000px;}
.y40{bottom:635.295000px;}
.y189{bottom:636.195000px;}
.yf6{bottom:640.515000px;}
.y1d{bottom:641.115000px;}
.y162{bottom:641.775000px;}
.y7c{bottom:647.175000px;}
.ycf{bottom:652.935000px;}
.y116{bottom:653.295000px;}
.y139{bottom:654.015000px;}
.ya3{bottom:655.635000px;}
.y68{bottom:655.995000px;}
.y188{bottom:659.985000px;}
.y161{bottom:662.505000px;}
.yf5{bottom:664.485000px;}
.y3f{bottom:664.665000px;}
.yce{bottom:673.665000px;}
.y115{bottom:674.025000px;}
.y138{bottom:674.745000px;}
.ya2{bottom:676.365000px;}
.y7b{bottom:676.545000px;}
.y67{bottom:676.725000px;}
.y160{bottom:683.205000px;}
.y187{bottom:683.925000px;}
.y3e{bottom:685.905000px;}
.yf4{bottom:688.425000px;}
.ycd{bottom:694.725000px;}
.y137{bottom:695.445000px;}
.ya1{bottom:697.065000px;}
.y66{bottom:697.425000px;}
.y8{bottom:703.050000px;}
.y15f{bottom:703.905000px;}
.y7a{bottom:706.245000px;}
.y3d{bottom:706.605000px;}
.y186{bottom:707.865000px;}
.yf3{bottom:712.365000px;}
.ycc{bottom:715.425000px;}
.y136{bottom:716.145000px;}
.y15e{bottom:724.605000px;}
.ya0{bottom:726.405000px;}
.y65{bottom:726.765000px;}
.y3c{bottom:727.305000px;}
.y114{bottom:735.765000px;}
.ycb{bottom:736.125000px;}
.y135{bottom:736.845000px;}
.y7{bottom:741.750000px;}
.y185{bottom:744.045000px;}
.y15d{bottom:745.305000px;}
.y3b{bottom:747.645000px;}
.y64{bottom:748.005000px;}
.yf2{bottom:748.545000px;}
.yca{bottom:756.825000px;}
.y134{bottom:757.545000px;}
.y9f{bottom:762.585000px;}
.y113{bottom:765.465000px;}
.y15c{bottom:765.645000px;}
.y1a1{bottom:766.005000px;}
.y184{bottom:767.985000px;}
.y3a{bottom:768.705000px;}
.yf1{bottom:772.305000px;}
.yc9{bottom:777.525000px;}
.y133{bottom:777.885000px;}
.y9e{bottom:786.525000px;}
.y112{bottom:786.705000px;}
.y39{bottom:789.405000px;}
.y183{bottom:791.925000px;}
.yf0{bottom:796.245000px;}
.yc8{bottom:798.225000px;}
.y132{bottom:798.945000px;}
.y111{bottom:807.405000px;}
.y38{bottom:810.105000px;}
.y9d{bottom:810.465000px;}
.y182{bottom:815.865000px;}
.yc7{bottom:818.925000px;}
.y131{bottom:819.645000px;}
.yef{bottom:820.185000px;}
.y110{bottom:828.105000px;}
.y37{bottom:830.805000px;}
.y9c{bottom:834.405000px;}
.y130{bottom:836.565000px;}
.y159{bottom:839.265000px;}
.yc6{bottom:839.625000px;}
.y181{bottom:839.805000px;}
.y17{bottom:843.300000px;}
.yee{bottom:844.305000px;}
.y1a0{bottom:848.445000px;}
.y10f{bottom:848.805000px;}
.y36{bottom:851.505000px;}
.y9b{bottom:858.345000px;}
.y158{bottom:859.965000px;}
.yc5{bottom:860.325000px;}
.y180{bottom:860.685000px;}
.y19f{bottom:869.145000px;}
.y10e{bottom:869.505000px;}
.y35{bottom:872.205000px;}
.y12f{bottom:879.960000px;}
.yed{bottom:880.305000px;}
.yc4{bottom:881.025000px;}
.y9a{bottom:882.285000px;}
.y10d{bottom:890.205000px;}
.y34{bottom:892.905000px;}
.y17f{bottom:896.685000px;}
.yc3{bottom:901.725000px;}
.yec{bottom:904.290000px;}
.y10c{bottom:910.950000px;}
.y33{bottom:913.650000px;}
.y99{bottom:918.510000px;}
.y17e{bottom:920.490000px;}
.yc2{bottom:922.470000px;}
.y12b{bottom:923.550000px;}
.yeb{bottom:928.230000px;}
.y63{bottom:931.650000px;}
.y32{bottom:934.350000px;}
.y98{bottom:942.270000px;}
.yc1{bottom:943.170000px;}
.y17d{bottom:944.430000px;}
.y129{bottom:946.050000px;}
.yea{bottom:952.170000px;}
.y62{bottom:952.350000px;}
.y31{bottom:955.050000px;}
.yc0{bottom:963.510000px;}
.y157{bottom:963.870000px;}
.y97{bottom:966.390000px;}
.y61{bottom:973.050000px;}
.y30{bottom:975.750000px;}
.y17c{bottom:980.610000px;}
.y156{bottom:984.570000px;}
.y96{bottom:990.330000px;}
.ybf{bottom:993.210000px;}
.y60{bottom:993.750000px;}
.y2f{bottom:996.450000px;}
.y17b{bottom:1004.370000px;}
.y155{bottom:1005.270000px;}
.y95{bottom:1014.270000px;}
.y5f{bottom:1014.450000px;}
.y2e{bottom:1017.150000px;}
.y17a{bottom:1028.490000px;}
.y154{bottom:1034.610000px;}
.y5e{bottom:1035.150000px;}
.y2d{bottom:1037.850000px;}
.y179{bottom:1052.430000px;}
.y5d{bottom:1055.850000px;}
.y2c{bottom:1058.550000px;}
.y178{bottom:1076.370000px;}
.y5c{bottom:1076.550000px;}
.y2b{bottom:1079.250000px;}
.ybe{bottom:1096.890000px;}
.y5b{bottom:1097.250000px;}
.y2a{bottom:1099.950000px;}
.y79{bottom:1108.590000px;}
.ybd{bottom:1117.590000px;}
.y5a{bottom:1117.950000px;}
.y78{bottom:1138.290000px;}
.y29{bottom:1138.650000px;}
.y58{bottom:1145.835000px;}
.h5{height:15.660000px;}
.h4{height:17.820000px;}
.h28{height:21.585000px;}
.h23{height:21.600000px;}
.h20{height:21.765000px;}
.h24{height:21.780000px;}
.h22{height:21.802500px;}
.h9{height:30.912187px;}
.hd{height:34.920000px;}
.h1b{height:38.025000px;}
.h25{height:39.765000px;}
.h21{height:41.385000px;}
.h26{height:43.185000px;}
.h2{height:46.074727px;}
.h27{height:47.325000px;}
.h8{height:49.746094px;}
.h1d{height:50.800781px;}
.h16{height:51.328125px;}
.h3{height:52.998047px;}
.h2a{height:59.343750px;}
.h7{height:61.020000px;}
.h1e{height:62.085000px;}
.h17{height:62.184375px;}
.h1a{height:64.546875px;}
.h11{height:64.948711px;}
.h15{height:68.266406px;}
.h1f{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h29{height:74.004654px;}
.h1c{height:74.953125px;}
.he{height:84.898125px;}
.h10{height:85.847344px;}
.hf{height:87.480000px;}
.h14{height:93.983203px;}
.hc{height:96.508125px;}
.h13{height:102.656250px;}
.h12{height:185.625000px;}
.ha{height:244.155000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.h18{height:1262.880000px;}
.h19{height:1263.000000px;}
.wb{width:9.540000px;}
.w2{width:9.585000px;}
.w3{width:13.725000px;}
.wc{width:20.340000px;}
.w10{width:47.685000px;}
.w16{width:47.700000px;}
.w14{width:47.721000px;}
.w17{width:47.736000px;}
.w15{width:53.280000px;}
.wf{width:57.276000px;}
.w1e{width:77.925000px;}
.w1d{width:77.976000px;}
.w12{width:78.321000px;}
.w13{width:86.211000px;}
.w11{width:87.285000px;}
.w18{width:101.331000px;}
.w1b{width:101.511000px;}
.w19{width:119.181000px;}
.w1a{width:121.716000px;}
.w1f{width:147.801000px;}
.wd{width:178.245000px;}
.w1c{width:215.835000px;}
.w6{width:264.465000px;}
.we{width:304.761000px;}
.w4{width:416.220000px;}
.w8{width:546.015000px;}
.w5{width:622.185000px;}
.w7{width:746.550000px;}
.w9{width:892.980000px;}
.wa{width:893.250000px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:8.091000px;}
.x2{left:10.836000px;}
.x22{left:13.680000px;}
.x21{left:17.085000px;}
.x27{left:24.660000px;}
.x2b{left:29.160000px;}
.x1c{left:30.600000px;}
.xd{left:31.860000px;}
.x4{left:37.080000px;}
.x17{left:38.730000px;}
.x16{left:40.140000px;}
.xa{left:42.465000px;}
.x5{left:59.940000px;}
.x1{left:108.000000px;}
.xb{left:135.036000px;}
.x7{left:136.650000px;}
.xe{left:162.030000px;}
.x9{left:184.185000px;}
.xf{left:189.030000px;}
.x18{left:221.265000px;}
.x23{left:236.385000px;}
.x6{left:247.005000px;}
.x19{left:268.965000px;}
.x1a{left:316.695000px;}
.x24{left:355.575000px;}
.xc{left:356.655000px;}
.x1b{left:369.975000px;}
.x8{left:373.200000px;}
.x25{left:403.275000px;}
.x1d{left:417.675000px;}
.x11{left:439.815000px;}
.x26{left:450.975000px;}
.x28{left:452.415000px;}
.x1e{left:465.375000px;}
.x12{left:497.100000px;}
.x1f{left:513.120000px;}
.x3{left:518.295000px;}
.x29{left:530.400000px;}
.x13{left:544.800000px;}
.x20{left:560.820000px;}
.x14{left:592.500000px;}
.x2a{left:608.340000px;}
.x15{left:679.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-4.672000pt;}
.ls11{letter-spacing:-4.480000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.120000pt;}
.ls0{letter-spacing:1.216000pt;}
.ls5{letter-spacing:6.506667pt;}
.lsf{letter-spacing:30.208000pt;}
.ls7{letter-spacing:56.912640pt;}
.ws1{word-spacing:-85.120000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws4{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.576000pt;}
.ws8{word-spacing:-16.256000pt;}
.wsb{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsa{word-spacing:-16.000001pt;}
.ws3{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws0{word-spacing:-12.320000pt;}
.wsd{word-spacing:-11.520000pt;}
.ws2{word-spacing:0.000000pt;}
._27{margin-left:-8.490667pt;}
._8{margin-left:-7.338240pt;}
._1{margin-left:-5.696000pt;}
._a{margin-left:-4.535680pt;}
._b{margin-left:-3.408640pt;}
._2{margin-left:-2.453333pt;}
._0{margin-left:-1.152000pt;}
._3{width:0.960000pt;}
._4{width:1.984000pt;}
._6{width:2.912000pt;}
._5{width:3.818667pt;}
._10{width:5.120000pt;}
._7{width:6.090667pt;}
._9{width:7.336107pt;}
._12{width:8.256000pt;}
._c{width:9.472000pt;}
._11{width:10.368000pt;}
._15{width:11.456000pt;}
._17{width:12.416000pt;}
._14{width:13.685333pt;}
._13{width:15.040000pt;}
._23{width:17.728000pt;}
._16{width:19.008000pt;}
._e{width:20.352000pt;}
._d{width:21.888000pt;}
._f{width:23.733333pt;}
._26{width:24.736000pt;}
._21{width:26.496000pt;}
._1b{width:28.032000pt;}
._1e{width:29.120000pt;}
._1c{width:30.135680pt;}
._1d{width:31.259307pt;}
._22{width:32.649387pt;}
._2a{width:33.571840pt;}
._28{width:34.679680pt;}
._29{width:35.608960pt;}
._18{width:37.354667pt;}
._1a{width:39.082240pt;}
._19{width:40.085333pt;}
._20{width:42.752000pt;}
._1f{width:43.712000pt;}
._2b{width:48.320000pt;}
._24{width:54.912000pt;}
._25{width:55.872000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs6{font-size:128.000000pt;}
.y1c{bottom:-16.160000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.032000pt;}
.y28{bottom:3.040000pt;}
.y4{bottom:3.192000pt;}
.y26{bottom:3.200000pt;}
.y11c{bottom:3.666667pt;}
.y12c{bottom:3.680000pt;}
.y12e{bottom:3.720000pt;}
.y14b{bottom:3.826667pt;}
.y121{bottom:3.986667pt;}
.y12a{bottom:4.000000pt;}
.y12d{bottom:4.040000pt;}
.y11e{bottom:4.466667pt;}
.yc{bottom:4.792000pt;}
.y18{bottom:8.480000pt;}
.y59{bottom:9.640000pt;}
.y13e{bottom:12.160000pt;}
.y122{bottom:13.106667pt;}
.y140{bottom:13.920000pt;}
.y142{bottom:15.840000pt;}
.y16{bottom:17.586667pt;}
.yb{bottom:19.032000pt;}
.y11a{bottom:22.066667pt;}
.y120{bottom:22.386667pt;}
.y1b{bottom:33.280000pt;}
.y15{bottom:36.626667pt;}
.ya{bottom:37.912000pt;}
.y11b{bottom:40.466667pt;}
.y22{bottom:44.813333pt;}
.y24{bottom:50.720000pt;}
.y2{bottom:50.752000pt;}
.y14{bottom:55.066667pt;}
.y9{bottom:55.880000pt;}
.y1a{bottom:57.920000pt;}
.y25{bottom:61.280000pt;}
.y3{bottom:61.320000pt;}
.y21{bottom:61.453333pt;}
.y27{bottom:63.200000pt;}
.y5{bottom:63.240000pt;}
.y23{bottom:64.480000pt;}
.y1{bottom:64.512000pt;}
.y13{bottom:73.146667pt;}
.y20{bottom:81.613333pt;}
.ye9{bottom:102.240000pt;}
.ybc{bottom:104.320000pt;}
.y10b{bottom:106.400000pt;}
.y1f{bottom:106.893333pt;}
.y77{bottom:107.040000pt;}
.y153{bottom:107.360000pt;}
.y12{bottom:107.866667pt;}
.y19e{bottom:108.320000pt;}
.y57{bottom:109.440000pt;}
.y1b8{bottom:110.400000pt;}
.y128{bottom:114.880000pt;}
.y177{bottom:116.160000pt;}
.y94{bottom:117.600000pt;}
.ye8{bottom:120.640000pt;}
.ybb{bottom:122.720000pt;}
.y10a{bottom:124.800000pt;}
.y76{bottom:125.440000pt;}
.y152{bottom:125.760000pt;}
.y11{bottom:126.266667pt;}
.y19d{bottom:126.720000pt;}
.y56{bottom:127.840000pt;}
.y1b7{bottom:128.800000pt;}
.y127{bottom:133.280000pt;}
.y1e{bottom:134.413333pt;}
.y93{bottom:136.000000pt;}
.y176{bottom:137.280000pt;}
.y15b{bottom:138.720000pt;}
.ye7{bottom:139.040000pt;}
.yba{bottom:140.800000pt;}
.y109{bottom:143.200000pt;}
.y75{bottom:143.840000pt;}
.y151{bottom:144.160000pt;}
.y10{bottom:144.346667pt;}
.y19c{bottom:145.120000pt;}
.y55{bottom:146.240000pt;}
.y1b6{bottom:147.200000pt;}
.y126{bottom:151.706667pt;}
.y92{bottom:154.426667pt;}
.ye6{bottom:157.466667pt;}
.y175{bottom:158.586667pt;}
.yb9{bottom:159.226667pt;}
.yd{bottom:159.560000pt;}
.y108{bottom:161.626667pt;}
.y74{bottom:162.266667pt;}
.y150{bottom:162.586667pt;}
.y19b{bottom:163.546667pt;}
.y54{bottom:164.666667pt;}
.y1b5{bottom:165.626667pt;}
.y125{bottom:166.760000pt;}
.y91{bottom:172.826667pt;}
.ye5{bottom:175.866667pt;}
.yb8{bottom:177.946667pt;}
.yf{bottom:179.066667pt;}
.y174{bottom:179.866667pt;}
.y107{bottom:180.026667pt;}
.y73{bottom:180.666667pt;}
.y14f{bottom:180.986667pt;}
.y19a{bottom:181.946667pt;}
.y53{bottom:183.066667pt;}
.y1b4{bottom:184.026667pt;}
.y124{bottom:186.120000pt;}
.ye4{bottom:194.266667pt;}
.yb7{bottom:196.346667pt;}
.ye{bottom:197.146667pt;}
.y106{bottom:198.426667pt;}
.y90{bottom:198.906667pt;}
.y72{bottom:199.066667pt;}
.y14e{bottom:199.386667pt;}
.y199{bottom:200.346667pt;}
.y173{bottom:201.306667pt;}
.y1b3{bottom:202.426667pt;}
.y123{bottom:205.480000pt;}
.ye3{bottom:212.666667pt;}
.y14d{bottom:214.440000pt;}
.yb6{bottom:214.746667pt;}
.y105{bottom:216.506667pt;}
.y52{bottom:217.466667pt;}
.y198{bottom:218.746667pt;}
.y1b2{bottom:220.826667pt;}
.y11f{bottom:224.840000pt;}
.y8f{bottom:225.306667pt;}
.ye2{bottom:231.066667pt;}
.yb5{bottom:232.826667pt;}
.y172{bottom:233.306667pt;}
.y14c{bottom:233.800000pt;}
.y104{bottom:234.906667pt;}
.y51{bottom:235.866667pt;}
.y197{bottom:237.146667pt;}
.y1b1{bottom:239.226667pt;}
.y8e{bottom:244.026667pt;}
.ye1{bottom:249.466667pt;}
.yb4{bottom:251.226667pt;}
.y14a{bottom:253.160000pt;}
.y103{bottom:253.626667pt;}
.y50{bottom:254.266667pt;}
.y171{bottom:254.586667pt;}
.y196{bottom:255.546667pt;}
.y1b0{bottom:257.626667pt;}
.y11d{bottom:261.640000pt;}
.y8d{bottom:262.426667pt;}
.ye0{bottom:267.866667pt;}
.yb3{bottom:269.946667pt;}
.y102{bottom:272.026667pt;}
.y149{bottom:272.360000pt;}
.y4f{bottom:272.666667pt;}
.y195{bottom:273.946667pt;}
.y170{bottom:275.866667pt;}
.y1af{bottom:276.026667pt;}
.y8c{bottom:280.826667pt;}
.y119{bottom:281.640000pt;}
.ydf{bottom:286.266667pt;}
.yb2{bottom:288.346667pt;}
.y101{bottom:290.426667pt;}
.y4e{bottom:291.066667pt;}
.y194{bottom:292.346667pt;}
.y148{bottom:292.360000pt;}
.y1ae{bottom:294.426667pt;}
.y16f{bottom:297.146667pt;}
.y8b{bottom:299.226667pt;}
.yde{bottom:304.666667pt;}
.yb1{bottom:306.746667pt;}
.y100{bottom:308.826667pt;}
.y4d{bottom:309.466667pt;}
.y193{bottom:310.746667pt;}
.y1ad{bottom:312.826667pt;}
.y147{bottom:316.346667pt;}
.y8a{bottom:317.626667pt;}
.y16e{bottom:318.426667pt;}
.ydd{bottom:323.066667pt;}
.yb0{bottom:325.146667pt;}
.yff{bottom:327.226667pt;}
.y4c{bottom:327.866667pt;}
.y192{bottom:329.146667pt;}
.y1ac{bottom:331.226667pt;}
.y146{bottom:334.746667pt;}
.y89{bottom:336.026667pt;}
.y16d{bottom:339.706667pt;}
.ydc{bottom:341.146667pt;}
.y118{bottom:341.466667pt;}
.yaf{bottom:343.226667pt;}
.yfe{bottom:345.626667pt;}
.y71{bottom:346.266667pt;}
.y191{bottom:347.546667pt;}
.y1ab{bottom:349.626667pt;}
.y145{bottom:353.146667pt;}
.y88{bottom:354.426667pt;}
.ydb{bottom:359.546667pt;}
.y117{bottom:359.866667pt;}
.y16c{bottom:361.146667pt;}
.yae{bottom:361.626667pt;}
.y4b{bottom:362.266667pt;}
.y70{bottom:364.666667pt;}
.y190{bottom:365.626667pt;}
.y1aa{bottom:368.066667pt;}
.y144{bottom:371.266667pt;}
.y87{bottom:372.866667pt;}
.yfd{bottom:377.506667pt;}
.yda{bottom:378.306667pt;}
.yad{bottom:380.386667pt;}
.y4a{bottom:380.706667pt;}
.y6f{bottom:383.106667pt;}
.y1a9{bottom:386.466667pt;}
.y143{bottom:389.666667pt;}
.y86{bottom:391.266667pt;}
.y16b{bottom:393.186667pt;}
.yd9{bottom:396.706667pt;}
.y18f{bottom:397.826667pt;}
.yac{bottom:398.786667pt;}
.y49{bottom:399.106667pt;}
.y19{bottom:400.733333pt;}
.y6e{bottom:401.506667pt;}
.y1a8{bottom:404.866667pt;}
.y141{bottom:405.026667pt;}
.y85{bottom:409.666667pt;}
.y16a{bottom:414.466667pt;}
.yd8{bottom:415.106667pt;}
.yab{bottom:417.186667pt;}
.y48{bottom:417.506667pt;}
.y18e{bottom:419.106667pt;}
.y6d{bottom:419.906667pt;}
.yfc{bottom:420.066667pt;}
.y1a7{bottom:423.266667pt;}
.y84{bottom:428.066667pt;}
.yd7{bottom:433.506667pt;}
.yaa{bottom:435.266667pt;}
.y169{bottom:435.746667pt;}
.y47{bottom:435.906667pt;}
.y6c{bottom:438.306667pt;}
.y18d{bottom:440.386667pt;}
.yfb{bottom:441.346667pt;}
.y1a6{bottom:441.666667pt;}
.y83{bottom:446.466667pt;}
.y13f{bottom:447.106667pt;}
.yd6{bottom:451.906667pt;}
.ya9{bottom:453.666667pt;}
.y46{bottom:454.306667pt;}
.y6b{bottom:456.706667pt;}
.y168{bottom:457.026667pt;}
.y1a5{bottom:460.066667pt;}
.y82{bottom:464.866667pt;}
.yd5{bottom:470.306667pt;}
.ya8{bottom:472.386667pt;}
.y18c{bottom:472.546667pt;}
.y45{bottom:472.706667pt;}
.yfa{bottom:473.506667pt;}
.y167{bottom:478.306667pt;}
.y1a4{bottom:478.466667pt;}
.y6a{bottom:482.786667pt;}
.y81{bottom:483.266667pt;}
.y13d{bottom:486.146667pt;}
.yd4{bottom:488.706667pt;}
.ya7{bottom:490.786667pt;}
.y44{bottom:491.106667pt;}
.y18b{bottom:493.666667pt;}
.yf9{bottom:494.626667pt;}
.y166{bottom:496.866667pt;}
.y80{bottom:501.666667pt;}
.yd3{bottom:507.106667pt;}
.y69{bottom:509.186667pt;}
.y43{bottom:509.506667pt;}
.y165{bottom:514.946667pt;}
.y1a3{bottom:515.266667pt;}
.yf8{bottom:515.906667pt;}
.y7f{bottom:520.066667pt;}
.y15a{bottom:525.186667pt;}
.yd2{bottom:525.506667pt;}
.y13c{bottom:526.146667pt;}
.ya6{bottom:527.266667pt;}
.y42{bottom:527.906667pt;}
.y164{bottom:533.346667pt;}
.y18a{bottom:533.506667pt;}
.y1a2{bottom:533.666667pt;}
.yf7{bottom:537.346667pt;}
.y7e{bottom:538.466667pt;}
.yd1{bottom:543.906667pt;}
.y13b{bottom:544.546667pt;}
.ya5{bottom:545.666667pt;}
.y41{bottom:546.306667pt;}
.y163{bottom:552.066667pt;}
.y7d{bottom:556.866667pt;}
.yd0{bottom:562.306667pt;}
.y13a{bottom:562.946667pt;}
.ya4{bottom:564.386667pt;}
.y40{bottom:564.706667pt;}
.y189{bottom:565.506667pt;}
.yf6{bottom:569.346667pt;}
.y1d{bottom:569.880000pt;}
.y162{bottom:570.466667pt;}
.y7c{bottom:575.266667pt;}
.ycf{bottom:580.386667pt;}
.y116{bottom:580.706667pt;}
.y139{bottom:581.346667pt;}
.ya3{bottom:582.786667pt;}
.y68{bottom:583.106667pt;}
.y188{bottom:586.653333pt;}
.y161{bottom:588.893333pt;}
.yf5{bottom:590.653333pt;}
.y3f{bottom:590.813333pt;}
.yce{bottom:598.813333pt;}
.y115{bottom:599.133333pt;}
.y138{bottom:599.773333pt;}
.ya2{bottom:601.213333pt;}
.y7b{bottom:601.373333pt;}
.y67{bottom:601.533333pt;}
.y160{bottom:607.293333pt;}
.y187{bottom:607.933333pt;}
.y3e{bottom:609.693333pt;}
.yf4{bottom:611.933333pt;}
.ycd{bottom:617.533333pt;}
.y137{bottom:618.173333pt;}
.ya1{bottom:619.613333pt;}
.y66{bottom:619.933333pt;}
.y8{bottom:624.933333pt;}
.y15f{bottom:625.693333pt;}
.y7a{bottom:627.773333pt;}
.y3d{bottom:628.093333pt;}
.y186{bottom:629.213333pt;}
.yf3{bottom:633.213333pt;}
.ycc{bottom:635.933333pt;}
.y136{bottom:636.573333pt;}
.y15e{bottom:644.093333pt;}
.ya0{bottom:645.693333pt;}
.y65{bottom:646.013333pt;}
.y3c{bottom:646.493333pt;}
.y114{bottom:654.013333pt;}
.ycb{bottom:654.333333pt;}
.y135{bottom:654.973333pt;}
.y7{bottom:659.333333pt;}
.y185{bottom:661.373333pt;}
.y15d{bottom:662.493333pt;}
.y3b{bottom:664.573333pt;}
.y64{bottom:664.893333pt;}
.yf2{bottom:665.373333pt;}
.yca{bottom:672.733333pt;}
.y134{bottom:673.373333pt;}
.y9f{bottom:677.853333pt;}
.y113{bottom:680.413333pt;}
.y15c{bottom:680.573333pt;}
.y1a1{bottom:680.893333pt;}
.y184{bottom:682.653333pt;}
.y3a{bottom:683.293333pt;}
.yf1{bottom:686.493333pt;}
.yc9{bottom:691.133333pt;}
.y133{bottom:691.453333pt;}
.y9e{bottom:699.133333pt;}
.y112{bottom:699.293333pt;}
.y39{bottom:701.693333pt;}
.y183{bottom:703.933333pt;}
.yf0{bottom:707.773333pt;}
.yc8{bottom:709.533333pt;}
.y132{bottom:710.173333pt;}
.y111{bottom:717.693333pt;}
.y38{bottom:720.093333pt;}
.y9d{bottom:720.413333pt;}
.y182{bottom:725.213333pt;}
.yc7{bottom:727.933333pt;}
.y131{bottom:728.573333pt;}
.yef{bottom:729.053333pt;}
.y110{bottom:736.093333pt;}
.y37{bottom:738.493333pt;}
.y9c{bottom:741.693333pt;}
.y130{bottom:743.613333pt;}
.y159{bottom:746.013333pt;}
.yc6{bottom:746.333333pt;}
.y181{bottom:746.493333pt;}
.y17{bottom:749.600000pt;}
.yee{bottom:750.493333pt;}
.y1a0{bottom:754.173333pt;}
.y10f{bottom:754.493333pt;}
.y36{bottom:756.893333pt;}
.y9b{bottom:762.973333pt;}
.y158{bottom:764.413333pt;}
.yc5{bottom:764.733333pt;}
.y180{bottom:765.053333pt;}
.y19f{bottom:772.573333pt;}
.y10e{bottom:772.893333pt;}
.y35{bottom:775.293333pt;}
.y12f{bottom:782.186667pt;}
.yed{bottom:782.493333pt;}
.yc4{bottom:783.133333pt;}
.y9a{bottom:784.253333pt;}
.y10d{bottom:791.293333pt;}
.y34{bottom:793.693333pt;}
.y17f{bottom:797.053333pt;}
.yc3{bottom:801.533333pt;}
.yec{bottom:803.813333pt;}
.y10c{bottom:809.733333pt;}
.y33{bottom:812.133333pt;}
.y99{bottom:816.453333pt;}
.y17e{bottom:818.213333pt;}
.yc2{bottom:819.973333pt;}
.y12b{bottom:820.933333pt;}
.yeb{bottom:825.093333pt;}
.y63{bottom:828.133333pt;}
.y32{bottom:830.533333pt;}
.y98{bottom:837.573333pt;}
.yc1{bottom:838.373333pt;}
.y17d{bottom:839.493333pt;}
.y129{bottom:840.933333pt;}
.yea{bottom:846.373333pt;}
.y62{bottom:846.533333pt;}
.y31{bottom:848.933333pt;}
.yc0{bottom:856.453333pt;}
.y157{bottom:856.773333pt;}
.y97{bottom:859.013333pt;}
.y61{bottom:864.933333pt;}
.y30{bottom:867.333333pt;}
.y17c{bottom:871.653333pt;}
.y156{bottom:875.173333pt;}
.y96{bottom:880.293333pt;}
.ybf{bottom:882.853333pt;}
.y60{bottom:883.333333pt;}
.y2f{bottom:885.733333pt;}
.y17b{bottom:892.773333pt;}
.y155{bottom:893.573333pt;}
.y95{bottom:901.573333pt;}
.y5f{bottom:901.733333pt;}
.y2e{bottom:904.133333pt;}
.y17a{bottom:914.213333pt;}
.y154{bottom:919.653333pt;}
.y5e{bottom:920.133333pt;}
.y2d{bottom:922.533333pt;}
.y179{bottom:935.493333pt;}
.y5d{bottom:938.533333pt;}
.y2c{bottom:940.933333pt;}
.y178{bottom:956.773333pt;}
.y5c{bottom:956.933333pt;}
.y2b{bottom:959.333333pt;}
.ybe{bottom:975.013333pt;}
.y5b{bottom:975.333333pt;}
.y2a{bottom:977.733333pt;}
.y79{bottom:985.413333pt;}
.ybd{bottom:993.413333pt;}
.y5a{bottom:993.733333pt;}
.y78{bottom:1011.813333pt;}
.y29{bottom:1012.133333pt;}
.y58{bottom:1018.520000pt;}
.h5{height:13.920000pt;}
.h4{height:15.840000pt;}
.h28{height:19.186667pt;}
.h23{height:19.200000pt;}
.h20{height:19.346667pt;}
.h24{height:19.360000pt;}
.h22{height:19.380000pt;}
.h9{height:27.477500pt;}
.hd{height:31.040000pt;}
.h1b{height:33.800000pt;}
.h25{height:35.346667pt;}
.h21{height:36.786667pt;}
.h26{height:38.386667pt;}
.h2{height:40.955312pt;}
.h27{height:42.066667pt;}
.h8{height:44.218750pt;}
.h1d{height:45.156250pt;}
.h16{height:45.625000pt;}
.h3{height:47.109375pt;}
.h2a{height:52.750000pt;}
.h7{height:54.240000pt;}
.h1e{height:55.186667pt;}
.h17{height:55.275000pt;}
.h1a{height:57.375000pt;}
.h11{height:57.732187pt;}
.h15{height:60.681250pt;}
.h1f{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h29{height:65.781915pt;}
.h1c{height:66.625000pt;}
.he{height:75.465000pt;}
.h10{height:76.308750pt;}
.hf{height:77.760000pt;}
.h14{height:83.540625pt;}
.hc{height:85.785000pt;}
.h13{height:91.250000pt;}
.h12{height:165.000000pt;}
.ha{height:217.026667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.h18{height:1122.560000pt;}
.h19{height:1122.666667pt;}
.wb{width:8.480000pt;}
.w2{width:8.520000pt;}
.w3{width:12.200000pt;}
.wc{width:18.080000pt;}
.w10{width:42.386667pt;}
.w16{width:42.400000pt;}
.w14{width:42.418667pt;}
.w17{width:42.432000pt;}
.w15{width:47.360000pt;}
.wf{width:50.912000pt;}
.w1e{width:69.266667pt;}
.w1d{width:69.312000pt;}
.w12{width:69.618667pt;}
.w13{width:76.632000pt;}
.w11{width:77.586667pt;}
.w18{width:90.072000pt;}
.w1b{width:90.232000pt;}
.w19{width:105.938667pt;}
.w1a{width:108.192000pt;}
.w1f{width:131.378667pt;}
.wd{width:158.440000pt;}
.w1c{width:191.853333pt;}
.w6{width:235.080000pt;}
.we{width:270.898667pt;}
.w4{width:369.973333pt;}
.w8{width:485.346667pt;}
.w5{width:553.053333pt;}
.w7{width:663.600000pt;}
.w9{width:793.760000pt;}
.wa{width:794.000000pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:7.192000pt;}
.x2{left:9.632000pt;}
.x22{left:12.160000pt;}
.x21{left:15.186667pt;}
.x27{left:21.920000pt;}
.x2b{left:25.920000pt;}
.x1c{left:27.200000pt;}
.xd{left:28.320000pt;}
.x4{left:32.960000pt;}
.x17{left:34.426667pt;}
.x16{left:35.680000pt;}
.xa{left:37.746667pt;}
.x5{left:53.280000pt;}
.x1{left:96.000000pt;}
.xb{left:120.032000pt;}
.x7{left:121.466667pt;}
.xe{left:144.026667pt;}
.x9{left:163.720000pt;}
.xf{left:168.026667pt;}
.x18{left:196.680000pt;}
.x23{left:210.120000pt;}
.x6{left:219.560000pt;}
.x19{left:239.080000pt;}
.x1a{left:281.506667pt;}
.x24{left:316.066667pt;}
.xc{left:317.026667pt;}
.x1b{left:328.866667pt;}
.x8{left:331.733333pt;}
.x25{left:358.466667pt;}
.x1d{left:371.266667pt;}
.x11{left:390.946667pt;}
.x26{left:400.866667pt;}
.x28{left:402.146667pt;}
.x1e{left:413.666667pt;}
.x12{left:441.866667pt;}
.x1f{left:456.106667pt;}
.x3{left:460.706667pt;}
.x29{left:471.466667pt;}
.x13{left:484.266667pt;}
.x20{left:498.506667pt;}
.x14{left:526.666667pt;}
.x2a{left:540.746667pt;}
.x15{left:604.266667pt;}
}




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