
    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_31d4ae47109c239262d19f65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_355420ce12945c82559fc30d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_ae954f18f7a933f978af54ea.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944824;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_c9ab4fb4c1981b3cd89bbe2f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2f8dee2ecd520dcc62846930.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6df4096306e6d69adfdcb8d2.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d8923ad5834bb339bc757f65.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.859375;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_3ad2dc455e80cdd507cb5afd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ebcbfe6863abbd7c65cd99b5.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;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_b14519c276aa7e75cf5ee680.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_7b5037eb5096dd2a6a601275.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.106934;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;}
.m4{transform:matrix(0.000000,-0.248930,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248930,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248930,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249652,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249619,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251075,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-46.138247px;}
.v5{vertical-align:-42.489846px;}
.v6{vertical-align:-21.104600px;}
.v3{vertical-align:-8.587776px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:4.041306px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:32.102902px;}
.ls13{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.199820px;}
.ls2{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.085316px;}
.lse{letter-spacing:-0.080598px;}
.ls4{letter-spacing:-0.072000px;}
.ls1a{letter-spacing:-0.025258px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.047462px;}
.ls6{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.093175px;}
.lsd{letter-spacing:0.109200px;}
.lsb{letter-spacing:0.120107px;}
.ls3{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.192480px;}
.lsc{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.319052px;}
.ls8{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:48.564000px;}
.ls5{letter-spacing:64.397280px;}
.ls18{letter-spacing:210.577659px;}
.ls15{letter-spacing:217.088653px;}
.ls16{letter-spacing:217.481558px;}
.ls14{letter-spacing:217.520848px;}
.ls17{letter-spacing:217.537687px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws8{word-spacing:-21.420000px;}
.ws5{word-spacing:-21.060000px;}
.wsb{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws1{word-spacing:-17.856000px;}
.wsd{word-spacing:-14.643293px;}
.ws2{word-spacing:-12.060000px;}
.ws9{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:41.246679px;}
.wse{word-spacing:43.521247px;}
.wsc{word-spacing:74.467694px;}
.wsf{word-spacing:176.986777px;}
._21{margin-left:-5.083200px;}
._7{margin-left:-4.032000px;}
._17{margin-left:-2.775840px;}
._0{margin-left:-1.324800px;}
._1{width:1.119840px;}
._6{width:2.318400px;}
._e{width:3.945600px;}
._8{width:5.616000px;}
._9{width:7.140000px;}
._18{width:8.568000px;}
._19{width:9.576000px;}
._20{width:10.896480px;}
._11{width:12.168000px;}
._a{width:13.752000px;}
._b{width:14.952000px;}
._d{width:16.188000px;}
._22{width:19.656000px;}
._14{width:20.808000px;}
._10{width:22.784880px;}
._f{width:23.904000px;}
._1c{width:25.560000px;}
._1d{width:26.568000px;}
._1e{width:28.584000px;}
._1f{width:29.664000px;}
._c{width:33.192000px;}
._2c{width:34.272000px;}
._2d{width:35.568000px;}
._15{width:37.008000px;}
._16{width:38.016000px;}
._12{width:39.240000px;}
._13{width:40.248000px;}
._1a{width:41.544000px;}
._1b{width:42.652320px;}
._23{width:119.016056px;}
._29{width:124.862434px;}
._2{width:128.251920px;}
._3{width:129.585600px;}
._5{width:151.779600px;}
._4{width:153.216000px;}
._24{width:161.335341px;}
._2a{width:170.781127px;}
._25{width:183.234577px;}
._26{width:190.605865px;}
._27{width:194.283237px;}
._2b{width:201.556896px;}
._28{width:216.386355px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs5{font-size:41.760000px;}
.fs8{font-size:42.377469px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:52.673717px;}
.fs6{font-size:52.962215px;}
.fsc{font-size:56.063022px;}
.fs9{font-size:59.760000px;}
.fsb{font-size:63.533994px;}
.fs7{font-size:63.697092px;}
.fs1{font-size:66.240000px;}
.fsd{font-size:67.435378px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:4.500000px;}
.ya0{bottom:5.760000px;}
.ye4{bottom:17.257838px;}
.ybf{bottom:17.352393px;}
.yff{bottom:19.868386px;}
.ye6{bottom:35.863079px;}
.yc1{bottom:36.059541px;}
.y101{bottom:39.670791px;}
.ycb{bottom:47.599030px;}
.yf2{bottom:55.298912px;}
.yc0{bottom:61.259573px;}
.ycd{bottom:65.533342px;}
.ye5{bottom:66.327317px;}
.y6{bottom:82.116000px;}
.y102{bottom:84.480179px;}
.ye7{bottom:91.964896px;}
.y5{bottom:102.816000px;}
.yc2{bottom:103.719168px;}
.yf0{bottom:111.593215px;}
.ycc{bottom:113.264931px;}
.y4{bottom:129.096000px;}
.yca{bottom:129.111392px;}
.y103{bottom:129.289566px;}
.yef{bottom:142.281580px;}
.ye8{bottom:147.977062px;}
.yf1{bottom:151.193955px;}
.y100{bottom:152.054190px;}
.y3{bottom:154.110000px;}
.y119{bottom:154.201126px;}
.yc3{bottom:171.415910px;}
.y114{bottom:173.214912px;}
.y2{bottom:173.550000px;}
.y104{bottom:174.127018px;}
.y111{bottom:180.694127px;}
.y115{bottom:181.620255px;}
.y112{bottom:185.942217px;}
.yee{bottom:188.794684px;}
.y113{bottom:193.224992px;}
.y50{bottom:196.230000px;}
.ydc{bottom:196.950000px;}
.y142{bottom:197.850000px;}
.y126{bottom:202.890000px;}
.ye9{bottom:204.074924px;}
.y116{bottom:205.882121px;}
.y110{bottom:210.330369px;}
.y6a{bottom:213.150000px;}
.y86{bottom:216.570000px;}
.y105{bottom:218.946228px;}
.y9e{bottom:223.770000px;}
.yf9{bottom:224.310000px;}
.y4f{bottom:227.190000px;}
.ydb{bottom:228.090000px;}
.y141{bottom:228.990000px;}
.yc9{bottom:233.547687px;}
.y125{bottom:233.850000px;}
.y30{bottom:235.290000px;}
.yc4{bottom:238.969486px;}
.y10f{bottom:246.225024px;}
.y85{bottom:247.710000px;}
.y69{bottom:250.050000px;}
.yf8{bottom:255.450000px;}
.y2f{bottom:255.990000px;}
.y9d{bottom:256.170000px;}
.y4e{bottom:258.330000px;}
.yda{bottom:259.050000px;}
.y140{bottom:259.950000px;}
.yea{bottom:260.080497px;}
.y106{bottom:263.751406px;}
.yba{bottom:264.630000px;}
.y124{bottom:264.990000px;}
.y2e{bottom:276.690000px;}
.y11a{bottom:278.513371px;}
.y84{bottom:278.670000px;}
.y158{bottom:280.110000px;}
.y68{bottom:287.130000px;}
.y9c{bottom:287.310000px;}
.y4d{bottom:289.290000px;}
.yd9{bottom:290.190000px;}
.y13f{bottom:291.090000px;}
.yf7{bottom:292.350000px;}
.yb9{bottom:295.590000px;}
.y123{bottom:295.950000px;}
.y2d{bottom:297.390000px;}
.yc5{bottom:306.668880px;}
.y107{bottom:308.556583px;}
.y11b{bottom:310.058008px;}
.y157{bottom:311.250000px;}
.y83{bottom:315.750000px;}
.yeb{bottom:316.178359px;}
.y2c{bottom:318.090000px;}
.y9b{bottom:318.270000px;}
.yed{bottom:321.201458px;}
.y13e{bottom:322.050000px;}
.yc7{bottom:322.960738px;}
.yf6{bottom:323.490000px;}
.y67{bottom:324.210000px;}
.y4c{bottom:326.370000px;}
.yb8{bottom:326.730000px;}
.y122{bottom:327.090000px;}
.yd8{bottom:327.270000px;}
.y117{bottom:334.460207px;}
.y2b{bottom:338.835000px;}
.y156{bottom:342.255000px;}
.y10c{bottom:346.499952px;}
.y82{bottom:346.935000px;}
.y9a{bottom:349.455000px;}
.y13d{bottom:353.235000px;}
.y108{bottom:353.375793px;}
.yf5{bottom:354.495000px;}
.y66{bottom:355.395000px;}
.y4b{bottom:357.555000px;}
.yb7{bottom:357.735000px;}
.y121{bottom:358.095000px;}
.yd7{bottom:358.275000px;}
.y2a{bottom:359.535000px;}
.y10e{bottom:360.756764px;}
.y118{bottom:363.885964px;}
.y10b{bottom:363.984215px;}
.yc8{bottom:365.738479px;}
.yec{bottom:372.183933px;}
.y155{bottom:373.395000px;}
.yc6{bottom:374.222456px;}
.y81{bottom:377.895000px;}
.y29{bottom:380.235000px;}
.y99{bottom:380.415000px;}
.y10a{bottom:381.482510px;}
.y13c{bottom:384.195000px;}
.yf4{bottom:385.635000px;}
.y65{bottom:386.355000px;}
.y10d{bottom:387.053315px;}
.y4a{bottom:388.515000px;}
.yb6{bottom:388.875000px;}
.y120{bottom:389.235000px;}
.yd6{bottom:389.415000px;}
.y109{bottom:398.082744px;}
.y28{bottom:400.935000px;}
.y154{bottom:404.355000px;}
.y80{bottom:408.855000px;}
.y98{bottom:411.555000px;}
.y13b{bottom:415.155000px;}
.yf3{bottom:416.595000px;}
.y64{bottom:417.495000px;}
.y49{bottom:419.655000px;}
.yb5{bottom:419.835000px;}
.y11f{bottom:420.195000px;}
.yd5{bottom:420.375000px;}
.y27{bottom:421.635000px;}
.y153{bottom:435.495000px;}
.y7f{bottom:439.995000px;}
.y26{bottom:442.335000px;}
.y97{bottom:442.515000px;}
.y13a{bottom:446.295000px;}
.ye3{bottom:447.915000px;}
.y48{bottom:450.615000px;}
.yb4{bottom:450.975000px;}
.y11e{bottom:451.335000px;}
.yd4{bottom:451.515000px;}
.y63{bottom:454.395000px;}
.y25{bottom:463.035000px;}
.y152{bottom:466.455000px;}
.y7e{bottom:470.955000px;}
.y139{bottom:477.255000px;}
.y47{bottom:481.755000px;}
.yb3{bottom:481.935000px;}
.y24{bottom:483.735000px;}
.y62{bottom:485.535000px;}
.yd3{bottom:488.415000px;}
.y11d{bottom:490.575000px;}
.y151{bottom:497.595000px;}
.y23{bottom:504.435000px;}
.y138{bottom:508.395000px;}
.y7d{bottom:510.375000px;}
.y46{bottom:512.715000px;}
.yb2{bottom:513.075000px;}
.y61{bottom:516.495000px;}
.yd2{bottom:519.555000px;}
.y96{bottom:524.775000px;}
.y22{bottom:525.135000px;}
.y11c{bottom:527.835000px;}
.yfe{bottom:527.864959px;}
.y150{bottom:528.555000px;}
.y137{bottom:539.355000px;}
.y45{bottom:543.855000px;}
.y21{bottom:545.835000px;}
.y60{bottom:547.635000px;}
.yd1{bottom:550.515000px;}
.yb1{bottom:552.135000px;}
.y7c{bottom:553.395000px;}
.y95{bottom:555.915000px;}
.y14f{bottom:559.695000px;}
.y20{bottom:566.535000px;}
.y136{bottom:570.495000px;}
.y44{bottom:574.815000px;}
.y5f{bottom:578.595000px;}
.yd0{bottom:581.655000px;}
.y7b{bottom:584.355000px;}
.y94{bottom:586.875000px;}
.y1f{bottom:587.235000px;}
.y14e{bottom:590.655000px;}
.yb0{bottom:595.335000px;}
.y135{bottom:601.455000px;}
.y43{bottom:605.985000px;}
.y1e{bottom:607.965000px;}
.ycf{bottom:612.645000px;}
.y7a{bottom:615.345000px;}
.y5e{bottom:615.705000px;}
.y93{bottom:618.045000px;}
.y14d{bottom:621.645000px;}
.yaf{bottom:626.325000px;}
.y1d{bottom:628.665000px;}
.y134{bottom:632.625000px;}
.y42{bottom:636.945000px;}
.ybe{bottom:644.114959px;}
.yce{bottom:644.145000px;}
.y79{bottom:646.485000px;}
.y5d{bottom:646.845000px;}
.y92{bottom:649.005000px;}
.y1c{bottom:649.365000px;}
.y14c{bottom:652.785000px;}
.yae{bottom:657.465000px;}
.y133{bottom:663.585000px;}
.y1b{bottom:670.065000px;}
.y41{bottom:674.025000px;}
.y78{bottom:677.445000px;}
.y5c{bottom:677.805000px;}
.y91{bottom:680.145000px;}
.y14b{bottom:683.745000px;}
.yad{bottom:688.425000px;}
.y1a{bottom:690.765000px;}
.y132{bottom:694.725000px;}
.y40{bottom:704.985000px;}
.y5b{bottom:708.945000px;}
.y90{bottom:711.105000px;}
.y19{bottom:711.465000px;}
.y77{bottom:714.525000px;}
.y14a{bottom:714.885000px;}
.yac{bottom:722.085000px;}
.y131{bottom:725.685000px;}
.y18{bottom:732.165000px;}
.y3f{bottom:736.125000px;}
.y5a{bottom:739.905000px;}
.y8f{bottom:742.245000px;}
.y76{bottom:745.665000px;}
.y149{bottom:745.845000px;}
.y17{bottom:752.865000px;}
.y130{bottom:756.825000px;}
.yab{bottom:757.005000px;}
.y3e{bottom:767.085000px;}
.y59{bottom:771.045000px;}
.y8e{bottom:773.205000px;}
.y16{bottom:773.565000px;}
.y75{bottom:776.625000px;}
.y148{bottom:776.985000px;}
.y12f{bottom:787.785000px;}
.yaa{bottom:789.585000px;}
.y15{bottom:794.265000px;}
.y3d{bottom:798.225000px;}
.y58{bottom:802.005000px;}
.y8d{bottom:804.345000px;}
.ya9{bottom:807.045000px;}
.y74{bottom:807.765000px;}
.y147{bottom:807.945000px;}
.y14{bottom:814.965000px;}
.y12e{bottom:818.925000px;}
.y3c{bottom:829.185000px;}
.ya8{bottom:829.545000px;}
.y57{bottom:833.145000px;}
.y13{bottom:835.665000px;}
.y73{bottom:838.725000px;}
.y146{bottom:839.085000px;}
.y8c{bottom:843.585000px;}
.y12d{bottom:849.885000px;}
.ya7{bottom:852.045000px;}
.y12{bottom:856.365000px;}
.y3b{bottom:860.325000px;}
.y56{bottom:864.105000px;}
.y145{bottom:870.045000px;}
.ya6{bottom:874.590000px;}
.y72{bottom:875.850000px;}
.y11{bottom:877.110000px;}
.y12c{bottom:881.070000px;}
.ye2{bottom:883.590000px;}
.y8b{bottom:886.650000px;}
.y3a{bottom:891.330000px;}
.y55{bottom:895.290000px;}
.ya5{bottom:897.090000px;}
.y10{bottom:897.810000px;}
.y144{bottom:901.230000px;}
.ye1{bottom:902.670000px;}
.y71{bottom:906.990000px;}
.y12b{bottom:912.030000px;}
.y8a{bottom:917.610000px;}
.yf{bottom:918.510000px;}
.ya4{bottom:919.590000px;}
.ye0{bottom:921.750000px;}
.y39{bottom:922.470000px;}
.y54{bottom:926.250000px;}
.y143{bottom:932.190000px;}
.y70{bottom:937.950000px;}
.ye{bottom:939.210000px;}
.ya3{bottom:942.090000px;}
.y12a{bottom:943.170000px;}
.y89{bottom:948.570000px;}
.ydf{bottom:957.210000px;}
.yd{bottom:959.910000px;}
.y38{bottom:961.530000px;}
.y53{bottom:963.330000px;}
.ya1{bottom:964.590000px;}
.y6f{bottom:968.910000px;}
.y129{bottom:974.130000px;}
.yc{bottom:980.610000px;}
.y88{bottom:980.970000px;}
.y9f{bottom:987.810000px;}
.yde{bottom:988.350000px;}
.y37{bottom:994.290000px;}
.yfd{bottom:994.830000px;}
.y6e{bottom:1000.050000px;}
.yb{bottom:1002.570000px;}
.y128{bottom:1005.270000px;}
.yfc{bottom:1013.910000px;}
.y36{bottom:1014.990000px;}
.y87{bottom:1019.310000px;}
.y52{bottom:1025.430000px;}
.ya{bottom:1030.110000px;}
.y6d{bottom:1031.010000px;}
.yfb{bottom:1032.990000px;}
.y35{bottom:1035.690000px;}
.y127{bottom:1044.510000px;}
.ydd{bottom:1050.450000px;}
.yfa{bottom:1051.890000px;}
.y34{bottom:1056.390000px;}
.y9{bottom:1057.830000px;}
.y6c{bottom:1070.430000px;}
.y33{bottom:1077.090000px;}
.ybd{bottom:1081.770000px;}
.y8{bottom:1085.370000px;}
.y51{bottom:1087.530000px;}
.y32{bottom:1097.790000px;}
.ybc{bottom:1101.030000px;}
.y7{bottom:1112.910000px;}
.y6b{bottom:1115.610000px;}
.y31{bottom:1118.490000px;}
.ybb{bottom:1119.930000px;}
.y1{bottom:1233.900000px;}
.hc{height:22.500000px;}
.hf{height:22.536000px;}
.h17{height:47.221164px;}
.h13{height:47.479799px;}
.h15{height:49.255313px;}
.h1a{height:50.259623px;}
.h1c{height:54.300930px;}
.h10{height:54.596250px;}
.h18{height:56.957233px;}
.h8{height:59.343750px;}
.h3{height:59.383125px;}
.h1b{height:60.454763px;}
.h11{height:61.779375px;}
.h2{height:64.546875px;}
.he{height:65.884219px;}
.h9{height:67.120313px;}
.hd{height:67.824844px;}
.h5{height:69.388594px;}
.h14{height:70.093641px;}
.hb{height:70.606406px;}
.ha{height:74.820586px;}
.h6{height:78.927188px;}
.h4{height:85.052461px;}
.h7{height:85.847344px;}
.h16{height:425.921861px;}
.h12{height:428.254714px;}
.h19{height:457.355240px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:193.530000px;}
.w5{width:200.910000px;}
.w3{width:394.455000px;}
.w7{width:567.905268px;}
.w6{width:578.695218px;}
.w8{width:599.025844px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:5.220000px;}
.x22{left:16.619696px;}
.x14{left:18.652232px;}
.x25{left:31.733901px;}
.x17{left:33.741514px;}
.x33{left:35.654296px;}
.x24{left:39.098368px;}
.x16{left:41.124889px;}
.x32{left:43.437251px;}
.x31{left:51.220203px;}
.x23{left:53.796830px;}
.x15{left:63.180727px;}
.x30{left:106.926346px;}
.x21{left:114.766108px;}
.x13{left:115.766936px;}
.x2{left:127.655987px;}
.x4{left:128.735987px;}
.x2d{left:130.535987px;}
.x1f{left:134.855987px;}
.x18{left:136.158115px;}
.x41{left:138.455987px;}
.xe{left:140.625000px;}
.x2c{left:142.955987px;}
.x34{left:145.976009px;}
.x11{left:148.715987px;}
.x5{left:151.229987px;}
.x2f{left:168.389990px;}
.x8{left:170.129987px;}
.x12{left:178.439980px;}
.xa{left:180.749987px;}
.x20{left:183.839980px;}
.x19{left:194.938274px;}
.xc{left:199.469987px;}
.x26{left:200.874099px;}
.x39{left:242.061309px;}
.xd{left:249.690000px;}
.x1a{left:253.625518px;}
.xb{left:261.749987px;}
.x27{left:267.540836px;}
.x7{left:278.534987px;}
.x38{left:304.333349px;}
.x1b{left:313.401283px;}
.x3a{left:316.194691px;}
.x6{left:321.734987px;}
.x28{left:335.200622px;}
.x2e{left:346.214987px;}
.x37{left:365.579467px;}
.x1c{left:372.181445px;}
.x3b{left:376.724069px;}
.x29{left:397.418492px;}
.x36{left:425.321836px;}
.x1d{left:428.399600px;}
.x3c{left:438.996107px;}
.x10{left:443.235000px;}
.x3e{left:452.754702px;}
.x2a{left:472.135554px;}
.x1{left:489.164987px;}
.x35{left:491.233790px;}
.x3d{left:502.856218px;}
.x3f{left:515.532676px;}
.x2b{left:751.829987px;}
.x1e{left:757.229987px;}
.x9{left:765.509987px;}
.x40{left:767.489987px;}
.x3{left:808.169987px;}
@media print{
.v4{vertical-align:-41.011775pt;}
.v5{vertical-align:-37.768752pt;}
.v6{vertical-align:-18.759644pt;}
.v3{vertical-align:-7.633579pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:3.592272pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:28.535913pt;}
.ls13{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.177618pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.075837pt;}
.lse{letter-spacing:-0.071642pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1a{letter-spacing:-0.022452pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.042189pt;}
.ls6{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.082822pt;}
.lsd{letter-spacing:0.097067pt;}
.lsb{letter-spacing:0.106762pt;}
.ls3{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.171093pt;}
.lsc{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.283602pt;}
.ls8{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:43.168000pt;}
.ls5{letter-spacing:57.242027pt;}
.ls18{letter-spacing:187.180142pt;}
.ls15{letter-spacing:192.967691pt;}
.ls16{letter-spacing:193.316940pt;}
.ls14{letter-spacing:193.351865pt;}
.ls17{letter-spacing:193.366833pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.720000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsd{word-spacing:-13.016261pt;}
.ws2{word-spacing:-10.720000pt;}
.ws9{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:36.663714pt;}
.wse{word-spacing:38.685553pt;}
.wsc{word-spacing:66.193506pt;}
.wsf{word-spacing:157.321579pt;}
._21{margin-left:-4.518400pt;}
._7{margin-left:-3.584000pt;}
._17{margin-left:-2.467413pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.995413pt;}
._6{width:2.060800pt;}
._e{width:3.507200pt;}
._8{width:4.992000pt;}
._9{width:6.346667pt;}
._18{width:7.616000pt;}
._19{width:8.512000pt;}
._20{width:9.685760pt;}
._11{width:10.816000pt;}
._a{width:12.224000pt;}
._b{width:13.290667pt;}
._d{width:14.389333pt;}
._22{width:17.472000pt;}
._14{width:18.496000pt;}
._10{width:20.253227pt;}
._f{width:21.248000pt;}
._1c{width:22.720000pt;}
._1d{width:23.616000pt;}
._1e{width:25.408000pt;}
._1f{width:26.368000pt;}
._c{width:29.504000pt;}
._2c{width:30.464000pt;}
._2d{width:31.616000pt;}
._15{width:32.896000pt;}
._16{width:33.792000pt;}
._12{width:34.880000pt;}
._13{width:35.776000pt;}
._1a{width:36.928000pt;}
._1b{width:37.913173pt;}
._23{width:105.792050pt;}
._29{width:110.988831pt;}
._2{width:114.001707pt;}
._3{width:115.187200pt;}
._5{width:134.915200pt;}
._4{width:136.192000pt;}
._24{width:143.409192pt;}
._2a{width:151.805446pt;}
._25{width:162.875180pt;}
._26{width:169.427435pt;}
._27{width:172.696211pt;}
._2b{width:179.161686pt;}
._28{width:192.343426pt;}
.fs5{font-size:37.120000pt;}
.fs8{font-size:37.668862pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:46.821082pt;}
.fs6{font-size:47.077525pt;}
.fsc{font-size:49.833797pt;}
.fs9{font-size:53.120000pt;}
.fsb{font-size:56.474661pt;}
.fs7{font-size:56.619637pt;}
.fs1{font-size:58.880000pt;}
.fsd{font-size:59.942558pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:4.000000pt;}
.ya0{bottom:5.120000pt;}
.ye4{bottom:15.340300pt;}
.ybf{bottom:15.424350pt;}
.yff{bottom:17.660788pt;}
.ye6{bottom:31.878293pt;}
.yc1{bottom:32.052925pt;}
.y101{bottom:35.262925pt;}
.ycb{bottom:42.310249pt;}
.yf2{bottom:49.154589pt;}
.yc0{bottom:54.452954pt;}
.ycd{bottom:58.251859pt;}
.ye5{bottom:58.957615pt;}
.y6{bottom:72.992000pt;}
.y102{bottom:75.093492pt;}
.ye7{bottom:81.746575pt;}
.y5{bottom:91.392000pt;}
.yc2{bottom:92.194816pt;}
.yf0{bottom:99.193969pt;}
.ycc{bottom:100.679939pt;}
.y4{bottom:114.752000pt;}
.yca{bottom:114.765682pt;}
.y103{bottom:114.924059pt;}
.yef{bottom:126.472516pt;}
.ye8{bottom:131.535166pt;}
.yf1{bottom:134.394626pt;}
.y100{bottom:135.159280pt;}
.y3{bottom:136.986667pt;}
.y119{bottom:137.067667pt;}
.yc3{bottom:152.369698pt;}
.y114{bottom:153.968810pt;}
.y2{bottom:154.266667pt;}
.y104{bottom:154.779571pt;}
.y111{bottom:160.617002pt;}
.y115{bottom:161.440227pt;}
.y112{bottom:165.281971pt;}
.yee{bottom:167.817497pt;}
.y113{bottom:171.755548pt;}
.y50{bottom:174.426667pt;}
.ydc{bottom:175.066667pt;}
.y142{bottom:175.866667pt;}
.y126{bottom:180.346667pt;}
.ye9{bottom:181.399932pt;}
.y116{bottom:183.006330pt;}
.y110{bottom:186.960328pt;}
.y6a{bottom:189.466667pt;}
.y86{bottom:192.506667pt;}
.y105{bottom:194.618869pt;}
.y9e{bottom:198.906667pt;}
.yf9{bottom:199.386667pt;}
.y4f{bottom:201.946667pt;}
.ydb{bottom:202.746667pt;}
.y141{bottom:203.546667pt;}
.yc9{bottom:207.597944pt;}
.y125{bottom:207.866667pt;}
.y30{bottom:209.146667pt;}
.yc4{bottom:212.417321pt;}
.y10f{bottom:218.866688pt;}
.y85{bottom:220.186667pt;}
.y69{bottom:222.266667pt;}
.yf8{bottom:227.066667pt;}
.y2f{bottom:227.546667pt;}
.y9d{bottom:227.706667pt;}
.y4e{bottom:229.626667pt;}
.yda{bottom:230.266667pt;}
.y140{bottom:231.066667pt;}
.yea{bottom:231.182664pt;}
.y106{bottom:234.445694pt;}
.yba{bottom:235.226667pt;}
.y124{bottom:235.546667pt;}
.y2e{bottom:245.946667pt;}
.y11a{bottom:247.567441pt;}
.y84{bottom:247.706667pt;}
.y158{bottom:248.986667pt;}
.y68{bottom:255.226667pt;}
.y9c{bottom:255.386667pt;}
.y4d{bottom:257.146667pt;}
.yd9{bottom:257.946667pt;}
.y13f{bottom:258.746667pt;}
.yf7{bottom:259.866667pt;}
.yb9{bottom:262.746667pt;}
.y123{bottom:263.066667pt;}
.y2d{bottom:264.346667pt;}
.yc5{bottom:272.594560pt;}
.y107{bottom:274.272518pt;}
.y11b{bottom:275.607118pt;}
.y157{bottom:276.666667pt;}
.y83{bottom:280.666667pt;}
.yeb{bottom:281.047430pt;}
.y2c{bottom:282.746667pt;}
.y9b{bottom:282.906667pt;}
.yed{bottom:285.512407pt;}
.y13e{bottom:286.266667pt;}
.yc7{bottom:287.076212pt;}
.yf6{bottom:287.546667pt;}
.y67{bottom:288.186667pt;}
.y4c{bottom:290.106667pt;}
.yb8{bottom:290.426667pt;}
.y122{bottom:290.746667pt;}
.yd8{bottom:290.906667pt;}
.y117{bottom:297.297962pt;}
.y2b{bottom:301.186667pt;}
.y156{bottom:304.226667pt;}
.y10c{bottom:307.999957pt;}
.y82{bottom:308.386667pt;}
.y9a{bottom:310.626667pt;}
.y13d{bottom:313.986667pt;}
.y108{bottom:314.111816pt;}
.yf5{bottom:315.106667pt;}
.y66{bottom:315.906667pt;}
.y4b{bottom:317.826667pt;}
.yb7{bottom:317.986667pt;}
.y121{bottom:318.306667pt;}
.yd7{bottom:318.466667pt;}
.y2a{bottom:319.586667pt;}
.y10e{bottom:320.672679pt;}
.y118{bottom:323.454190pt;}
.y10b{bottom:323.541524pt;}
.yc8{bottom:325.100870pt;}
.yec{bottom:330.830163pt;}
.y155{bottom:331.906667pt;}
.yc6{bottom:332.642183pt;}
.y81{bottom:335.906667pt;}
.y29{bottom:337.986667pt;}
.y99{bottom:338.146667pt;}
.y10a{bottom:339.095564pt;}
.y13c{bottom:341.506667pt;}
.yf4{bottom:342.786667pt;}
.y65{bottom:343.426667pt;}
.y10d{bottom:344.047391pt;}
.y4a{bottom:345.346667pt;}
.yb6{bottom:345.666667pt;}
.y120{bottom:345.986667pt;}
.yd6{bottom:346.146667pt;}
.y109{bottom:353.851328pt;}
.y28{bottom:356.386667pt;}
.y154{bottom:359.426667pt;}
.y80{bottom:363.426667pt;}
.y98{bottom:365.826667pt;}
.y13b{bottom:369.026667pt;}
.yf3{bottom:370.306667pt;}
.y64{bottom:371.106667pt;}
.y49{bottom:373.026667pt;}
.yb5{bottom:373.186667pt;}
.y11f{bottom:373.506667pt;}
.yd5{bottom:373.666667pt;}
.y27{bottom:374.786667pt;}
.y153{bottom:387.106667pt;}
.y7f{bottom:391.106667pt;}
.y26{bottom:393.186667pt;}
.y97{bottom:393.346667pt;}
.y13a{bottom:396.706667pt;}
.ye3{bottom:398.146667pt;}
.y48{bottom:400.546667pt;}
.yb4{bottom:400.866667pt;}
.y11e{bottom:401.186667pt;}
.yd4{bottom:401.346667pt;}
.y63{bottom:403.906667pt;}
.y25{bottom:411.586667pt;}
.y152{bottom:414.626667pt;}
.y7e{bottom:418.626667pt;}
.y139{bottom:424.226667pt;}
.y47{bottom:428.226667pt;}
.yb3{bottom:428.386667pt;}
.y24{bottom:429.986667pt;}
.y62{bottom:431.586667pt;}
.yd3{bottom:434.146667pt;}
.y11d{bottom:436.066667pt;}
.y151{bottom:442.306667pt;}
.y23{bottom:448.386667pt;}
.y138{bottom:451.906667pt;}
.y7d{bottom:453.666667pt;}
.y46{bottom:455.746667pt;}
.yb2{bottom:456.066667pt;}
.y61{bottom:459.106667pt;}
.yd2{bottom:461.826667pt;}
.y96{bottom:466.466667pt;}
.y22{bottom:466.786667pt;}
.y11c{bottom:469.186667pt;}
.yfe{bottom:469.213297pt;}
.y150{bottom:469.826667pt;}
.y137{bottom:479.426667pt;}
.y45{bottom:483.426667pt;}
.y21{bottom:485.186667pt;}
.y60{bottom:486.786667pt;}
.yd1{bottom:489.346667pt;}
.yb1{bottom:490.786667pt;}
.y7c{bottom:491.906667pt;}
.y95{bottom:494.146667pt;}
.y14f{bottom:497.506667pt;}
.y20{bottom:503.586667pt;}
.y136{bottom:507.106667pt;}
.y44{bottom:510.946667pt;}
.y5f{bottom:514.306667pt;}
.yd0{bottom:517.026667pt;}
.y7b{bottom:519.426667pt;}
.y94{bottom:521.666667pt;}
.y1f{bottom:521.986667pt;}
.y14e{bottom:525.026667pt;}
.yb0{bottom:529.186667pt;}
.y135{bottom:534.626667pt;}
.y43{bottom:538.653333pt;}
.y1e{bottom:540.413333pt;}
.ycf{bottom:544.573333pt;}
.y7a{bottom:546.973333pt;}
.y5e{bottom:547.293333pt;}
.y93{bottom:549.373333pt;}
.y14d{bottom:552.573333pt;}
.yaf{bottom:556.733333pt;}
.y1d{bottom:558.813333pt;}
.y134{bottom:562.333333pt;}
.y42{bottom:566.173333pt;}
.ybe{bottom:572.546630pt;}
.yce{bottom:572.573333pt;}
.y79{bottom:574.653333pt;}
.y5d{bottom:574.973333pt;}
.y92{bottom:576.893333pt;}
.y1c{bottom:577.213333pt;}
.y14c{bottom:580.253333pt;}
.yae{bottom:584.413333pt;}
.y133{bottom:589.853333pt;}
.y1b{bottom:595.613333pt;}
.y41{bottom:599.133333pt;}
.y78{bottom:602.173333pt;}
.y5c{bottom:602.493333pt;}
.y91{bottom:604.573333pt;}
.y14b{bottom:607.773333pt;}
.yad{bottom:611.933333pt;}
.y1a{bottom:614.013333pt;}
.y132{bottom:617.533333pt;}
.y40{bottom:626.653333pt;}
.y5b{bottom:630.173333pt;}
.y90{bottom:632.093333pt;}
.y19{bottom:632.413333pt;}
.y77{bottom:635.133333pt;}
.y14a{bottom:635.453333pt;}
.yac{bottom:641.853333pt;}
.y131{bottom:645.053333pt;}
.y18{bottom:650.813333pt;}
.y3f{bottom:654.333333pt;}
.y5a{bottom:657.693333pt;}
.y8f{bottom:659.773333pt;}
.y76{bottom:662.813333pt;}
.y149{bottom:662.973333pt;}
.y17{bottom:669.213333pt;}
.y130{bottom:672.733333pt;}
.yab{bottom:672.893333pt;}
.y3e{bottom:681.853333pt;}
.y59{bottom:685.373333pt;}
.y8e{bottom:687.293333pt;}
.y16{bottom:687.613333pt;}
.y75{bottom:690.333333pt;}
.y148{bottom:690.653333pt;}
.y12f{bottom:700.253333pt;}
.yaa{bottom:701.853333pt;}
.y15{bottom:706.013333pt;}
.y3d{bottom:709.533333pt;}
.y58{bottom:712.893333pt;}
.y8d{bottom:714.973333pt;}
.ya9{bottom:717.373333pt;}
.y74{bottom:718.013333pt;}
.y147{bottom:718.173333pt;}
.y14{bottom:724.413333pt;}
.y12e{bottom:727.933333pt;}
.y3c{bottom:737.053333pt;}
.ya8{bottom:737.373333pt;}
.y57{bottom:740.573333pt;}
.y13{bottom:742.813333pt;}
.y73{bottom:745.533333pt;}
.y146{bottom:745.853333pt;}
.y8c{bottom:749.853333pt;}
.y12d{bottom:755.453333pt;}
.ya7{bottom:757.373333pt;}
.y12{bottom:761.213333pt;}
.y3b{bottom:764.733333pt;}
.y56{bottom:768.093333pt;}
.y145{bottom:773.373333pt;}
.ya6{bottom:777.413333pt;}
.y72{bottom:778.533333pt;}
.y11{bottom:779.653333pt;}
.y12c{bottom:783.173333pt;}
.ye2{bottom:785.413333pt;}
.y8b{bottom:788.133333pt;}
.y3a{bottom:792.293333pt;}
.y55{bottom:795.813333pt;}
.ya5{bottom:797.413333pt;}
.y10{bottom:798.053333pt;}
.y144{bottom:801.093333pt;}
.ye1{bottom:802.373333pt;}
.y71{bottom:806.213333pt;}
.y12b{bottom:810.693333pt;}
.y8a{bottom:815.653333pt;}
.yf{bottom:816.453333pt;}
.ya4{bottom:817.413333pt;}
.ye0{bottom:819.333333pt;}
.y39{bottom:819.973333pt;}
.y54{bottom:823.333333pt;}
.y143{bottom:828.613333pt;}
.y70{bottom:833.733333pt;}
.ye{bottom:834.853333pt;}
.ya3{bottom:837.413333pt;}
.y12a{bottom:838.373333pt;}
.y89{bottom:843.173333pt;}
.ydf{bottom:850.853333pt;}
.yd{bottom:853.253333pt;}
.y38{bottom:854.693333pt;}
.y53{bottom:856.293333pt;}
.ya1{bottom:857.413333pt;}
.y6f{bottom:861.253333pt;}
.y129{bottom:865.893333pt;}
.yc{bottom:871.653333pt;}
.y88{bottom:871.973333pt;}
.y9f{bottom:878.053333pt;}
.yde{bottom:878.533333pt;}
.y37{bottom:883.813333pt;}
.yfd{bottom:884.293333pt;}
.y6e{bottom:888.933333pt;}
.yb{bottom:891.173333pt;}
.y128{bottom:893.573333pt;}
.yfc{bottom:901.253333pt;}
.y36{bottom:902.213333pt;}
.y87{bottom:906.053333pt;}
.y52{bottom:911.493333pt;}
.ya{bottom:915.653333pt;}
.y6d{bottom:916.453333pt;}
.yfb{bottom:918.213333pt;}
.y35{bottom:920.613333pt;}
.y127{bottom:928.453333pt;}
.ydd{bottom:933.733333pt;}
.yfa{bottom:935.013333pt;}
.y34{bottom:939.013333pt;}
.y9{bottom:940.293333pt;}
.y6c{bottom:951.493333pt;}
.y33{bottom:957.413333pt;}
.ybd{bottom:961.573333pt;}
.y8{bottom:964.773333pt;}
.y51{bottom:966.693333pt;}
.y32{bottom:975.813333pt;}
.ybc{bottom:978.693333pt;}
.y7{bottom:989.253333pt;}
.y6b{bottom:991.653333pt;}
.y31{bottom:994.213333pt;}
.ybb{bottom:995.493333pt;}
.y1{bottom:1096.800000pt;}
.hc{height:20.000000pt;}
.hf{height:20.032000pt;}
.h17{height:41.974368pt;}
.h13{height:42.204265pt;}
.h15{height:43.782500pt;}
.h1a{height:44.675221pt;}
.h1c{height:48.267493pt;}
.h10{height:48.530000pt;}
.h18{height:50.628652pt;}
.h8{height:52.750000pt;}
.h3{height:52.785000pt;}
.h1b{height:53.737567pt;}
.h11{height:54.915000pt;}
.h2{height:57.375000pt;}
.he{height:58.563750pt;}
.h9{height:59.662500pt;}
.hd{height:60.288750pt;}
.h5{height:61.678750pt;}
.h14{height:62.305459pt;}
.hb{height:62.761250pt;}
.ha{height:66.507188pt;}
.h6{height:70.157500pt;}
.h4{height:75.602187pt;}
.h7{height:76.308750pt;}
.h16{height:378.597210pt;}
.h12{height:380.670857pt;}
.h19{height:406.537991pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:172.026667pt;}
.w5{width:178.586667pt;}
.w3{width:350.626667pt;}
.w7{width:504.804682pt;}
.w6{width:514.395749pt;}
.w8{width:532.467417pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:4.640000pt;}
.x22{left:14.773064pt;}
.x14{left:16.579761pt;}
.x25{left:28.207912pt;}
.x17{left:29.992457pt;}
.x33{left:31.692708pt;}
.x24{left:34.754105pt;}
.x16{left:36.555457pt;}
.x32{left:38.610890pt;}
.x31{left:45.529070pt;}
.x23{left:47.819404pt;}
.x15{left:56.160646pt;}
.x30{left:95.045641pt;}
.x21{left:102.014318pt;}
.x13{left:102.903943pt;}
.x2{left:113.471988pt;}
.x4{left:114.431988pt;}
.x2d{left:116.031988pt;}
.x1f{left:119.871988pt;}
.x18{left:121.029435pt;}
.x41{left:123.071988pt;}
.xe{left:125.000000pt;}
.x2c{left:127.071988pt;}
.x34{left:129.756452pt;}
.x11{left:132.191988pt;}
.x5{left:134.426655pt;}
.x2f{left:149.679991pt;}
.x8{left:151.226655pt;}
.x12{left:158.613315pt;}
.xa{left:160.666655pt;}
.x20{left:163.413315pt;}
.x19{left:173.278466pt;}
.xc{left:177.306655pt;}
.x26{left:178.554755pt;}
.x39{left:215.165608pt;}
.xd{left:221.946667pt;}
.x1a{left:225.444905pt;}
.xb{left:232.666655pt;}
.x27{left:237.814077pt;}
.x7{left:247.586655pt;}
.x38{left:270.518532pt;}
.x1b{left:278.578918pt;}
.x3a{left:281.061947pt;}
.x6{left:285.986655pt;}
.x28{left:297.956109pt;}
.x2e{left:307.746655pt;}
.x37{left:324.959526pt;}
.x1c{left:330.827951pt;}
.x3b{left:334.865840pt;}
.x29{left:353.260882pt;}
.x36{left:378.063854pt;}
.x1d{left:380.799645pt;}
.x3c{left:390.218762pt;}
.x10{left:393.986667pt;}
.x3e{left:402.448624pt;}
.x2a{left:419.676048pt;}
.x1{left:434.813322pt;}
.x35{left:436.652258pt;}
.x3d{left:446.983305pt;}
.x3f{left:458.251268pt;}
.x2b{left:668.293322pt;}
.x1e{left:673.093322pt;}
.x9{left:680.453322pt;}
.x40{left:682.213322pt;}
.x3{left:718.373322pt;}
}




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