
    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_be378f7e751ed242e1cc2234.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c7c2361fca784136a80b7d65.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0481cbb92eff10d1eaa72946.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_106e21a9b772d0de869a1ec7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.741211;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_8290928e15a3252a1f9837be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a43f9c8ba4161c0f93b6bf9e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_dd25b38bb2ca90d1f1217b18.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_58985701b4c755d552b4c977.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_0d2dd4c537a093aa4b1d94dd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_04dc23f665ec51099437da30.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0c6d21bbb2cf375fb9a4bdd5.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-2.700000px;}
.lse{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-1.980000px;}
.ls11{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.252000px;}
.lsa{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.223800px;}
.ls9{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.738000px;}
.ls1d{letter-spacing:0.900000px;}
.ls15{letter-spacing:3.780000px;}
.ls16{letter-spacing:5.940000px;}
.ls14{letter-spacing:9.540000px;}
.ls4{letter-spacing:10.944000px;}
.ls18{letter-spacing:11.700000px;}
.ls19{letter-spacing:36.180000px;}
.ls17{letter-spacing:46.980000px;}
.ls13{letter-spacing:52.668000px;}
.ls6{letter-spacing:64.026720px;}
.ls5{letter-spacing:64.170720px;}
.ls0{letter-spacing:1064.460000px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.wsa{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.226440px;}
.ws0{word-spacing:-14.970240px;}
.ws9{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.482000px;}
.ws10{word-spacing:-13.248000px;}
.wsc{word-spacing:-12.924000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.790600px;}
.wse{word-spacing:-11.700000px;}
.ws8{word-spacing:-9.540000px;}
.ws5{word-spacing:-9.000000px;}
.wsf{word-spacing:-0.054000px;}
.wsd{word-spacing:0.000000px;}
._3{margin-left:-9.700800px;}
._5{margin-left:-2.639520px;}
._1{margin-left:-1.192320px;}
._0{width:1.254960px;}
._d{width:2.272320px;}
._9{width:4.104000px;}
._a{width:5.171040px;}
._8{width:6.312960px;}
._b{width:7.668000px;}
._10{width:8.802000px;}
._4{width:10.695600px;}
._e{width:12.208320px;}
._c{width:15.327360px;}
._f{width:17.334000px;}
._15{width:18.649440px;}
._12{width:20.682000px;}
._2d{width:21.724560px;}
._13{width:22.734000px;}
._7{width:24.505920px;}
._6{width:25.650000px;}
._11{width:27.360720px;}
._18{width:28.836000px;}
._19{width:29.862000px;}
._14{width:31.536000px;}
._21{width:33.404400px;}
._26{width:34.863840px;}
._1e{width:36.806400px;}
._17{width:37.854000px;}
._1a{width:39.096000px;}
._2b{width:40.720320px;}
._25{width:41.742000px;}
._2f{width:43.057440px;}
._27{width:44.690400px;}
._1d{width:45.770400px;}
._16{width:47.606400px;}
._20{width:48.940320px;}
._28{width:51.138000px;}
._29{width:52.901040px;}
._1f{width:56.434320px;}
._30{width:57.561840px;}
._2c{width:59.520960px;}
._1b{width:61.106400px;}
._1c{width:62.856000px;}
._2a{width:65.480400px;}
._24{width:66.532320px;}
._31{width:72.144000px;}
._23{width:103.968000px;}
._2e{width:346.684320px;}
._2{width:391.237080px;}
._22{width:1108.566000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,72,124);}
.fc3{color:rgb(0,32,96);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fs9{font-size:18.000000px;}
.fs6{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:66.384000px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.780000px;}
.y29{bottom:4.500000px;}
.y99{bottom:5.220000px;}
.y9f{bottom:5.565000px;}
.y9c{bottom:5.580000px;}
.yf0{bottom:5.760000px;}
.yd8{bottom:7.200000px;}
.y28{bottom:20.520000px;}
.y25{bottom:20.880000px;}
.yec{bottom:23.040000px;}
.yef{bottom:23.220000px;}
.ya3{bottom:23.385000px;}
.yed{bottom:23.400000px;}
.y9e{bottom:23.430000px;}
.ya1{bottom:23.565000px;}
.y9b{bottom:23.580000px;}
.yd7{bottom:25.020000px;}
.yde{bottom:25.365000px;}
.yda{bottom:25.545000px;}
.ydc{bottom:26.445000px;}
.y24{bottom:38.160000px;}
.y5c{bottom:58.500000px;}
.y23{bottom:66.240000px;}
.y4{bottom:76.860000px;}
.y5b{bottom:77.220000px;}
.y22{bottom:84.240000px;}
.yb6{bottom:97.380000px;}
.y17{bottom:101.700000px;}
.y21{bottom:102.060000px;}
.y6{bottom:105.120000px;}
.y15d{bottom:108.360000px;}
.yaf{bottom:110.520000px;}
.yb5{bottom:115.380000px;}
.y20{bottom:119.880000px;}
.y58{bottom:124.020000px;}
.y16{bottom:124.560000px;}
.y15c{bottom:126.360000px;}
.yae{bottom:128.340000px;}
.y135{bottom:129.960000px;}
.yb4{bottom:133.200000px;}
.y10a{bottom:133.380000px;}
.y1f{bottom:137.700000px;}
.y57{bottom:141.840000px;}
.yad{bottom:146.340000px;}
.y15{bottom:147.240000px;}
.y134{bottom:147.960000px;}
.y41{bottom:151.020000px;}
.y109{bottom:151.200000px;}
.y1e{bottom:155.520000px;}
.y15b{bottom:155.700000px;}
.yb3{bottom:159.660000px;}
.yac{bottom:166.500000px;}
.y56{bottom:167.760000px;}
.y108{bottom:169.020000px;}
.y14{bottom:169.920000px;}
.y1d{bottom:173.565000px;}
.y15a{bottom:173.700000px;}
.y133{bottom:177.120000px;}
.y40{bottom:177.300000px;}
.yab{bottom:184.320000px;}
.yb2{bottom:186.840000px;}
.y1c{bottom:191.385000px;}
.y55{bottom:192.060000px;}
.y13{bottom:192.825000px;}
.y132{bottom:194.940000px;}
.y107{bottom:195.480000px;}
.y1a9{bottom:201.780000px;}
.yaa{bottom:202.320000px;}
.y159{bottom:202.860000px;}
.y3f{bottom:203.580000px;}
.yb1{bottom:204.660000px;}
.y1b{bottom:209.205000px;}
.y54{bottom:209.910000px;}
.y131{bottom:212.970000px;}
.y12{bottom:215.685000px;}
.ye3{bottom:217.470000px;}
.y158{bottom:220.890000px;}
.y3e{bottom:221.610000px;}
.ya9{bottom:222.510000px;}
.y106{bottom:222.690000px;}
.y1a{bottom:227.025000px;}
.y53{bottom:227.730000px;}
.y11{bottom:229.545000px;}
.y1a8{bottom:232.050000px;}
.ye2{bottom:235.290000px;}
.y181{bottom:236.370000px;}
.ya8{bottom:240.510000px;}
.y105{bottom:240.690000px;}
.y130{bottom:241.770000px;}
.y10{bottom:243.405000px;}
.y19{bottom:244.845000px;}
.y1a7{bottom:249.870000px;}
.y157{bottom:250.230000px;}
.y3d{bottom:250.410000px;}
.ye1{bottom:253.290000px;}
.y52{bottom:254.010000px;}
.y180{bottom:254.370000px;}
.ya7{bottom:258.330000px;}
.y18{bottom:262.845000px;}
.yf{bottom:265.905000px;}
.y1a6{bottom:267.690000px;}
.y12f{bottom:268.950000px;}
.y104{bottom:269.850000px;}
.ye0{bottom:271.110000px;}
.y51{bottom:271.830000px;}
.yb0{bottom:276.150000px;}
.y3c{bottom:277.770000px;}
.y156{bottom:279.570000px;}
.y17f{bottom:283.170000px;}
.ya6{bottom:284.790000px;}
.y1a5{bottom:285.510000px;}
.y103{bottom:287.850000px;}
.y50{bottom:289.830000px;}
.ydf{bottom:293.085000px;}
.y12e{bottom:295.410000px;}
.y3b{bottom:295.770000px;}
.y1a4{bottom:303.330000px;}
.y155{bottom:308.370000px;}
.y17e{bottom:310.530000px;}
.ya5{bottom:311.970000px;}
.y4f{bottom:316.110000px;}
.y102{bottom:316.830000px;}
.y1a3{bottom:321.150000px;}
.y12d{bottom:322.770000px;}
.y3a{bottom:325.110000px;}
.y17d{bottom:328.350000px;}
.ydd{bottom:332.685000px;}
.y4e{bottom:333.930000px;}
.ya4{bottom:333.945000px;}
.y154{bottom:335.550000px;}
.y1a2{bottom:339.150000px;}
.y12c{bottom:340.590000px;}
.y101{bottom:344.010000px;}
.y4d{bottom:351.750000px;}
.ya2{bottom:352.665000px;}
.y153{bottom:353.550000px;}
.y39{bottom:354.270000px;}
.y1a1{bottom:356.970000px;}
.y17c{bottom:357.690000px;}
.y100{bottom:362.010000px;}
.y12b{bottom:368.850000px;}
.ydb{bottom:371.025000px;}
.y38{bottom:372.270000px;}
.y1a0{bottom:374.790000px;}
.y17b{bottom:375.690000px;}
.y4c{bottom:377.850000px;}
.y152{bottom:382.710000px;}
.ya0{bottom:389.025000px;}
.yff{bottom:391.170000px;}
.y19f{bottom:392.610000px;}
.y12a{bottom:400.170000px;}
.y151{bottom:400.710000px;}
.y37{bottom:401.070000px;}
.y4b{bottom:401.970000px;}
.y17a{bottom:404.490000px;}
.yfe{bottom:409.170000px;}
.y19e{bottom:410.430000px;}
.yd9{bottom:410.445000px;}
.y129{bottom:417.990000px;}
.y4a{bottom:419.790000px;}
.y9d{bottom:425.565000px;}
.y36{bottom:428.250000px;}
.y150{bottom:429.870000px;}
.y179{bottom:431.670000px;}
.y128{bottom:435.810000px;}
.yfd{bottom:437.970000px;}
.y35{bottom:446.115000px;}
.y19d{bottom:446.295000px;}
.y14f{bottom:447.915000px;}
.yd6{bottom:448.995000px;}
.y178{bottom:449.715000px;}
.y127{bottom:453.855000px;}
.y9a{bottom:461.955000px;}
.y34{bottom:464.115000px;}
.yfc{bottom:465.195000px;}
.y126{bottom:471.675000px;}
.y14e{bottom:477.075000px;}
.y177{bottom:478.875000px;}
.y49{bottom:481.935000px;}
.yfb{bottom:483.195000px;}
.yd5{bottom:488.595000px;}
.y125{bottom:489.495000px;}
.y33{bottom:493.275000px;}
.y14d{bottom:495.075000px;}
.y176{bottom:496.695000px;}
.y98{bottom:498.495000px;}
.y19c{bottom:499.755000px;}
.yd4{bottom:505.875000px;}
.y124{bottom:507.315000px;}
.y48{bottom:508.215000px;}
.y32{bottom:511.275000px;}
.yfa{bottom:512.355000px;}
.y175{bottom:514.515000px;}
.y19b{bottom:517.575000px;}
.yd3{bottom:523.875000px;}
.y14c{bottom:524.235000px;}
.y97{bottom:524.775000px;}
.y123{bottom:525.135000px;}
.y47{bottom:526.035000px;}
.y31{bottom:529.095000px;}
.yf9{bottom:530.355000px;}
.y174{bottom:532.515000px;}
.y79{bottom:541.515000px;}
.y14b{bottom:542.235000px;}
.y122{bottom:543.135000px;}
.y96{bottom:545.835000px;}
.y19a{bottom:546.015000px;}
.yd2{bottom:550.335000px;}
.y46{bottom:552.135000px;}
.y30{bottom:558.435000px;}
.y78{bottom:559.335000px;}
.yf8{bottom:559.515000px;}
.y173{bottom:561.495000px;}
.y95{bottom:563.655000px;}
.yd1{bottom:568.155000px;}
.y121{bottom:569.595000px;}
.y14a{bottom:571.035000px;}
.y2f{bottom:576.255000px;}
.y77{bottom:577.335000px;}
.yf7{bottom:577.515000px;}
.y45{bottom:577.695000px;}
.y94{bottom:590.115000px;}
.y2e{bottom:594.075000px;}
.y199{bottom:595.155000px;}
.yd0{bottom:595.335000px;}
.y120{bottom:596.775000px;}
.y149{bottom:598.395000px;}
.y44{bottom:606.135000px;}
.y76{bottom:606.495000px;}
.y2d{bottom:612.075000px;}
.y198{bottom:612.975000px;}
.ycf{bottom:613.155000px;}
.y11f{bottom:614.595000px;}
.y93{bottom:617.475000px;}
.y172{bottom:621.435000px;}
.y43{bottom:623.955000px;}
.y75{bottom:624.495000px;}
.y148{bottom:624.855000px;}
.y197{bottom:630.975000px;}
.yf6{bottom:633.315000px;}
.y92{bottom:635.295000px;}
.y171{bottom:639.255000px;}
.yce{bottom:639.615000px;}
.y2c{bottom:640.875000px;}
.y11e{bottom:641.415000px;}
.y42{bottom:641.775000px;}
.y147{bottom:652.035000px;}
.y91{bottom:653.115000px;}
.y74{bottom:653.655000px;}
.y170{bottom:657.255000px;}
.y11d{bottom:659.415000px;}
.y196{bottom:660.135000px;}
.yf5{bottom:660.495000px;}
.y2b{bottom:663.015000px;}
.ycd{bottom:666.975000px;}
.y2a{bottom:668.415000px;}
.y146{bottom:670.035000px;}
.y73{bottom:671.475000px;}
.y195{bottom:677.985000px;}
.yf4{bottom:678.345000px;}
.y90{bottom:679.965000px;}
.ycc{bottom:685.005000px;}
.y16f{bottom:686.445000px;}
.y11c{bottom:688.605000px;}
.y72{bottom:689.505000px;}
.y27{bottom:694.725000px;}
.y194{bottom:695.985000px;}
.yf3{bottom:696.165000px;}
.y8f{bottom:697.785000px;}
.y145{bottom:699.225000px;}
.y16e{bottom:704.265000px;}
.y11b{bottom:706.605000px;}
.y193{bottom:713.805000px;}
.ycb{bottom:714.165000px;}
.y8e{bottom:715.605000px;}
.y144{bottom:717.225000px;}
.yf2{bottom:718.125000px;}
.y71{bottom:718.305000px;}
.y16d{bottom:722.265000px;}
.y192{bottom:731.805000px;}
.yca{bottom:732.165000px;}
.y8d{bottom:733.605000px;}
.y11a{bottom:735.945000px;}
.ye{bottom:738.465000px;}
.y70{bottom:745.665000px;}
.y143{bottom:746.385000px;}
.y8c{bottom:751.425000px;}
.y16c{bottom:751.605000px;}
.yf1{bottom:754.665000px;}
.yc9{bottom:760.965000px;}
.y6f{bottom:763.485000px;}
.y142{bottom:764.385000px;}
.y119{bottom:764.745000px;}
.y8b{bottom:769.245000px;}
.y16b{bottom:769.425000px;}
.y191{bottom:778.785000px;}
.y16a{bottom:787.245000px;}
.yc8{bottom:788.145000px;}
.yee{bottom:791.025000px;}
.y118{bottom:792.105000px;}
.y6e{bottom:792.825000px;}
.y141{bottom:793.185000px;}
.y8a{bottom:796.065000px;}
.y190{bottom:796.785000px;}
.y169{bottom:805.245000px;}
.yc7{bottom:805.965000px;}
.y6d{bottom:810.645000px;}
.y89{bottom:813.885000px;}
.y140{bottom:820.545000px;}
.y117{bottom:821.445000px;}
.y18f{bottom:825.945000px;}
.yeb{bottom:827.565000px;}
.y6c{bottom:828.645000px;}
.y88{bottom:831.885000px;}
.yc6{bottom:832.785000px;}
.y168{bottom:834.045000px;}
.y13f{bottom:838.545000px;}
.y18e{bottom:843.765000px;}
.y87{bottom:849.705000px;}
.yc5{bottom:850.785000px;}
.y6b{bottom:857.445000px;}
.y167{bottom:861.225000px;}
.y18d{bottom:861.765000px;}
.yea{bottom:864.105000px;}
.y86{bottom:867.525000px;}
.y13e{bottom:867.705000px;}
.yc4{bottom:877.605000px;}
.y166{bottom:879.045000px;}
.y116{bottom:880.125000px;}
.ye9{bottom:883.905000px;}
.y13d{bottom:885.705000px;}
.y6a{bottom:886.065000px;}
.y18c{bottom:892.545000px;}
.y85{bottom:893.985000px;}
.yc3{bottom:895.425000px;}
.y165{bottom:897.045000px;}
.ye8{bottom:901.185000px;}
.y115{bottom:908.925000px;}
.y13c{bottom:914.910000px;}
.y69{bottom:917.430000px;}
.ye7{bottom:919.050000px;}
.y84{bottom:921.390000px;}
.yc2{bottom:922.290000px;}
.y18b{bottom:923.910000px;}
.y13b{bottom:932.910000px;}
.y68{bottom:935.430000px;}
.y114{bottom:935.970000px;}
.yc1{bottom:940.110000px;}
.y18a{bottom:941.910000px;}
.ye6{bottom:945.510000px;}
.y83{bottom:950.730000px;}
.y13a{bottom:961.710000px;}
.y164{bottom:962.250000px;}
.y113{bottom:963.150000px;}
.ye5{bottom:963.510000px;}
.y67{bottom:964.770000px;}
.yc0{bottom:966.570000px;}
.y189{bottom:971.070000px;}
.y82{bottom:980.070000px;}
.y112{bottom:980.970000px;}
.y66{bottom:982.590000px;}
.ye4{bottom:987.630000px;}
.y139{bottom:988.890000px;}
.y188{bottom:989.070000px;}
.y163{bottom:991.410000px;}
.ybf{bottom:993.930000px;}
.y111{bottom:998.790000px;}
.y65{bottom:1000.590000px;}
.y138{bottom:1006.890000px;}
.y81{bottom:1008.870000px;}
.y162{bottom:1009.410000px;}
.ybe{bottom:1011.930000px;}
.y187{bottom:1018.230000px;}
.y110{bottom:1025.610000px;}
.y64{bottom:1029.390000px;}
.y80{bottom:1036.050000px;}
.y186{bottom:1036.230000px;}
.yd{bottom:1036.770000px;}
.y161{bottom:1038.570000px;}
.ybd{bottom:1041.090000px;}
.y10f{bottom:1043.610000px;}
.y7f{bottom:1054.050000px;}
.y63{bottom:1056.570000px;}
.ybc{bottom:1059.090000px;}
.yc{bottom:1063.590000px;}
.y185{bottom:1065.030000px;}
.y10e{bottom:1070.430000px;}
.y62{bottom:1074.390000px;}
.yb{bottom:1081.770000px;}
.y7e{bottom:1083.210000px;}
.y160{bottom:1085.730000px;}
.ybb{bottom:1087.890000px;}
.y10d{bottom:1088.250000px;}
.y184{bottom:1092.210000px;}
.y61{bottom:1092.390000px;}
.y7d{bottom:1101.210000px;}
.y15f{bottom:1103.550000px;}
.ya{bottom:1108.050000px;}
.y183{bottom:1110.210000px;}
.y5{bottom:1112.940000px;}
.yba{bottom:1114.710000px;}
.y10c{bottom:1115.070000px;}
.y60{bottom:1121.550000px;}
.y182{bottom:1128.030000px;}
.y137{bottom:1130.010000px;}
.y7c{bottom:1130.370000px;}
.y9{bottom:1132.350000px;}
.yb9{bottom:1132.530000px;}
.y10b{bottom:1132.890000px;}
.y5f{bottom:1139.370000px;}
.y7b{bottom:1148.400000px;}
.y15e{bottom:1150.740000px;}
.y5e{bottom:1157.400000px;}
.yb8{bottom:1159.740000px;}
.y8{bottom:1164.420000px;}
.y3{bottom:1166.040000px;}
.y5d{bottom:1175.220000px;}
.y136{bottom:1175.400000px;}
.y7a{bottom:1177.380000px;}
.yb7{bottom:1177.740000px;}
.y2{bottom:1181.520000px;}
.y5a{bottom:1191.060000px;}
.y7{bottom:1191.240000px;}
.y1{bottom:1196.820000px;}
.y59{bottom:1198.080000px;}
.h12{height:5.805000px;}
.h20{height:12.012891px;}
.h18{height:17.666016px;}
.h1a{height:17.805000px;}
.h24{height:17.820000px;}
.hb{height:35.332031px;}
.h1d{height:35.625000px;}
.h25{height:35.640000px;}
.h1c{height:35.661000px;}
.h1b{height:35.805000px;}
.h26{height:35.820000px;}
.h21{height:37.605000px;}
.h15{height:37.705078px;}
.h22{height:37.821000px;}
.h23{height:38.685000px;}
.h10{height:43.020000px;}
.h5{height:47.344922px;}
.h17{height:47.980898px;}
.h7{height:48.256875px;}
.h8{height:48.361781px;}
.hd{height:48.616875px;}
.h1e{height:52.971680px;}
.hf{height:52.998047px;}
.h13{height:54.421875px;}
.h1f{height:55.503491px;}
.h2{height:58.651172px;}
.ha{height:60.041250px;}
.he{height:60.226875px;}
.h14{height:61.423863px;}
.h4{height:65.010937px;}
.h3{height:65.884219px;}
.h19{height:67.824844px;}
.h16{height:72.562500px;}
.h11{height:74.953125px;}
.h9{height:84.898125px;}
.h6{height:149.940000px;}
.hc{height:285.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:-79.560000px;}
.wb{width:128.865000px;}
.w9{width:151.228500px;}
.w6{width:164.548500px;}
.wa{width:169.575000px;}
.w3{width:210.133500px;}
.wc{width:251.340000px;}
.w8{width:311.820000px;}
.w7{width:322.800000px;}
.w4{width:536.505000px;}
.w5{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.740000px;}
.x3{left:12.090000px;}
.xc{left:18.394500px;}
.x17{left:46.261500px;}
.x1{left:54.000000px;}
.x18{left:59.434500px;}
.x6{left:64.800000px;}
.xb{left:72.901500px;}
.x1e{left:75.961500px;}
.xf{left:81.000000px;}
.x1c{left:90.030000px;}
.x10{left:108.036000px;}
.x1a{left:128.010000px;}
.x1d{left:157.530000px;}
.x19{left:211.545000px;}
.x9{left:221.610000px;}
.x1f{left:227.925000px;}
.xd{left:283.755000px;}
.x8{left:337.755000px;}
.x7{left:357.015000px;}
.xa{left:360.075000px;}
.x15{left:438.195000px;}
.x21{left:465.960000px;}
.x13{left:473.505000px;}
.x11{left:500.505000px;}
.x12{left:527.505000px;}
.x1b{left:535.080000px;}
.x22{left:595.560000px;}
.x16{left:656.250000px;}
.x14{left:680.550000px;}
.x20{left:818.280000px;}
.x2{left:972.540000px;}
.x4{left:997.050000px;}
.x5{left:1004.070000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-2.400000pt;}
.lse{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-1.760000pt;}
.ls11{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.224000pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.198933pt;}
.ls9{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.656000pt;}
.ls1d{letter-spacing:0.800000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls16{letter-spacing:5.280000pt;}
.ls14{letter-spacing:8.480000pt;}
.ls4{letter-spacing:9.728000pt;}
.ls18{letter-spacing:10.400000pt;}
.ls19{letter-spacing:32.160000pt;}
.ls17{letter-spacing:41.760000pt;}
.ls13{letter-spacing:46.816000pt;}
.ls6{letter-spacing:56.912640pt;}
.ls5{letter-spacing:57.040640pt;}
.ls0{letter-spacing:946.186667pt;}
.wsb{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws0{word-spacing:-13.306880pt;}
.ws9{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.984000pt;}
.ws10{word-spacing:-11.776000pt;}
.wsc{word-spacing:-11.488000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.480533pt;}
.wse{word-spacing:-10.400000pt;}
.ws8{word-spacing:-8.480000pt;}
.ws5{word-spacing:-8.000000pt;}
.wsf{word-spacing:-0.048000pt;}
.wsd{word-spacing:0.000000pt;}
._3{margin-left:-8.622933pt;}
._5{margin-left:-2.346240pt;}
._1{margin-left:-1.059840pt;}
._0{width:1.115520pt;}
._d{width:2.019840pt;}
._9{width:3.648000pt;}
._a{width:4.596480pt;}
._8{width:5.611520pt;}
._b{width:6.816000pt;}
._10{width:7.824000pt;}
._4{width:9.507200pt;}
._e{width:10.851840pt;}
._c{width:13.624320pt;}
._f{width:15.408000pt;}
._15{width:16.577280pt;}
._12{width:18.384000pt;}
._2d{width:19.310720pt;}
._13{width:20.208000pt;}
._7{width:21.783040pt;}
._6{width:22.800000pt;}
._11{width:24.320640pt;}
._18{width:25.632000pt;}
._19{width:26.544000pt;}
._14{width:28.032000pt;}
._21{width:29.692800pt;}
._26{width:30.990080pt;}
._1e{width:32.716800pt;}
._17{width:33.648000pt;}
._1a{width:34.752000pt;}
._2b{width:36.195840pt;}
._25{width:37.104000pt;}
._2f{width:38.273280pt;}
._27{width:39.724800pt;}
._1d{width:40.684800pt;}
._16{width:42.316800pt;}
._20{width:43.502507pt;}
._28{width:45.456000pt;}
._29{width:47.023147pt;}
._1f{width:50.163840pt;}
._30{width:51.166080pt;}
._2c{width:52.907520pt;}
._1b{width:54.316800pt;}
._1c{width:55.872000pt;}
._2a{width:58.204800pt;}
._24{width:59.139840pt;}
._31{width:64.128000pt;}
._23{width:92.416000pt;}
._2e{width:308.163840pt;}
._2{width:347.766293pt;}
._22{width:985.392000pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fs9{font-size:16.000000pt;}
.fs6{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:59.008000pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:3.360000pt;}
.y29{bottom:4.000000pt;}
.y99{bottom:4.640000pt;}
.y9f{bottom:4.946667pt;}
.y9c{bottom:4.960000pt;}
.yf0{bottom:5.120000pt;}
.yd8{bottom:6.400000pt;}
.y28{bottom:18.240000pt;}
.y25{bottom:18.560000pt;}
.yec{bottom:20.480000pt;}
.yef{bottom:20.640000pt;}
.ya3{bottom:20.786667pt;}
.yed{bottom:20.800000pt;}
.y9e{bottom:20.826667pt;}
.ya1{bottom:20.946667pt;}
.y9b{bottom:20.960000pt;}
.yd7{bottom:22.240000pt;}
.yde{bottom:22.546667pt;}
.yda{bottom:22.706667pt;}
.ydc{bottom:23.506667pt;}
.y24{bottom:33.920000pt;}
.y5c{bottom:52.000000pt;}
.y23{bottom:58.880000pt;}
.y4{bottom:68.320000pt;}
.y5b{bottom:68.640000pt;}
.y22{bottom:74.880000pt;}
.yb6{bottom:86.560000pt;}
.y17{bottom:90.400000pt;}
.y21{bottom:90.720000pt;}
.y6{bottom:93.440000pt;}
.y15d{bottom:96.320000pt;}
.yaf{bottom:98.240000pt;}
.yb5{bottom:102.560000pt;}
.y20{bottom:106.560000pt;}
.y58{bottom:110.240000pt;}
.y16{bottom:110.720000pt;}
.y15c{bottom:112.320000pt;}
.yae{bottom:114.080000pt;}
.y135{bottom:115.520000pt;}
.yb4{bottom:118.400000pt;}
.y10a{bottom:118.560000pt;}
.y1f{bottom:122.400000pt;}
.y57{bottom:126.080000pt;}
.yad{bottom:130.080000pt;}
.y15{bottom:130.880000pt;}
.y134{bottom:131.520000pt;}
.y41{bottom:134.240000pt;}
.y109{bottom:134.400000pt;}
.y1e{bottom:138.240000pt;}
.y15b{bottom:138.400000pt;}
.yb3{bottom:141.920000pt;}
.yac{bottom:148.000000pt;}
.y56{bottom:149.120000pt;}
.y108{bottom:150.240000pt;}
.y14{bottom:151.040000pt;}
.y1d{bottom:154.280000pt;}
.y15a{bottom:154.400000pt;}
.y133{bottom:157.440000pt;}
.y40{bottom:157.600000pt;}
.yab{bottom:163.840000pt;}
.yb2{bottom:166.080000pt;}
.y1c{bottom:170.120000pt;}
.y55{bottom:170.720000pt;}
.y13{bottom:171.400000pt;}
.y132{bottom:173.280000pt;}
.y107{bottom:173.760000pt;}
.y1a9{bottom:179.360000pt;}
.yaa{bottom:179.840000pt;}
.y159{bottom:180.320000pt;}
.y3f{bottom:180.960000pt;}
.yb1{bottom:181.920000pt;}
.y1b{bottom:185.960000pt;}
.y54{bottom:186.586667pt;}
.y131{bottom:189.306667pt;}
.y12{bottom:191.720000pt;}
.ye3{bottom:193.306667pt;}
.y158{bottom:196.346667pt;}
.y3e{bottom:196.986667pt;}
.ya9{bottom:197.786667pt;}
.y106{bottom:197.946667pt;}
.y1a{bottom:201.800000pt;}
.y53{bottom:202.426667pt;}
.y11{bottom:204.040000pt;}
.y1a8{bottom:206.266667pt;}
.ye2{bottom:209.146667pt;}
.y181{bottom:210.106667pt;}
.ya8{bottom:213.786667pt;}
.y105{bottom:213.946667pt;}
.y130{bottom:214.906667pt;}
.y10{bottom:216.360000pt;}
.y19{bottom:217.640000pt;}
.y1a7{bottom:222.106667pt;}
.y157{bottom:222.426667pt;}
.y3d{bottom:222.586667pt;}
.ye1{bottom:225.146667pt;}
.y52{bottom:225.786667pt;}
.y180{bottom:226.106667pt;}
.ya7{bottom:229.626667pt;}
.y18{bottom:233.640000pt;}
.yf{bottom:236.360000pt;}
.y1a6{bottom:237.946667pt;}
.y12f{bottom:239.066667pt;}
.y104{bottom:239.866667pt;}
.ye0{bottom:240.986667pt;}
.y51{bottom:241.626667pt;}
.yb0{bottom:245.466667pt;}
.y3c{bottom:246.906667pt;}
.y156{bottom:248.506667pt;}
.y17f{bottom:251.706667pt;}
.ya6{bottom:253.146667pt;}
.y1a5{bottom:253.786667pt;}
.y103{bottom:255.866667pt;}
.y50{bottom:257.626667pt;}
.ydf{bottom:260.520000pt;}
.y12e{bottom:262.586667pt;}
.y3b{bottom:262.906667pt;}
.y1a4{bottom:269.626667pt;}
.y155{bottom:274.106667pt;}
.y17e{bottom:276.026667pt;}
.ya5{bottom:277.306667pt;}
.y4f{bottom:280.986667pt;}
.y102{bottom:281.626667pt;}
.y1a3{bottom:285.466667pt;}
.y12d{bottom:286.906667pt;}
.y3a{bottom:288.986667pt;}
.y17d{bottom:291.866667pt;}
.ydd{bottom:295.720000pt;}
.y4e{bottom:296.826667pt;}
.ya4{bottom:296.840000pt;}
.y154{bottom:298.266667pt;}
.y1a2{bottom:301.466667pt;}
.y12c{bottom:302.746667pt;}
.y101{bottom:305.786667pt;}
.y4d{bottom:312.666667pt;}
.ya2{bottom:313.480000pt;}
.y153{bottom:314.266667pt;}
.y39{bottom:314.906667pt;}
.y1a1{bottom:317.306667pt;}
.y17c{bottom:317.946667pt;}
.y100{bottom:321.786667pt;}
.y12b{bottom:327.866667pt;}
.ydb{bottom:329.800000pt;}
.y38{bottom:330.906667pt;}
.y1a0{bottom:333.146667pt;}
.y17b{bottom:333.946667pt;}
.y4c{bottom:335.866667pt;}
.y152{bottom:340.186667pt;}
.ya0{bottom:345.800000pt;}
.yff{bottom:347.706667pt;}
.y19f{bottom:348.986667pt;}
.y12a{bottom:355.706667pt;}
.y151{bottom:356.186667pt;}
.y37{bottom:356.506667pt;}
.y4b{bottom:357.306667pt;}
.y17a{bottom:359.546667pt;}
.yfe{bottom:363.706667pt;}
.y19e{bottom:364.826667pt;}
.yd9{bottom:364.840000pt;}
.y129{bottom:371.546667pt;}
.y4a{bottom:373.146667pt;}
.y9d{bottom:378.280000pt;}
.y36{bottom:380.666667pt;}
.y150{bottom:382.106667pt;}
.y179{bottom:383.706667pt;}
.y128{bottom:387.386667pt;}
.yfd{bottom:389.306667pt;}
.y35{bottom:396.546667pt;}
.y19d{bottom:396.706667pt;}
.y14f{bottom:398.146667pt;}
.yd6{bottom:399.106667pt;}
.y178{bottom:399.746667pt;}
.y127{bottom:403.426667pt;}
.y9a{bottom:410.626667pt;}
.y34{bottom:412.546667pt;}
.yfc{bottom:413.506667pt;}
.y126{bottom:419.266667pt;}
.y14e{bottom:424.066667pt;}
.y177{bottom:425.666667pt;}
.y49{bottom:428.386667pt;}
.yfb{bottom:429.506667pt;}
.yd5{bottom:434.306667pt;}
.y125{bottom:435.106667pt;}
.y33{bottom:438.466667pt;}
.y14d{bottom:440.066667pt;}
.y176{bottom:441.506667pt;}
.y98{bottom:443.106667pt;}
.y19c{bottom:444.226667pt;}
.yd4{bottom:449.666667pt;}
.y124{bottom:450.946667pt;}
.y48{bottom:451.746667pt;}
.y32{bottom:454.466667pt;}
.yfa{bottom:455.426667pt;}
.y175{bottom:457.346667pt;}
.y19b{bottom:460.066667pt;}
.yd3{bottom:465.666667pt;}
.y14c{bottom:465.986667pt;}
.y97{bottom:466.466667pt;}
.y123{bottom:466.786667pt;}
.y47{bottom:467.586667pt;}
.y31{bottom:470.306667pt;}
.yf9{bottom:471.426667pt;}
.y174{bottom:473.346667pt;}
.y79{bottom:481.346667pt;}
.y14b{bottom:481.986667pt;}
.y122{bottom:482.786667pt;}
.y96{bottom:485.186667pt;}
.y19a{bottom:485.346667pt;}
.yd2{bottom:489.186667pt;}
.y46{bottom:490.786667pt;}
.y30{bottom:496.386667pt;}
.y78{bottom:497.186667pt;}
.yf8{bottom:497.346667pt;}
.y173{bottom:499.106667pt;}
.y95{bottom:501.026667pt;}
.yd1{bottom:505.026667pt;}
.y121{bottom:506.306667pt;}
.y14a{bottom:507.586667pt;}
.y2f{bottom:512.226667pt;}
.y77{bottom:513.186667pt;}
.yf7{bottom:513.346667pt;}
.y45{bottom:513.506667pt;}
.y94{bottom:524.546667pt;}
.y2e{bottom:528.066667pt;}
.y199{bottom:529.026667pt;}
.yd0{bottom:529.186667pt;}
.y120{bottom:530.466667pt;}
.y149{bottom:531.906667pt;}
.y44{bottom:538.786667pt;}
.y76{bottom:539.106667pt;}
.y2d{bottom:544.066667pt;}
.y198{bottom:544.866667pt;}
.ycf{bottom:545.026667pt;}
.y11f{bottom:546.306667pt;}
.y93{bottom:548.866667pt;}
.y172{bottom:552.386667pt;}
.y43{bottom:554.626667pt;}
.y75{bottom:555.106667pt;}
.y148{bottom:555.426667pt;}
.y197{bottom:560.866667pt;}
.yf6{bottom:562.946667pt;}
.y92{bottom:564.706667pt;}
.y171{bottom:568.226667pt;}
.yce{bottom:568.546667pt;}
.y2c{bottom:569.666667pt;}
.y11e{bottom:570.146667pt;}
.y42{bottom:570.466667pt;}
.y147{bottom:579.586667pt;}
.y91{bottom:580.546667pt;}
.y74{bottom:581.026667pt;}
.y170{bottom:584.226667pt;}
.y11d{bottom:586.146667pt;}
.y196{bottom:586.786667pt;}
.yf5{bottom:587.106667pt;}
.y2b{bottom:589.346667pt;}
.ycd{bottom:592.866667pt;}
.y2a{bottom:594.146667pt;}
.y146{bottom:595.586667pt;}
.y73{bottom:596.866667pt;}
.y195{bottom:602.653333pt;}
.yf4{bottom:602.973333pt;}
.y90{bottom:604.413333pt;}
.ycc{bottom:608.893333pt;}
.y16f{bottom:610.173333pt;}
.y11c{bottom:612.093333pt;}
.y72{bottom:612.893333pt;}
.y27{bottom:617.533333pt;}
.y194{bottom:618.653333pt;}
.yf3{bottom:618.813333pt;}
.y8f{bottom:620.253333pt;}
.y145{bottom:621.533333pt;}
.y16e{bottom:626.013333pt;}
.y11b{bottom:628.093333pt;}
.y193{bottom:634.493333pt;}
.ycb{bottom:634.813333pt;}
.y8e{bottom:636.093333pt;}
.y144{bottom:637.533333pt;}
.yf2{bottom:638.333333pt;}
.y71{bottom:638.493333pt;}
.y16d{bottom:642.013333pt;}
.y192{bottom:650.493333pt;}
.yca{bottom:650.813333pt;}
.y8d{bottom:652.093333pt;}
.y11a{bottom:654.173333pt;}
.ye{bottom:656.413333pt;}
.y70{bottom:662.813333pt;}
.y143{bottom:663.453333pt;}
.y8c{bottom:667.933333pt;}
.y16c{bottom:668.093333pt;}
.yf1{bottom:670.813333pt;}
.yc9{bottom:676.413333pt;}
.y6f{bottom:678.653333pt;}
.y142{bottom:679.453333pt;}
.y119{bottom:679.773333pt;}
.y8b{bottom:683.773333pt;}
.y16b{bottom:683.933333pt;}
.y191{bottom:692.253333pt;}
.y16a{bottom:699.773333pt;}
.yc8{bottom:700.573333pt;}
.yee{bottom:703.133333pt;}
.y118{bottom:704.093333pt;}
.y6e{bottom:704.733333pt;}
.y141{bottom:705.053333pt;}
.y8a{bottom:707.613333pt;}
.y190{bottom:708.253333pt;}
.y169{bottom:715.773333pt;}
.yc7{bottom:716.413333pt;}
.y6d{bottom:720.573333pt;}
.y89{bottom:723.453333pt;}
.y140{bottom:729.373333pt;}
.y117{bottom:730.173333pt;}
.y18f{bottom:734.173333pt;}
.yeb{bottom:735.613333pt;}
.y6c{bottom:736.573333pt;}
.y88{bottom:739.453333pt;}
.yc6{bottom:740.253333pt;}
.y168{bottom:741.373333pt;}
.y13f{bottom:745.373333pt;}
.y18e{bottom:750.013333pt;}
.y87{bottom:755.293333pt;}
.yc5{bottom:756.253333pt;}
.y6b{bottom:762.173333pt;}
.y167{bottom:765.533333pt;}
.y18d{bottom:766.013333pt;}
.yea{bottom:768.093333pt;}
.y86{bottom:771.133333pt;}
.y13e{bottom:771.293333pt;}
.yc4{bottom:780.093333pt;}
.y166{bottom:781.373333pt;}
.y116{bottom:782.333333pt;}
.ye9{bottom:785.693333pt;}
.y13d{bottom:787.293333pt;}
.y6a{bottom:787.613333pt;}
.y18c{bottom:793.373333pt;}
.y85{bottom:794.653333pt;}
.yc3{bottom:795.933333pt;}
.y165{bottom:797.373333pt;}
.ye8{bottom:801.053333pt;}
.y115{bottom:807.933333pt;}
.y13c{bottom:813.253333pt;}
.y69{bottom:815.493333pt;}
.ye7{bottom:816.933333pt;}
.y84{bottom:819.013333pt;}
.yc2{bottom:819.813333pt;}
.y18b{bottom:821.253333pt;}
.y13b{bottom:829.253333pt;}
.y68{bottom:831.493333pt;}
.y114{bottom:831.973333pt;}
.yc1{bottom:835.653333pt;}
.y18a{bottom:837.253333pt;}
.ye6{bottom:840.453333pt;}
.y83{bottom:845.093333pt;}
.y13a{bottom:854.853333pt;}
.y164{bottom:855.333333pt;}
.y113{bottom:856.133333pt;}
.ye5{bottom:856.453333pt;}
.y67{bottom:857.573333pt;}
.yc0{bottom:859.173333pt;}
.y189{bottom:863.173333pt;}
.y82{bottom:871.173333pt;}
.y112{bottom:871.973333pt;}
.y66{bottom:873.413333pt;}
.ye4{bottom:877.893333pt;}
.y139{bottom:879.013333pt;}
.y188{bottom:879.173333pt;}
.y163{bottom:881.253333pt;}
.ybf{bottom:883.493333pt;}
.y111{bottom:887.813333pt;}
.y65{bottom:889.413333pt;}
.y138{bottom:895.013333pt;}
.y81{bottom:896.773333pt;}
.y162{bottom:897.253333pt;}
.ybe{bottom:899.493333pt;}
.y187{bottom:905.093333pt;}
.y110{bottom:911.653333pt;}
.y64{bottom:915.013333pt;}
.y80{bottom:920.933333pt;}
.y186{bottom:921.093333pt;}
.yd{bottom:921.573333pt;}
.y161{bottom:923.173333pt;}
.ybd{bottom:925.413333pt;}
.y10f{bottom:927.653333pt;}
.y7f{bottom:936.933333pt;}
.y63{bottom:939.173333pt;}
.ybc{bottom:941.413333pt;}
.yc{bottom:945.413333pt;}
.y185{bottom:946.693333pt;}
.y10e{bottom:951.493333pt;}
.y62{bottom:955.013333pt;}
.yb{bottom:961.573333pt;}
.y7e{bottom:962.853333pt;}
.y160{bottom:965.093333pt;}
.ybb{bottom:967.013333pt;}
.y10d{bottom:967.333333pt;}
.y184{bottom:970.853333pt;}
.y61{bottom:971.013333pt;}
.y7d{bottom:978.853333pt;}
.y15f{bottom:980.933333pt;}
.ya{bottom:984.933333pt;}
.y183{bottom:986.853333pt;}
.y5{bottom:989.280000pt;}
.yba{bottom:990.853333pt;}
.y10c{bottom:991.173333pt;}
.y60{bottom:996.933333pt;}
.y182{bottom:1002.693333pt;}
.y137{bottom:1004.453333pt;}
.y7c{bottom:1004.773333pt;}
.y9{bottom:1006.533333pt;}
.yb9{bottom:1006.693333pt;}
.y10b{bottom:1007.013333pt;}
.y5f{bottom:1012.773333pt;}
.y7b{bottom:1020.800000pt;}
.y15e{bottom:1022.880000pt;}
.y5e{bottom:1028.800000pt;}
.yb8{bottom:1030.880000pt;}
.y8{bottom:1035.040000pt;}
.y3{bottom:1036.480000pt;}
.y5d{bottom:1044.640000pt;}
.y136{bottom:1044.800000pt;}
.y7a{bottom:1046.560000pt;}
.yb7{bottom:1046.880000pt;}
.y2{bottom:1050.240000pt;}
.y5a{bottom:1058.720000pt;}
.y7{bottom:1058.880000pt;}
.y1{bottom:1063.840000pt;}
.y59{bottom:1064.960000pt;}
.h12{height:5.160000pt;}
.h20{height:10.678125pt;}
.h18{height:15.703125pt;}
.h1a{height:15.826667pt;}
.h24{height:15.840000pt;}
.hb{height:31.406250pt;}
.h1d{height:31.666667pt;}
.h25{height:31.680000pt;}
.h1c{height:31.698667pt;}
.h1b{height:31.826667pt;}
.h26{height:31.840000pt;}
.h21{height:33.426667pt;}
.h15{height:33.515625pt;}
.h22{height:33.618667pt;}
.h23{height:34.386667pt;}
.h10{height:38.240000pt;}
.h5{height:42.084375pt;}
.h17{height:42.649687pt;}
.h7{height:42.895000pt;}
.h8{height:42.988250pt;}
.hd{height:43.215000pt;}
.h1e{height:47.085938pt;}
.hf{height:47.109375pt;}
.h13{height:48.375000pt;}
.h1f{height:49.336436pt;}
.h2{height:52.134375pt;}
.ha{height:53.370000pt;}
.he{height:53.535000pt;}
.h14{height:54.598989pt;}
.h4{height:57.787500pt;}
.h3{height:58.563750pt;}
.h19{height:60.288750pt;}
.h16{height:64.500000pt;}
.h11{height:66.625000pt;}
.h9{height:75.465000pt;}
.h6{height:133.280000pt;}
.hc{height:254.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:-70.720000pt;}
.wb{width:114.546667pt;}
.w9{width:134.425333pt;}
.w6{width:146.265333pt;}
.wa{width:150.733333pt;}
.w3{width:186.785333pt;}
.wc{width:223.413333pt;}
.w8{width:277.173333pt;}
.w7{width:286.933333pt;}
.w4{width:476.893333pt;}
.w5{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.880000pt;}
.x3{left:10.746667pt;}
.xc{left:16.350667pt;}
.x17{left:41.121333pt;}
.x1{left:48.000000pt;}
.x18{left:52.830667pt;}
.x6{left:57.600000pt;}
.xb{left:64.801333pt;}
.x1e{left:67.521333pt;}
.xf{left:72.000000pt;}
.x1c{left:80.026667pt;}
.x10{left:96.032000pt;}
.x1a{left:113.786667pt;}
.x1d{left:140.026667pt;}
.x19{left:188.040000pt;}
.x9{left:196.986667pt;}
.x1f{left:202.600000pt;}
.xd{left:252.226667pt;}
.x8{left:300.226667pt;}
.x7{left:317.346667pt;}
.xa{left:320.066667pt;}
.x15{left:389.506667pt;}
.x21{left:414.186667pt;}
.x13{left:420.893333pt;}
.x11{left:444.893333pt;}
.x12{left:468.893333pt;}
.x1b{left:475.626667pt;}
.x22{left:529.386667pt;}
.x16{left:583.333333pt;}
.x14{left:604.933333pt;}
.x20{left:727.360000pt;}
.x2{left:864.480000pt;}
.x4{left:886.266667pt;}
.x5{left:892.506667pt;}
}




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