
    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_ab35c7502e5d2c88315e6d9e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_190fc012fc3c375106354030.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_dc7da99acd606f2ab104999c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d31bb764e492e34b089bc9d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_40d22f4afbc16cc9f2ca96a7.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_96b775ca4e25fbed44d5a223.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_d54906078527b4444eb25324.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5ea4eb796467ac9e72757fa0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_774d47a49aa063b38fea1f29.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_699f3019f508dde769c0775f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.766602;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_d7ca841bbf3f96d3d375e056.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.879883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.296000px;}
.lsf{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.432000px;}
.ls5{letter-spacing:-0.423600px;}
.ls2{letter-spacing:-0.382800px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.576000px;}
.ls6{letter-spacing:0.720000px;}
.ls0{letter-spacing:0.984960px;}
.ls16{letter-spacing:1.008000px;}
.lsb{letter-spacing:3.744000px;}
.lsc{letter-spacing:5.184000px;}
.ls1b{letter-spacing:6.480000px;}
.ls15{letter-spacing:11.088000px;}
.ls19{letter-spacing:13.409280px;}
.ls4{letter-spacing:28.080000px;}
.ls12{letter-spacing:31.824000px;}
.ls9{letter-spacing:33.264000px;}
.ls3{letter-spacing:33.276000px;}
.ls10{letter-spacing:36.144000px;}
.ls14{letter-spacing:43.666560px;}
.ls11{letter-spacing:54.876000px;}
.ls13{letter-spacing:63.838560px;}
.ls1a{letter-spacing:83.837280px;}
.ls7{letter-spacing:87.984000px;}
.ls1c{letter-spacing:160.560000px;}
.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:-60.480000px;}
.wsa{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-13.244880px;}
.ws1{word-spacing:-11.983920px;}
.ws0{word-spacing:-10.739520px;}
.ws9{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-2.056320px;}
._2{margin-left:-1.028160px;}
._1{width:1.209600px;}
._3{width:2.246400px;}
._4{width:3.397920px;}
._c{width:4.402080px;}
._13{width:5.431680px;}
._12{width:6.552000px;}
._18{width:7.568640px;}
._f{width:8.671680px;}
._e{width:9.760320px;}
._d{width:10.800000px;}
._15{width:12.096000px;}
._11{width:13.360320px;}
._10{width:14.904000px;}
._14{width:16.154400px;}
._1d{width:18.034080px;}
._b{width:20.016000px;}
._a{width:21.096000px;}
._9{width:22.901760px;}
._8{width:23.958720px;}
._1e{width:25.113600px;}
._1a{width:26.208000px;}
._19{width:27.544320px;}
._1c{width:29.534400px;}
._22{width:30.657600px;}
._21{width:31.720320px;}
._17{width:33.335520px;}
._16{width:34.560000px;}
._1b{width:36.147360px;}
._6{width:37.181280px;}
._7{width:39.024000px;}
._23{width:40.072320px;}
._5{width:41.094720px;}
._20{width:43.334400px;}
._1f{width:45.383520px;}
._24{width:46.574880px;}
._26{width:51.552000px;}
._27{width:53.187840px;}
._29{width:65.180160px;}
._2a{width:66.386880px;}
._2d{width:71.798400px;}
._37{width:81.630720px;}
._38{width:85.692000px;}
._32{width:93.802560px;}
._2b{width:100.538400px;}
._34{width:113.514720px;}
._28{width:128.902560px;}
._2c{width:130.598880px;}
._2e{width:133.753440px;}
._31{width:138.168960px;}
._30{width:145.382400px;}
._2f{width:152.528160px;}
._35{width:172.973280px;}
._36{width:176.984160px;}
._33{width:193.680000px;}
._25{width:295.704000px;}
.fc6{color:rgb(38,74,96);}
.fc4{color:rgb(250,191,143);}
.fc2{color:rgb(0,0,255);}
.fc7{color:rgb(34,34,34);}
.fc5{color:rgb(1,2,5);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(189,3,34);}
.fs4{font-size:47.520000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.240000px;}
.y32{bottom:3.600000px;}
.y10d{bottom:3.960000px;}
.y126{bottom:4.320000px;}
.ya{bottom:17.280000px;}
.y8{bottom:18.000000px;}
.y10e{bottom:27.720000px;}
.y117{bottom:28.080000px;}
.y111{bottom:29.565000px;}
.y33{bottom:30.600000px;}
.y7{bottom:32.400000px;}
.y6{bottom:37.080000px;}
.y110{bottom:53.685000px;}
.y31{bottom:57.240000px;}
.y30{bottom:91.476000px;}
.y5{bottom:98.676000px;}
.y2e{bottom:150.150000px;}
.yfa{bottom:153.750000px;}
.y157{bottom:154.110000px;}
.y6f{bottom:156.270000px;}
.y53{bottom:157.710000px;}
.ydc{bottom:159.870000px;}
.ya1{bottom:164.190000px;}
.y123{bottom:164.910000px;}
.y181{bottom:171.030000px;}
.y8d{bottom:171.750000px;}
.y114{bottom:174.270000px;}
.y1b3{bottom:180.390000px;}
.y2d{bottom:181.110000px;}
.yf9{bottom:184.710000px;}
.y156{bottom:185.070000px;}
.y6e{bottom:187.590000px;}
.y52{bottom:189.030000px;}
.ybc{bottom:190.110000px;}
.ydb{bottom:191.190000px;}
.y10f{bottom:191.910000px;}
.y1d5{bottom:192.270000px;}
.ya0{bottom:195.150000px;}
.y122{bottom:195.870000px;}
.y1b2{bottom:200.955000px;}
.y180{bottom:202.395000px;}
.y8c{bottom:202.755000px;}
.y2c{bottom:212.115000px;}
.y1d4{bottom:213.195000px;}
.yf8{bottom:216.075000px;}
.y155{bottom:216.435000px;}
.y113{bottom:216.795000px;}
.y6d{bottom:218.595000px;}
.y51{bottom:220.035000px;}
.yda{bottom:222.195000px;}
.y9f{bottom:226.155000px;}
.y121{bottom:226.875000px;}
.ybb{bottom:230.475000px;}
.y17f{bottom:233.355000px;}
.y8b{bottom:233.715000px;}
.y112{bottom:241.635000px;}
.y2b{bottom:243.075000px;}
.y160{bottom:244.155000px;}
.y1d3{bottom:245.595000px;}
.yf7{bottom:247.035000px;}
.y154{bottom:247.395000px;}
.y6c{bottom:249.555000px;}
.y50{bottom:250.995000px;}
.yd9{bottom:253.155000px;}
.y1b1{bottom:254.595000px;}
.y9e{bottom:257.115000px;}
.y120{bottom:258.195000px;}
.y17e{bottom:264.315000px;}
.y8a{bottom:266.475000px;}
.yba{bottom:270.435000px;}
.y2a{bottom:274.395000px;}
.y15f{bottom:275.115000px;}
.yf6{bottom:277.995000px;}
.y153{bottom:278.355000px;}
.y6b{bottom:280.515000px;}
.y4f{bottom:281.955000px;}
.yd8{bottom:284.115000px;}
.y9d{bottom:288.435000px;}
.y11f{bottom:289.155000px;}
.y17d{bottom:295.275000px;}
.y1d2{bottom:298.875000px;}
.y89{bottom:299.235000px;}
.yb9{bottom:301.395000px;}
.y29{bottom:305.355000px;}
.y15e{bottom:306.075000px;}
.y1b0{bottom:307.515000px;}
.yf5{bottom:308.955000px;}
.y152{bottom:309.315000px;}
.y6a{bottom:311.835000px;}
.y4e{bottom:313.275000px;}
.y10c{bottom:315.075000px;}
.yd7{bottom:315.435000px;}
.y9c{bottom:319.395000px;}
.y1d1{bottom:320.115000px;}
.y17c{bottom:326.625000px;}
.y1af{bottom:328.785000px;}
.y28{bottom:336.345000px;}
.y15d{bottom:337.425000px;}
.y88{bottom:339.585000px;}
.yf4{bottom:340.305000px;}
.y151{bottom:340.665000px;}
.y11e{bottom:341.025000px;}
.yb8{bottom:341.385000px;}
.y69{bottom:342.825000px;}
.y10b{bottom:343.905000px;}
.y4d{bottom:344.265000px;}
.yd6{bottom:346.425000px;}
.y1ae{bottom:349.305000px;}
.y9b{bottom:350.385000px;}
.y196{bottom:352.185000px;}
.y17b{bottom:357.585000px;}
.y27{bottom:367.305000px;}
.y15c{bottom:368.385000px;}
.y87{bottom:370.545000px;}
.yf3{bottom:371.265000px;}
.y150{bottom:371.625000px;}
.y11d{bottom:372.345000px;}
.y1d0{bottom:373.065000px;}
.y68{bottom:373.785000px;}
.y4c{bottom:375.225000px;}
.yd5{bottom:377.385000px;}
.y10a{bottom:378.105000px;}
.yb7{bottom:381.705000px;}
.y9a{bottom:383.145000px;}
.y17a{bottom:388.545000px;}
.y1cf{bottom:393.945000px;}
.y15b{bottom:399.345000px;}
.y26{bottom:401.145000px;}
.y86{bottom:401.505000px;}
.yf2{bottom:402.225000px;}
.y14f{bottom:402.585000px;}
.y67{bottom:404.745000px;}
.y1eb{bottom:405.825000px;}
.y4b{bottom:406.185000px;}
.yd4{bottom:408.345000px;}
.y109{bottom:409.065000px;}
.yb6{bottom:412.665000px;}
.y145{bottom:414.105000px;}
.y99{bottom:414.465000px;}
.y1ce{bottom:414.825000px;}
.y179{bottom:419.505000px;}
.y11c{bottom:424.185000px;}
.y15a{bottom:427.065000px;}
.y25{bottom:432.105000px;}
.y85{bottom:432.465000px;}
.yf1{bottom:433.185000px;}
.y14e{bottom:433.545000px;}
.y195{bottom:434.265000px;}
.y1ad{bottom:435.345000px;}
.y66{bottom:436.065000px;}
.y4a{bottom:437.505000px;}
.y1ea{bottom:438.585000px;}
.y108{bottom:440.025000px;}
.yd3{bottom:441.105000px;}
.yb5{bottom:443.625000px;}
.y144{bottom:445.065000px;}
.y98{bottom:445.425000px;}
.y1cd{bottom:447.225000px;}
.y16c{bottom:449.025000px;}
.y178{bottom:450.870000px;}
.y11b{bottom:455.190000px;}
.y24{bottom:463.110000px;}
.y84{bottom:463.830000px;}
.yf0{bottom:464.550000px;}
.y194{bottom:465.270000px;}
.y65{bottom:467.070000px;}
.y1ac{bottom:467.790000px;}
.y49{bottom:468.510000px;}
.y107{bottom:471.030000px;}
.yd2{bottom:472.470000px;}
.yb4{bottom:474.630000px;}
.y143{bottom:476.070000px;}
.y97{bottom:476.430000px;}
.y1cc{bottom:480.030000px;}
.y16b{bottom:480.390000px;}
.y177{bottom:481.830000px;}
.y11a{bottom:486.510000px;}
.y1ab{bottom:488.670000px;}
.y1e9{bottom:492.270000px;}
.y23{bottom:494.430000px;}
.y83{bottom:494.790000px;}
.yef{bottom:495.510000px;}
.y14d{bottom:495.870000px;}
.y193{bottom:496.230000px;}
.y64{bottom:498.030000px;}
.y48{bottom:499.470000px;}
.y106{bottom:502.350000px;}
.yd1{bottom:503.430000px;}
.yb3{bottom:505.950000px;}
.y142{bottom:507.030000px;}
.y96{bottom:507.750000px;}
.y16a{bottom:511.350000px;}
.y1cb{bottom:512.430000px;}
.y176{bottom:512.790000px;}
.y118{bottom:519.990000px;}
.y1aa{bottom:521.070000px;}
.y22{bottom:525.390000px;}
.y82{bottom:525.750000px;}
.yee{bottom:526.470000px;}
.y14c{bottom:526.830000px;}
.y192{bottom:527.190000px;}
.y63{bottom:528.990000px;}
.y47{bottom:530.430000px;}
.y1ca{bottom:533.670000px;}
.yd0{bottom:534.750000px;}
.yb2{bottom:536.910000px;}
.y141{bottom:538.350000px;}
.y169{bottom:542.310000px;}
.y175{bottom:543.750000px;}
.y116{bottom:544.470000px;}
.y1e8{bottom:545.190000px;}
.y95{bottom:547.710000px;}
.y1c9{bottom:554.190000px;}
.y21{bottom:556.350000px;}
.y81{bottom:556.710000px;}
.yed{bottom:557.430000px;}
.y14b{bottom:557.790000px;}
.y191{bottom:558.510000px;}
.y62{bottom:560.310000px;}
.y46{bottom:561.750000px;}
.y1a9{bottom:562.830000px;}
.ycf{bottom:565.710000px;}
.y1e7{bottom:566.430000px;}
.yb1{bottom:567.870000px;}
.y140{bottom:569.310000px;}
.y168{bottom:573.270000px;}
.y174{bottom:575.100000px;}
.y94{bottom:578.700000px;}
.y1c8{bottom:586.620000px;}
.y20{bottom:587.340000px;}
.y80{bottom:588.060000px;}
.y119{bottom:588.420000px;}
.yec{bottom:588.780000px;}
.y190{bottom:589.500000px;}
.y61{bottom:591.300000px;}
.y45{bottom:592.740000px;}
.y115{bottom:593.460000px;}
.y1a8{bottom:595.260000px;}
.yce{bottom:596.700000px;}
.yb0{bottom:598.860000px;}
.y13f{bottom:600.300000px;}
.y105{bottom:601.380000px;}
.y167{bottom:604.620000px;}
.y130{bottom:606.060000px;}
.y1c7{bottom:607.860000px;}
.y1a7{bottom:616.500000px;}
.y1f{bottom:618.660000px;}
.y7f{bottom:619.020000px;}
.yeb{bottom:619.740000px;}
.y14a{bottom:620.100000px;}
.y18f{bottom:620.460000px;}
.y60{bottom:622.260000px;}
.y44{bottom:623.700000px;}
.ycd{bottom:627.660000px;}
.y13e{bottom:631.260000px;}
.yaf{bottom:631.980000px;}
.y104{bottom:632.340000px;}
.y166{bottom:635.580000px;}
.y173{bottom:637.020000px;}
.y1c6{bottom:640.260000px;}
.y1e6{bottom:640.620000px;}
.y1a6{bottom:648.540000px;}
.y1e{bottom:649.620000px;}
.y7e{bottom:649.980000px;}
.yea{bottom:650.700000px;}
.y149{bottom:651.060000px;}
.y18e{bottom:651.420000px;}
.y5f{bottom:653.220000px;}
.y12f{bottom:654.300000px;}
.y43{bottom:654.660000px;}
.ycc{bottom:658.980000px;}
.y1c5{bottom:661.140000px;}
.y13d{bottom:662.580000px;}
.y103{bottom:663.300000px;}
.y165{bottom:666.540000px;}
.y172{bottom:667.980000px;}
.y1a5{bottom:669.780000px;}
.yae{bottom:671.940000px;}
.y1e5{bottom:672.660000px;}
.y12e{bottom:679.140000px;}
.y1d{bottom:680.580000px;}
.y7d{bottom:680.940000px;}
.ye9{bottom:681.660000px;}
.y148{bottom:682.020000px;}
.y18d{bottom:682.740000px;}
.y5e{bottom:684.540000px;}
.y42{bottom:685.620000px;}
.ycb{bottom:689.940000px;}
.y13c{bottom:693.540000px;}
.y1e4{bottom:693.900000px;}
.y102{bottom:696.060000px;}
.y164{bottom:697.500000px;}
.y171{bottom:698.940000px;}
.y1a4{bottom:702.210000px;}
.yad{bottom:702.930000px;}
.y12d{bottom:704.010000px;}
.y1c{bottom:711.570000px;}
.y93{bottom:711.930000px;}
.ye8{bottom:713.010000px;}
.y7c{bottom:713.730000px;}
.y1c4{bottom:714.090000px;}
.y1e3{bottom:714.450000px;}
.y5d{bottom:715.530000px;}
.y41{bottom:716.970000px;}
.yca{bottom:720.930000px;}
.y1a3{bottom:723.090000px;}
.y13b{bottom:724.530000px;}
.y12c{bottom:728.850000px;}
.y147{bottom:730.290000px;}
.yac{bottom:733.890000px;}
.y1b{bottom:742.890000px;}
.ye7{bottom:743.970000px;}
.y18c{bottom:744.690000px;}
.y7b{bottom:745.050000px;}
.y101{bottom:745.410000px;}
.y5c{bottom:746.490000px;}
.y1c3{bottom:746.850000px;}
.y40{bottom:747.930000px;}
.yc9{bottom:751.890000px;}
.y12b{bottom:753.330000px;}
.y1a2{bottom:755.490000px;}
.y163{bottom:759.810000px;}
.y170{bottom:761.250000px;}
.yab{bottom:765.210000px;}
.y1a{bottom:767.370000px;}
.y1c2{bottom:768.090000px;}
.y92{bottom:774.210000px;}
.ye6{bottom:774.930000px;}
.y18b{bottom:775.650000px;}
.y7a{bottom:776.010000px;}
.y100{bottom:776.370000px;}
.y13a{bottom:776.730000px;}
.y5b{bottom:777.450000px;}
.y12a{bottom:778.170000px;}
.y3f{bottom:778.890000px;}
.y1e2{bottom:779.610000px;}
.yc8{bottom:783.210000px;}
.y19{bottom:784.290000px;}
.y1c1{bottom:788.610000px;}
.y162{bottom:790.770000px;}
.y16f{bottom:792.210000px;}
.yaa{bottom:796.170000px;}
.y1a1{bottom:797.250000px;}
.y1e1{bottom:800.850000px;}
.y129{bottom:803.010000px;}
.y18{bottom:804.810000px;}
.y91{bottom:805.170000px;}
.ye5{bottom:805.890000px;}
.y18a{bottom:806.970000px;}
.y79{bottom:807.330000px;}
.y139{bottom:807.690000px;}
.y5a{bottom:808.410000px;}
.y3e{bottom:809.850000px;}
.yc7{bottom:814.170000px;}
.y161{bottom:818.130000px;}
.y1c0{bottom:821.010000px;}
.y1e0{bottom:821.370000px;}
.y16e{bottom:823.170000px;}
.y17{bottom:825.690000px;}
.ya9{bottom:827.175000px;}
.y128{bottom:827.895000px;}
.y90{bottom:836.175000px;}
.ye4{bottom:837.255000px;}
.y189{bottom:837.975000px;}
.y78{bottom:838.335000px;}
.y138{bottom:838.695000px;}
.y59{bottom:839.775000px;}
.y3d{bottom:841.215000px;}
.y1bf{bottom:842.295000px;}
.yc6{bottom:845.175000px;}
.y16{bottom:846.255000px;}
.y1a0{bottom:850.215000px;}
.y16d{bottom:850.575000px;}
.y127{bottom:852.375000px;}
.y1df{bottom:853.815000px;}
.ya8{bottom:858.135000px;}
.y1be{bottom:862.815000px;}
.y15{bottom:867.135000px;}
.ye3{bottom:868.215000px;}
.y8f{bottom:868.935000px;}
.y77{bottom:869.295000px;}
.y137{bottom:869.655000px;}
.y58{bottom:870.735000px;}
.yff{bottom:871.095000px;}
.y3c{bottom:872.175000px;}
.y1de{bottom:874.695000px;}
.yc5{bottom:876.135000px;}
.y125{bottom:877.215000px;}
.y19f{bottom:882.975000px;}
.y14{bottom:887.655000px;}
.ya7{bottom:889.095000px;}
.y8e{bottom:892.695000px;}
.y1bd{bottom:895.215000px;}
.ye2{bottom:899.535000px;}
.y159{bottom:899.895000px;}
.y57{bottom:901.695000px;}
.y76{bottom:902.055000px;}
.y3b{bottom:903.135000px;}
.y19e{bottom:904.215000px;}
.yc4{bottom:907.095000px;}
.y13{bottom:908.535000px;}
.y1bc{bottom:916.095000px;}
.ya6{bottom:920.415000px;}
.y136{bottom:921.855000px;}
.y158{bottom:923.655000px;}
.y124{bottom:924.735000px;}
.y1dd{bottom:928.335000px;}
.y12{bottom:929.055000px;}
.y188{bottom:931.215000px;}
.ye1{bottom:931.575000px;}
.y56{bottom:932.655000px;}
.y75{bottom:933.375000px;}
.y3a{bottom:934.095000px;}
.y19d{bottom:936.615000px;}
.yc3{bottom:938.415000px;}
.y1bb{bottom:948.495000px;}
.y11{bottom:948.855000px;}
.ya5{bottom:951.375000px;}
.y135{bottom:952.845000px;}
.y19c{bottom:957.525000px;}
.y1dc{bottom:960.765000px;}
.y187{bottom:962.205000px;}
.ye0{bottom:962.565000px;}
.y55{bottom:964.005000px;}
.y74{bottom:964.365000px;}
.y10{bottom:967.605000px;}
.yc2{bottom:969.405000px;}
.y1ba{bottom:969.765000px;}
.y39{bottom:974.445000px;}
.y1db{bottom:981.645000px;}
.ya4{bottom:982.365000px;}
.y19b{bottom:989.925000px;}
.y1b9{bottom:990.285000px;}
.y186{bottom:993.165000px;}
.ydf{bottom:993.525000px;}
.y54{bottom:994.965000px;}
.y73{bottom:997.125000px;}
.yc1{bottom:1000.365000px;}
.yf{bottom:1000.725000px;}
.y1da{bottom:1002.525000px;}
.y134{bottom:1005.045000px;}
.y19a{bottom:1010.805000px;}
.yfe{bottom:1013.325000px;}
.ya3{bottom:1015.125000px;}
.y1b8{bottom:1022.685000px;}
.y185{bottom:1024.125000px;}
.yde{bottom:1024.845000px;}
.y38{bottom:1025.925000px;}
.yc0{bottom:1031.325000px;}
.y199{bottom:1031.685000px;}
.ye{bottom:1034.205000px;}
.y1d9{bottom:1034.565000px;}
.y133{bottom:1036.005000px;}
.y72{bottom:1037.445000px;}
.y1b7{bottom:1043.925000px;}
.yfd{bottom:1044.645000px;}
.ya2{bottom:1047.885000px;}
.y184{bottom:1055.445000px;}
.ydd{bottom:1055.805000px;}
.y37{bottom:1056.885000px;}
.yd{bottom:1058.325000px;}
.ybf{bottom:1062.645000px;}
.y198{bottom:1064.085000px;}
.y1b6{bottom:1064.445000px;}
.y132{bottom:1066.965000px;}
.y71{bottom:1068.405000px;}
.yfc{bottom:1075.605000px;}
.y1d8{bottom:1076.325000px;}
.y197{bottom:1085.010000px;}
.y183{bottom:1086.450000px;}
.y36{bottom:1088.250000px;}
.yc{bottom:1091.490000px;}
.ybe{bottom:1093.650000px;}
.y1b5{bottom:1096.890000px;}
.y131{bottom:1098.330000px;}
.y70{bottom:1101.210000px;}
.yfb{bottom:1108.410000px;}
.y1d7{bottom:1108.770000px;}
.yb{bottom:1114.890000px;}
.y182{bottom:1117.410000px;}
.y35{bottom:1119.210000px;}
.ybd{bottom:1126.410000px;}
.y1b4{bottom:1129.650000px;}
.y1d6{bottom:1130.010000px;}
.y4{bottom:1137.210000px;}
.y34{bottom:1150.170000px;}
.y146{bottom:1150.530000px;}
.y3{bottom:1156.290000px;}
.y2{bottom:1175.010000px;}
.y1{bottom:1193.010000px;}
.y2f{bottom:1195.170000px;}
.h11{height:16.596000px;}
.h18{height:23.760000px;}
.h19{height:24.120000px;}
.h15{height:24.156000px;}
.hd{height:40.559062px;}
.hb{height:43.735781px;}
.h6{height:43.956000px;}
.h1b{height:46.800000px;}
.h7{height:47.264766px;}
.h1c{height:47.520000px;}
.h16{height:47.880000px;}
.h4{height:47.901094px;}
.h1a{height:48.276000px;}
.h3{height:49.097812px;}
.he{height:52.066406px;}
.h13{height:52.417969px;}
.h2{height:53.367188px;}
.h8{height:54.426094px;}
.h14{height:55.125000px;}
.hc{height:59.343750px;}
.ha{height:61.905938px;}
.h10{height:61.927031px;}
.h5{height:65.884219px;}
.h12{height:71.613281px;}
.h17{height:73.476000px;}
.hf{height:73.722656px;}
.h9{height:80.050781px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:40.320000px;}
.w9{width:77.436000px;}
.w11{width:100.116000px;}
.w12{width:108.036000px;}
.wd{width:148.392000px;}
.we{width:169.635000px;}
.wb{width:185.835000px;}
.wa{width:186.555000px;}
.w10{width:241.305000px;}
.wc{width:318.750000px;}
.w6{width:347.550000px;}
.w5{width:350.430000px;}
.w8{width:373.110000px;}
.wf{width:450.900000px;}
.w7{width:451.620000px;}
.w3{width:657.645000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1f{left:4.680000px;}
.x11{left:8.640000px;}
.x8{left:11.160000px;}
.x10{left:83.915987px;}
.x5{left:97.596000px;}
.x1a{left:100.475987px;}
.x1{left:106.235987px;}
.x19{left:115.955987px;}
.x16{left:117.035987px;}
.x18{left:127.835987px;}
.x14{left:133.271987px;}
.x27{left:137.591987px;}
.x6{left:144.429000px;}
.x15{left:159.194987px;}
.x1b{left:160.274987px;}
.xf{left:167.834987px;}
.x17{left:171.074987px;}
.xa{left:178.994987px;}
.x1c{left:187.274987px;}
.xb{left:207.434987px;}
.x1d{left:214.274987px;}
.x2{left:241.664987px;}
.x22{left:255.345000px;}
.xe{left:280.904987px;}
.x21{left:293.505000px;}
.x13{left:318.390000px;}
.xd{left:319.469987px;}
.x24{left:348.270000px;}
.x4{left:433.259987px;}
.x1e{left:436.499987px;}
.xc{left:446.579987px;}
.x12{left:448.020000px;}
.x25{left:449.100000px;}
.x20{left:480.420000px;}
.x9{left:527.249987px;}
.x23{left:568.289987px;}
.x3{left:696.524987px;}
.x7{left:755.250000px;}
.x29{left:786.569987px;}
.x28{left:808.529987px;}
.x26{left:812.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.152000pt;}
.lsf{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.384000pt;}
.ls5{letter-spacing:-0.376533pt;}
.ls2{letter-spacing:-0.340267pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.512000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls0{letter-spacing:0.875520pt;}
.ls16{letter-spacing:0.896000pt;}
.lsb{letter-spacing:3.328000pt;}
.lsc{letter-spacing:4.608000pt;}
.ls1b{letter-spacing:5.760000pt;}
.ls15{letter-spacing:9.856000pt;}
.ls19{letter-spacing:11.919360pt;}
.ls4{letter-spacing:24.960000pt;}
.ls12{letter-spacing:28.288000pt;}
.ls9{letter-spacing:29.568000pt;}
.ls3{letter-spacing:29.578667pt;}
.ls10{letter-spacing:32.128000pt;}
.ls14{letter-spacing:38.814720pt;}
.ls11{letter-spacing:48.778667pt;}
.ls13{letter-spacing:56.745387pt;}
.ls1a{letter-spacing:74.522027pt;}
.ls7{letter-spacing:78.208000pt;}
.ls1c{letter-spacing:142.720000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws8{word-spacing:-53.760000pt;}
.wsa{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-11.773227pt;}
.ws1{word-spacing:-10.652373pt;}
.ws0{word-spacing:-9.546240pt;}
.ws9{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-1.827840pt;}
._2{margin-left:-0.913920pt;}
._1{width:1.075200pt;}
._3{width:1.996800pt;}
._4{width:3.020373pt;}
._c{width:3.912960pt;}
._13{width:4.828160pt;}
._12{width:5.824000pt;}
._18{width:6.727680pt;}
._f{width:7.708160pt;}
._e{width:8.675840pt;}
._d{width:9.600000pt;}
._15{width:10.752000pt;}
._11{width:11.875840pt;}
._10{width:13.248000pt;}
._14{width:14.359467pt;}
._1d{width:16.030293pt;}
._b{width:17.792000pt;}
._a{width:18.752000pt;}
._9{width:20.357120pt;}
._8{width:21.296640pt;}
._1e{width:22.323200pt;}
._1a{width:23.296000pt;}
._19{width:24.483840pt;}
._1c{width:26.252800pt;}
._22{width:27.251200pt;}
._21{width:28.195840pt;}
._17{width:29.631573pt;}
._16{width:30.720000pt;}
._1b{width:32.130987pt;}
._6{width:33.050027pt;}
._7{width:34.688000pt;}
._23{width:35.619840pt;}
._5{width:36.528640pt;}
._20{width:38.519467pt;}
._1f{width:40.340907pt;}
._24{width:41.399893pt;}
._26{width:45.824000pt;}
._27{width:47.278080pt;}
._29{width:57.937920pt;}
._2a{width:59.010560pt;}
._2d{width:63.820800pt;}
._37{width:72.560640pt;}
._38{width:76.170667pt;}
._32{width:83.380053pt;}
._2b{width:89.367467pt;}
._34{width:100.901973pt;}
._28{width:114.580053pt;}
._2c{width:116.087893pt;}
._2e{width:118.891947pt;}
._31{width:122.816853pt;}
._30{width:129.228800pt;}
._2f{width:135.580587pt;}
._35{width:153.754027pt;}
._36{width:157.319253pt;}
._33{width:172.160000pt;}
._25{width:262.848000pt;}
.fs4{font-size:42.240000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.880000pt;}
.y32{bottom:3.200000pt;}
.y10d{bottom:3.520000pt;}
.y126{bottom:3.840000pt;}
.ya{bottom:15.360000pt;}
.y8{bottom:16.000000pt;}
.y10e{bottom:24.640000pt;}
.y117{bottom:24.960000pt;}
.y111{bottom:26.280000pt;}
.y33{bottom:27.200000pt;}
.y7{bottom:28.800000pt;}
.y6{bottom:32.960000pt;}
.y110{bottom:47.720000pt;}
.y31{bottom:50.880000pt;}
.y30{bottom:81.312000pt;}
.y5{bottom:87.712000pt;}
.y2e{bottom:133.466667pt;}
.yfa{bottom:136.666667pt;}
.y157{bottom:136.986667pt;}
.y6f{bottom:138.906667pt;}
.y53{bottom:140.186667pt;}
.ydc{bottom:142.106667pt;}
.ya1{bottom:145.946667pt;}
.y123{bottom:146.586667pt;}
.y181{bottom:152.026667pt;}
.y8d{bottom:152.666667pt;}
.y114{bottom:154.906667pt;}
.y1b3{bottom:160.346667pt;}
.y2d{bottom:160.986667pt;}
.yf9{bottom:164.186667pt;}
.y156{bottom:164.506667pt;}
.y6e{bottom:166.746667pt;}
.y52{bottom:168.026667pt;}
.ybc{bottom:168.986667pt;}
.ydb{bottom:169.946667pt;}
.y10f{bottom:170.586667pt;}
.y1d5{bottom:170.906667pt;}
.ya0{bottom:173.466667pt;}
.y122{bottom:174.106667pt;}
.y1b2{bottom:178.626667pt;}
.y180{bottom:179.906667pt;}
.y8c{bottom:180.226667pt;}
.y2c{bottom:188.546667pt;}
.y1d4{bottom:189.506667pt;}
.yf8{bottom:192.066667pt;}
.y155{bottom:192.386667pt;}
.y113{bottom:192.706667pt;}
.y6d{bottom:194.306667pt;}
.y51{bottom:195.586667pt;}
.yda{bottom:197.506667pt;}
.y9f{bottom:201.026667pt;}
.y121{bottom:201.666667pt;}
.ybb{bottom:204.866667pt;}
.y17f{bottom:207.426667pt;}
.y8b{bottom:207.746667pt;}
.y112{bottom:214.786667pt;}
.y2b{bottom:216.066667pt;}
.y160{bottom:217.026667pt;}
.y1d3{bottom:218.306667pt;}
.yf7{bottom:219.586667pt;}
.y154{bottom:219.906667pt;}
.y6c{bottom:221.826667pt;}
.y50{bottom:223.106667pt;}
.yd9{bottom:225.026667pt;}
.y1b1{bottom:226.306667pt;}
.y9e{bottom:228.546667pt;}
.y120{bottom:229.506667pt;}
.y17e{bottom:234.946667pt;}
.y8a{bottom:236.866667pt;}
.yba{bottom:240.386667pt;}
.y2a{bottom:243.906667pt;}
.y15f{bottom:244.546667pt;}
.yf6{bottom:247.106667pt;}
.y153{bottom:247.426667pt;}
.y6b{bottom:249.346667pt;}
.y4f{bottom:250.626667pt;}
.yd8{bottom:252.546667pt;}
.y9d{bottom:256.386667pt;}
.y11f{bottom:257.026667pt;}
.y17d{bottom:262.466667pt;}
.y1d2{bottom:265.666667pt;}
.y89{bottom:265.986667pt;}
.yb9{bottom:267.906667pt;}
.y29{bottom:271.426667pt;}
.y15e{bottom:272.066667pt;}
.y1b0{bottom:273.346667pt;}
.yf5{bottom:274.626667pt;}
.y152{bottom:274.946667pt;}
.y6a{bottom:277.186667pt;}
.y4e{bottom:278.466667pt;}
.y10c{bottom:280.066667pt;}
.yd7{bottom:280.386667pt;}
.y9c{bottom:283.906667pt;}
.y1d1{bottom:284.546667pt;}
.y17c{bottom:290.333333pt;}
.y1af{bottom:292.253333pt;}
.y28{bottom:298.973333pt;}
.y15d{bottom:299.933333pt;}
.y88{bottom:301.853333pt;}
.yf4{bottom:302.493333pt;}
.y151{bottom:302.813333pt;}
.y11e{bottom:303.133333pt;}
.yb8{bottom:303.453333pt;}
.y69{bottom:304.733333pt;}
.y10b{bottom:305.693333pt;}
.y4d{bottom:306.013333pt;}
.yd6{bottom:307.933333pt;}
.y1ae{bottom:310.493333pt;}
.y9b{bottom:311.453333pt;}
.y196{bottom:313.053333pt;}
.y17b{bottom:317.853333pt;}
.y27{bottom:326.493333pt;}
.y15c{bottom:327.453333pt;}
.y87{bottom:329.373333pt;}
.yf3{bottom:330.013333pt;}
.y150{bottom:330.333333pt;}
.y11d{bottom:330.973333pt;}
.y1d0{bottom:331.613333pt;}
.y68{bottom:332.253333pt;}
.y4c{bottom:333.533333pt;}
.yd5{bottom:335.453333pt;}
.y10a{bottom:336.093333pt;}
.yb7{bottom:339.293333pt;}
.y9a{bottom:340.573333pt;}
.y17a{bottom:345.373333pt;}
.y1cf{bottom:350.173333pt;}
.y15b{bottom:354.973333pt;}
.y26{bottom:356.573333pt;}
.y86{bottom:356.893333pt;}
.yf2{bottom:357.533333pt;}
.y14f{bottom:357.853333pt;}
.y67{bottom:359.773333pt;}
.y1eb{bottom:360.733333pt;}
.y4b{bottom:361.053333pt;}
.yd4{bottom:362.973333pt;}
.y109{bottom:363.613333pt;}
.yb6{bottom:366.813333pt;}
.y145{bottom:368.093333pt;}
.y99{bottom:368.413333pt;}
.y1ce{bottom:368.733333pt;}
.y179{bottom:372.893333pt;}
.y11c{bottom:377.053333pt;}
.y15a{bottom:379.613333pt;}
.y25{bottom:384.093333pt;}
.y85{bottom:384.413333pt;}
.yf1{bottom:385.053333pt;}
.y14e{bottom:385.373333pt;}
.y195{bottom:386.013333pt;}
.y1ad{bottom:386.973333pt;}
.y66{bottom:387.613333pt;}
.y4a{bottom:388.893333pt;}
.y1ea{bottom:389.853333pt;}
.y108{bottom:391.133333pt;}
.yd3{bottom:392.093333pt;}
.yb5{bottom:394.333333pt;}
.y144{bottom:395.613333pt;}
.y98{bottom:395.933333pt;}
.y1cd{bottom:397.533333pt;}
.y16c{bottom:399.133333pt;}
.y178{bottom:400.773333pt;}
.y11b{bottom:404.613333pt;}
.y24{bottom:411.653333pt;}
.y84{bottom:412.293333pt;}
.yf0{bottom:412.933333pt;}
.y194{bottom:413.573333pt;}
.y65{bottom:415.173333pt;}
.y1ac{bottom:415.813333pt;}
.y49{bottom:416.453333pt;}
.y107{bottom:418.693333pt;}
.yd2{bottom:419.973333pt;}
.yb4{bottom:421.893333pt;}
.y143{bottom:423.173333pt;}
.y97{bottom:423.493333pt;}
.y1cc{bottom:426.693333pt;}
.y16b{bottom:427.013333pt;}
.y177{bottom:428.293333pt;}
.y11a{bottom:432.453333pt;}
.y1ab{bottom:434.373333pt;}
.y1e9{bottom:437.573333pt;}
.y23{bottom:439.493333pt;}
.y83{bottom:439.813333pt;}
.yef{bottom:440.453333pt;}
.y14d{bottom:440.773333pt;}
.y193{bottom:441.093333pt;}
.y64{bottom:442.693333pt;}
.y48{bottom:443.973333pt;}
.y106{bottom:446.533333pt;}
.yd1{bottom:447.493333pt;}
.yb3{bottom:449.733333pt;}
.y142{bottom:450.693333pt;}
.y96{bottom:451.333333pt;}
.y16a{bottom:454.533333pt;}
.y1cb{bottom:455.493333pt;}
.y176{bottom:455.813333pt;}
.y118{bottom:462.213333pt;}
.y1aa{bottom:463.173333pt;}
.y22{bottom:467.013333pt;}
.y82{bottom:467.333333pt;}
.yee{bottom:467.973333pt;}
.y14c{bottom:468.293333pt;}
.y192{bottom:468.613333pt;}
.y63{bottom:470.213333pt;}
.y47{bottom:471.493333pt;}
.y1ca{bottom:474.373333pt;}
.yd0{bottom:475.333333pt;}
.yb2{bottom:477.253333pt;}
.y141{bottom:478.533333pt;}
.y169{bottom:482.053333pt;}
.y175{bottom:483.333333pt;}
.y116{bottom:483.973333pt;}
.y1e8{bottom:484.613333pt;}
.y95{bottom:486.853333pt;}
.y1c9{bottom:492.613333pt;}
.y21{bottom:494.533333pt;}
.y81{bottom:494.853333pt;}
.yed{bottom:495.493333pt;}
.y14b{bottom:495.813333pt;}
.y191{bottom:496.453333pt;}
.y62{bottom:498.053333pt;}
.y46{bottom:499.333333pt;}
.y1a9{bottom:500.293333pt;}
.ycf{bottom:502.853333pt;}
.y1e7{bottom:503.493333pt;}
.yb1{bottom:504.773333pt;}
.y140{bottom:506.053333pt;}
.y168{bottom:509.573333pt;}
.y174{bottom:511.200000pt;}
.y94{bottom:514.400000pt;}
.y1c8{bottom:521.440000pt;}
.y20{bottom:522.080000pt;}
.y80{bottom:522.720000pt;}
.y119{bottom:523.040000pt;}
.yec{bottom:523.360000pt;}
.y190{bottom:524.000000pt;}
.y61{bottom:525.600000pt;}
.y45{bottom:526.880000pt;}
.y115{bottom:527.520000pt;}
.y1a8{bottom:529.120000pt;}
.yce{bottom:530.400000pt;}
.yb0{bottom:532.320000pt;}
.y13f{bottom:533.600000pt;}
.y105{bottom:534.560000pt;}
.y167{bottom:537.440000pt;}
.y130{bottom:538.720000pt;}
.y1c7{bottom:540.320000pt;}
.y1a7{bottom:548.000000pt;}
.y1f{bottom:549.920000pt;}
.y7f{bottom:550.240000pt;}
.yeb{bottom:550.880000pt;}
.y14a{bottom:551.200000pt;}
.y18f{bottom:551.520000pt;}
.y60{bottom:553.120000pt;}
.y44{bottom:554.400000pt;}
.ycd{bottom:557.920000pt;}
.y13e{bottom:561.120000pt;}
.yaf{bottom:561.760000pt;}
.y104{bottom:562.080000pt;}
.y166{bottom:564.960000pt;}
.y173{bottom:566.240000pt;}
.y1c6{bottom:569.120000pt;}
.y1e6{bottom:569.440000pt;}
.y1a6{bottom:576.480000pt;}
.y1e{bottom:577.440000pt;}
.y7e{bottom:577.760000pt;}
.yea{bottom:578.400000pt;}
.y149{bottom:578.720000pt;}
.y18e{bottom:579.040000pt;}
.y5f{bottom:580.640000pt;}
.y12f{bottom:581.600000pt;}
.y43{bottom:581.920000pt;}
.ycc{bottom:585.760000pt;}
.y1c5{bottom:587.680000pt;}
.y13d{bottom:588.960000pt;}
.y103{bottom:589.600000pt;}
.y165{bottom:592.480000pt;}
.y172{bottom:593.760000pt;}
.y1a5{bottom:595.360000pt;}
.yae{bottom:597.280000pt;}
.y1e5{bottom:597.920000pt;}
.y12e{bottom:603.680000pt;}
.y1d{bottom:604.960000pt;}
.y7d{bottom:605.280000pt;}
.ye9{bottom:605.920000pt;}
.y148{bottom:606.240000pt;}
.y18d{bottom:606.880000pt;}
.y5e{bottom:608.480000pt;}
.y42{bottom:609.440000pt;}
.ycb{bottom:613.280000pt;}
.y13c{bottom:616.480000pt;}
.y1e4{bottom:616.800000pt;}
.y102{bottom:618.720000pt;}
.y164{bottom:620.000000pt;}
.y171{bottom:621.280000pt;}
.y1a4{bottom:624.186667pt;}
.yad{bottom:624.826667pt;}
.y12d{bottom:625.786667pt;}
.y1c{bottom:632.506667pt;}
.y93{bottom:632.826667pt;}
.ye8{bottom:633.786667pt;}
.y7c{bottom:634.426667pt;}
.y1c4{bottom:634.746667pt;}
.y1e3{bottom:635.066667pt;}
.y5d{bottom:636.026667pt;}
.y41{bottom:637.306667pt;}
.yca{bottom:640.826667pt;}
.y1a3{bottom:642.746667pt;}
.y13b{bottom:644.026667pt;}
.y12c{bottom:647.866667pt;}
.y147{bottom:649.146667pt;}
.yac{bottom:652.346667pt;}
.y1b{bottom:660.346667pt;}
.ye7{bottom:661.306667pt;}
.y18c{bottom:661.946667pt;}
.y7b{bottom:662.266667pt;}
.y101{bottom:662.586667pt;}
.y5c{bottom:663.546667pt;}
.y1c3{bottom:663.866667pt;}
.y40{bottom:664.826667pt;}
.yc9{bottom:668.346667pt;}
.y12b{bottom:669.626667pt;}
.y1a2{bottom:671.546667pt;}
.y163{bottom:675.386667pt;}
.y170{bottom:676.666667pt;}
.yab{bottom:680.186667pt;}
.y1a{bottom:682.106667pt;}
.y1c2{bottom:682.746667pt;}
.y92{bottom:688.186667pt;}
.ye6{bottom:688.826667pt;}
.y18b{bottom:689.466667pt;}
.y7a{bottom:689.786667pt;}
.y100{bottom:690.106667pt;}
.y13a{bottom:690.426667pt;}
.y5b{bottom:691.066667pt;}
.y12a{bottom:691.706667pt;}
.y3f{bottom:692.346667pt;}
.y1e2{bottom:692.986667pt;}
.yc8{bottom:696.186667pt;}
.y19{bottom:697.146667pt;}
.y1c1{bottom:700.986667pt;}
.y162{bottom:702.906667pt;}
.y16f{bottom:704.186667pt;}
.yaa{bottom:707.706667pt;}
.y1a1{bottom:708.666667pt;}
.y1e1{bottom:711.866667pt;}
.y129{bottom:713.786667pt;}
.y18{bottom:715.386667pt;}
.y91{bottom:715.706667pt;}
.ye5{bottom:716.346667pt;}
.y18a{bottom:717.306667pt;}
.y79{bottom:717.626667pt;}
.y139{bottom:717.946667pt;}
.y5a{bottom:718.586667pt;}
.y3e{bottom:719.866667pt;}
.yc7{bottom:723.706667pt;}
.y161{bottom:727.226667pt;}
.y1c0{bottom:729.786667pt;}
.y1e0{bottom:730.106667pt;}
.y16e{bottom:731.706667pt;}
.y17{bottom:733.946667pt;}
.ya9{bottom:735.266667pt;}
.y128{bottom:735.906667pt;}
.y90{bottom:743.266667pt;}
.ye4{bottom:744.226667pt;}
.y189{bottom:744.866667pt;}
.y78{bottom:745.186667pt;}
.y138{bottom:745.506667pt;}
.y59{bottom:746.466667pt;}
.y3d{bottom:747.746667pt;}
.y1bf{bottom:748.706667pt;}
.yc6{bottom:751.266667pt;}
.y16{bottom:752.226667pt;}
.y1a0{bottom:755.746667pt;}
.y16d{bottom:756.066667pt;}
.y127{bottom:757.666667pt;}
.y1df{bottom:758.946667pt;}
.ya8{bottom:762.786667pt;}
.y1be{bottom:766.946667pt;}
.y15{bottom:770.786667pt;}
.ye3{bottom:771.746667pt;}
.y8f{bottom:772.386667pt;}
.y77{bottom:772.706667pt;}
.y137{bottom:773.026667pt;}
.y58{bottom:773.986667pt;}
.yff{bottom:774.306667pt;}
.y3c{bottom:775.266667pt;}
.y1de{bottom:777.506667pt;}
.yc5{bottom:778.786667pt;}
.y125{bottom:779.746667pt;}
.y19f{bottom:784.866667pt;}
.y14{bottom:789.026667pt;}
.ya7{bottom:790.306667pt;}
.y8e{bottom:793.506667pt;}
.y1bd{bottom:795.746667pt;}
.ye2{bottom:799.586667pt;}
.y159{bottom:799.906667pt;}
.y57{bottom:801.506667pt;}
.y76{bottom:801.826667pt;}
.y3b{bottom:802.786667pt;}
.y19e{bottom:803.746667pt;}
.yc4{bottom:806.306667pt;}
.y13{bottom:807.586667pt;}
.y1bc{bottom:814.306667pt;}
.ya6{bottom:818.146667pt;}
.y136{bottom:819.426667pt;}
.y158{bottom:821.026667pt;}
.y124{bottom:821.986667pt;}
.y1dd{bottom:825.186667pt;}
.y12{bottom:825.826667pt;}
.y188{bottom:827.746667pt;}
.ye1{bottom:828.066667pt;}
.y56{bottom:829.026667pt;}
.y75{bottom:829.666667pt;}
.y3a{bottom:830.306667pt;}
.y19d{bottom:832.546667pt;}
.yc3{bottom:834.146667pt;}
.y1bb{bottom:843.106667pt;}
.y11{bottom:843.426667pt;}
.ya5{bottom:845.666667pt;}
.y135{bottom:846.973333pt;}
.y19c{bottom:851.133333pt;}
.y1dc{bottom:854.013333pt;}
.y187{bottom:855.293333pt;}
.ye0{bottom:855.613333pt;}
.y55{bottom:856.893333pt;}
.y74{bottom:857.213333pt;}
.y10{bottom:860.093333pt;}
.yc2{bottom:861.693333pt;}
.y1ba{bottom:862.013333pt;}
.y39{bottom:866.173333pt;}
.y1db{bottom:872.573333pt;}
.ya4{bottom:873.213333pt;}
.y19b{bottom:879.933333pt;}
.y1b9{bottom:880.253333pt;}
.y186{bottom:882.813333pt;}
.ydf{bottom:883.133333pt;}
.y54{bottom:884.413333pt;}
.y73{bottom:886.333333pt;}
.yc1{bottom:889.213333pt;}
.yf{bottom:889.533333pt;}
.y1da{bottom:891.133333pt;}
.y134{bottom:893.373333pt;}
.y19a{bottom:898.493333pt;}
.yfe{bottom:900.733333pt;}
.ya3{bottom:902.333333pt;}
.y1b8{bottom:909.053333pt;}
.y185{bottom:910.333333pt;}
.yde{bottom:910.973333pt;}
.y38{bottom:911.933333pt;}
.yc0{bottom:916.733333pt;}
.y199{bottom:917.053333pt;}
.ye{bottom:919.293333pt;}
.y1d9{bottom:919.613333pt;}
.y133{bottom:920.893333pt;}
.y72{bottom:922.173333pt;}
.y1b7{bottom:927.933333pt;}
.yfd{bottom:928.573333pt;}
.ya2{bottom:931.453333pt;}
.y184{bottom:938.173333pt;}
.ydd{bottom:938.493333pt;}
.y37{bottom:939.453333pt;}
.yd{bottom:940.733333pt;}
.ybf{bottom:944.573333pt;}
.y198{bottom:945.853333pt;}
.y1b6{bottom:946.173333pt;}
.y132{bottom:948.413333pt;}
.y71{bottom:949.693333pt;}
.yfc{bottom:956.093333pt;}
.y1d8{bottom:956.733333pt;}
.y197{bottom:964.453333pt;}
.y183{bottom:965.733333pt;}
.y36{bottom:967.333333pt;}
.yc{bottom:970.213333pt;}
.ybe{bottom:972.133333pt;}
.y1b5{bottom:975.013333pt;}
.y131{bottom:976.293333pt;}
.y70{bottom:978.853333pt;}
.yfb{bottom:985.253333pt;}
.y1d7{bottom:985.573333pt;}
.yb{bottom:991.013333pt;}
.y182{bottom:993.253333pt;}
.y35{bottom:994.853333pt;}
.ybd{bottom:1001.253333pt;}
.y1b4{bottom:1004.133333pt;}
.y1d6{bottom:1004.453333pt;}
.y4{bottom:1010.853333pt;}
.y34{bottom:1022.373333pt;}
.y146{bottom:1022.693333pt;}
.y3{bottom:1027.813333pt;}
.y2{bottom:1044.453333pt;}
.y1{bottom:1060.453333pt;}
.y2f{bottom:1062.373333pt;}
.h11{height:14.752000pt;}
.h18{height:21.120000pt;}
.h19{height:21.440000pt;}
.h15{height:21.472000pt;}
.hd{height:36.052500pt;}
.hb{height:38.876250pt;}
.h6{height:39.072000pt;}
.h1b{height:41.600000pt;}
.h7{height:42.013125pt;}
.h1c{height:42.240000pt;}
.h16{height:42.560000pt;}
.h4{height:42.578750pt;}
.h1a{height:42.912000pt;}
.h3{height:43.642500pt;}
.he{height:46.281250pt;}
.h13{height:46.593750pt;}
.h2{height:47.437500pt;}
.h8{height:48.378750pt;}
.h14{height:49.000000pt;}
.hc{height:52.750000pt;}
.ha{height:55.027500pt;}
.h10{height:55.046250pt;}
.h5{height:58.563750pt;}
.h12{height:63.656250pt;}
.h17{height:65.312000pt;}
.hf{height:65.531250pt;}
.h9{height:71.156250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.840000pt;}
.w9{width:68.832000pt;}
.w11{width:88.992000pt;}
.w12{width:96.032000pt;}
.wd{width:131.904000pt;}
.we{width:150.786667pt;}
.wb{width:165.186667pt;}
.wa{width:165.826667pt;}
.w10{width:214.493333pt;}
.wc{width:283.333333pt;}
.w6{width:308.933333pt;}
.w5{width:311.493333pt;}
.w8{width:331.653333pt;}
.wf{width:400.800000pt;}
.w7{width:401.440000pt;}
.w3{width:584.573333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1f{left:4.160000pt;}
.x11{left:7.680000pt;}
.x8{left:9.920000pt;}
.x10{left:74.591988pt;}
.x5{left:86.752000pt;}
.x1a{left:89.311988pt;}
.x1{left:94.431988pt;}
.x19{left:103.071988pt;}
.x16{left:104.031988pt;}
.x18{left:113.631988pt;}
.x14{left:118.463988pt;}
.x27{left:122.303988pt;}
.x6{left:128.381333pt;}
.x15{left:141.506655pt;}
.x1b{left:142.466655pt;}
.xf{left:149.186655pt;}
.x17{left:152.066655pt;}
.xa{left:159.106655pt;}
.x1c{left:166.466655pt;}
.xb{left:184.386655pt;}
.x1d{left:190.466655pt;}
.x2{left:214.813322pt;}
.x22{left:226.973333pt;}
.xe{left:249.693322pt;}
.x21{left:260.893333pt;}
.x13{left:283.013333pt;}
.xd{left:283.973322pt;}
.x24{left:309.573333pt;}
.x4{left:385.119988pt;}
.x1e{left:387.999988pt;}
.xc{left:396.959988pt;}
.x12{left:398.240000pt;}
.x25{left:399.200000pt;}
.x20{left:427.040000pt;}
.x9{left:468.666655pt;}
.x23{left:505.146655pt;}
.x3{left:619.133322pt;}
.x7{left:671.333333pt;}
.x29{left:699.173322pt;}
.x28{left:718.693322pt;}
.x26{left:722.533322pt;}
}




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