
    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_8b3b81b25141bc580f3e863e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a238642f9dbaad2bb396bd83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ef8eececc8afb7766de0189e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_9e941405f51afc53c027d4d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_714488ea5f96a19563c1c729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_c0ecb3c8616fabc2dce6865a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_ed9eca512db0dbd5c7fb2327.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3924c2cf899939ef5d2c68bc.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ca070eef69136e4ff3e8538.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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls16{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.152000px;}
.ls8{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.678000px;}
.ls19{letter-spacing:-0.466800px;}
.ls17{letter-spacing:-0.288000px;}
.ls7{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.466560px;}
.ls1a{letter-spacing:0.504000px;}
.ls29{letter-spacing:0.576000px;}
.ls2a{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.732000px;}
.ls2e{letter-spacing:0.936000px;}
.ls28{letter-spacing:0.948000px;}
.lsc{letter-spacing:2.160000px;}
.ls1d{letter-spacing:7.920000px;}
.ls26{letter-spacing:9.360000px;}
.ls1f{letter-spacing:10.800000px;}
.ls22{letter-spacing:10.980000px;}
.ls10{letter-spacing:12.240000px;}
.ls5{letter-spacing:13.680000px;}
.ls21{letter-spacing:15.120000px;}
.ls27{letter-spacing:19.440000px;}
.ls11{letter-spacing:20.880000px;}
.ls12{letter-spacing:22.320000px;}
.ls6{letter-spacing:25.200000px;}
.lse{letter-spacing:28.080000px;}
.ls1b{letter-spacing:29.520000px;}
.ls24{letter-spacing:29.640000px;}
.lsa{letter-spacing:30.960000px;}
.lsf{letter-spacing:31.080000px;}
.ls20{letter-spacing:31.140000px;}
.lsd{letter-spacing:33.840000px;}
.ls3{letter-spacing:35.280000px;}
.ls4{letter-spacing:38.160000px;}
.ls23{letter-spacing:39.600000px;}
.lsb{letter-spacing:42.480000px;}
.ls2b{letter-spacing:53.424000px;}
.ls25{letter-spacing:58.320000px;}
.ls1e{letter-spacing:65.520000px;}
.ls1{letter-spacing:75.749760px;}
.ls0{letter-spacing:111.869760px;}
.ls2c{letter-spacing:494.760000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-24.120000px;}
.wsc{word-spacing:-18.936000px;}
.ws9{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.280000px;}
.wsa{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.120000px;}
.ws8{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.442000px;}
.ws6{word-spacing:-13.680000px;}
.ws2{word-spacing:-11.880000px;}
.ws3{word-spacing:0.000000px;}
._2{margin-left:-2.626560px;}
._0{margin-left:-1.586880px;}
._1{width:1.149120px;}
._3{width:2.229120px;}
._15{width:4.118880px;}
._1c{width:5.817120px;}
._16{width:7.171200px;}
._7{width:8.357760px;}
._6{width:9.360000px;}
._2b{width:10.363680px;}
._24{width:11.536320px;}
._1f{width:13.260000px;}
._1b{width:14.972640px;}
._1a{width:16.716000px;}
._9{width:19.319040px;}
._8{width:21.173760px;}
._c{width:22.245120px;}
._17{width:23.912640px;}
._20{width:25.473600px;}
._1e{width:27.360000px;}
._1d{width:28.618560px;}
._21{width:30.384000px;}
._19{width:31.752000px;}
._18{width:33.056640px;}
._d{width:34.058880px;}
._e{width:35.656800px;}
._14{width:37.246560px;}
._13{width:38.669760px;}
._28{width:40.055040px;}
._23{width:41.405760px;}
._22{width:42.840000px;}
._25{width:44.229120px;}
._2a{width:45.731520px;}
._29{width:47.594880px;}
._36{width:48.960000px;}
._5{width:50.184000px;}
._4{width:52.118880px;}
._30{width:55.664640px;}
._31{width:56.669760px;}
._2c{width:57.744000px;}
._27{width:59.174880px;}
._26{width:60.552000px;}
._34{width:62.104320px;}
._38{width:63.109440px;}
._32{width:64.944000px;}
._33{width:66.095040px;}
._37{width:67.469760px;}
._35{width:70.859520px;}
._11{width:72.000000px;}
._12{width:73.491840px;}
._10{width:83.592000px;}
._f{width:84.602880px;}
._a{width:100.656000px;}
._b{width:102.202560px;}
._3c{width:104.382240px;}
._3b{width:105.508320px;}
._2e{width:106.773120px;}
._2d{width:108.037440px;}
._2f{width:109.336320px;}
._3a{width:494.000640px;}
._39{width:495.101760px;}
.fcb{color:rgb(56,72,79);}
.fca{color:rgb(68,114,196);}
.fc7{color:rgb(196,89,17);}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc9{color:rgb(16,16,16);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(5,99,193);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:5.760000px;}
.fs5{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.240000px;}
.y6c{bottom:5.760000px;}
.yb5{bottom:5.790000px;}
.y72{bottom:6.120000px;}
.y89{bottom:6.480000px;}
.yed{bottom:6.840000px;}
.yea{bottom:6.885000px;}
.ycb{bottom:7.200000px;}
.y67{bottom:7.560000px;}
.y98{bottom:7.920000px;}
.y4{bottom:10.800000px;}
.y5{bottom:11.520000px;}
.yce{bottom:19.080000px;}
.yd3{bottom:19.800000px;}
.y65{bottom:25.200000px;}
.y9b{bottom:25.560000px;}
.yaa{bottom:25.590000px;}
.y71{bottom:25.920000px;}
.y6b{bottom:25.950000px;}
.y83{bottom:25.956000px;}
.y78{bottom:26.280000px;}
.y88{bottom:26.325000px;}
.y66{bottom:27.000000px;}
.yec{bottom:28.800000px;}
.yc8{bottom:31.320000px;}
.yc7{bottom:31.680000px;}
.yd8{bottom:31.710000px;}
.ycd{bottom:43.200000px;}
.yd2{bottom:43.590000px;}
.y70{bottom:45.360000px;}
.y8c{bottom:45.390000px;}
.y9f{bottom:45.399000px;}
.yae{bottom:45.405000px;}
.y6f{bottom:45.720000px;}
.y8b{bottom:45.750000px;}
.y82{bottom:45.759000px;}
.y76{bottom:45.765000px;}
.y7e{bottom:46.080000px;}
.yb4{bottom:46.110000px;}
.y77{bottom:46.125000px;}
.yeb{bottom:50.400000px;}
.yf4{bottom:50.760000px;}
.yc6{bottom:55.440000px;}
.yd7{bottom:55.470000px;}
.y6{bottom:55.476000px;}
.y3{bottom:57.276000px;}
.y7b{bottom:65.160000px;}
.ya9{bottom:65.190000px;}
.y81{bottom:65.199000px;}
.y7a{bottom:65.520000px;}
.yb1{bottom:65.550000px;}
.y80{bottom:65.559000px;}
.y75{bottom:65.565000px;}
.y7d{bottom:65.880000px;}
.yb3{bottom:65.910000px;}
.y74{bottom:65.925000px;}
.yd1{bottom:67.350000px;}
.yf3{bottom:72.360000px;}
.yf7{bottom:72.390000px;}
.yf6{bottom:73.470000px;}
.yd6{bottom:79.230000px;}
.ya8{bottom:84.990000px;}
.yb7{bottom:85.320000px;}
.y87{bottom:85.725000px;}
.yd0{bottom:91.110000px;}
.yf2{bottom:94.350000px;}
.yd5{bottom:102.990000px;}
.y141{bottom:103.356000px;}
.ya7{bottom:104.790000px;}
.ya6{bottom:105.150000px;}
.y86{bottom:105.165000px;}
.y85{bottom:105.525000px;}
.y9e{bottom:107.676000px;}
.y105{bottom:113.076000px;}
.y7f{bottom:113.436000px;}
.y31{bottom:115.596000px;}
.yf1{bottom:116.310000px;}
.yef{bottom:117.030000px;}
.y5b{bottom:122.076000px;}
.ya4{bottom:124.590000px;}
.ya5{bottom:124.950000px;}
.y12d{bottom:126.792000px;}
.y140{bottom:127.152000px;}
.y104{bottom:136.872000px;}
.yf0{bottom:137.910000px;}
.y30{bottom:139.032000px;}
.ya3{bottom:144.390000px;}
.ya2{bottom:144.750000px;}
.y5a{bottom:146.232000px;}
.yc2{bottom:149.832000px;}
.y12c{bottom:150.555000px;}
.y13f{bottom:150.915000px;}
.y103{bottom:160.635000px;}
.y2f{bottom:162.795000px;}
.y9d{bottom:167.835000px;}
.yc1{bottom:173.595000px;}
.y12b{bottom:174.315000px;}
.y13e{bottom:174.675000px;}
.y59{bottom:177.915000px;}
.y102{bottom:184.395000px;}
.y2e{bottom:186.555000px;}
.y7c{bottom:193.395000px;}
.yc0{bottom:197.355000px;}
.y12a{bottom:198.075000px;}
.y13d{bottom:198.435000px;}
.y58{bottom:201.315000px;}
.y101{bottom:208.155000px;}
.y2d{bottom:210.315000px;}
.ye4{bottom:212.115000px;}
.ybf{bottom:221.115000px;}
.y129{bottom:222.555000px;}
.y57{bottom:225.075000px;}
.y100{bottom:231.915000px;}
.y2c{bottom:234.075000px;}
.ye3{bottom:235.875000px;}
.ybe{bottom:244.875000px;}
.y13c{bottom:245.955000px;}
.y128{bottom:246.315000px;}
.y9c{bottom:248.115000px;}
.y56{bottom:248.835000px;}
.ye6{bottom:249.555000px;}
.yff{bottom:255.675000px;}
.y2b{bottom:257.835000px;}
.ye2{bottom:259.635000px;}
.ybd{bottom:268.665000px;}
.y127{bottom:269.745000px;}
.y13b{bottom:270.105000px;}
.y55{bottom:272.625000px;}
.y79{bottom:273.705000px;}
.y96{bottom:278.355000px;}
.yfe{bottom:279.825000px;}
.y2a{bottom:281.985000px;}
.ye1{bottom:283.425000px;}
.y9a{bottom:288.465000px;}
.ybc{bottom:292.785000px;}
.y126{bottom:293.505000px;}
.y13a{bottom:293.865000px;}
.y54{bottom:296.385000px;}
.yfd{bottom:303.585000px;}
.y29{bottom:305.745000px;}
.ye0{bottom:307.185000px;}
.ybb{bottom:316.545000px;}
.y125{bottom:317.265000px;}
.y139{bottom:317.625000px;}
.y53{bottom:320.145000px;}
.yfc{bottom:327.345000px;}
.y99{bottom:328.785000px;}
.y28{bottom:329.505000px;}
.ydf{bottom:330.945000px;}
.yba{bottom:340.305000px;}
.y124{bottom:341.025000px;}
.y138{bottom:341.385000px;}
.y52{bottom:343.905000px;}
.y97{bottom:349.305000px;}
.yfb{bottom:351.105000px;}
.y27{bottom:353.265000px;}
.y73{bottom:353.625000px;}
.yde{bottom:354.705000px;}
.yb9{bottom:364.065000px;}
.y123{bottom:364.785000px;}
.y137{bottom:365.145000px;}
.y51{bottom:367.665000px;}
.y95{bottom:373.425000px;}
.yfa{bottom:374.865000px;}
.y26{bottom:377.025000px;}
.ydd{bottom:378.465000px;}
.yb8{bottom:388.185000px;}
.y122{bottom:388.905000px;}
.y50{bottom:391.785000px;}
.yf9{bottom:398.670000px;}
.y25{bottom:400.830000px;}
.ydc{bottom:402.630000px;}
.y121{bottom:412.710000px;}
.yf8{bottom:422.790000px;}
.y4f{bottom:423.510000px;}
.y24{bottom:424.590000px;}
.yb6{bottom:425.670000px;}
.ydb{bottom:426.390000px;}
.y6e{bottom:433.950000px;}
.y120{bottom:436.830000px;}
.y4e{bottom:446.910000px;}
.y23{bottom:448.350000px;}
.yda{bottom:450.150000px;}
.yf5{bottom:460.230000px;}
.y11f{bottom:460.590000px;}
.y4d{bottom:470.670000px;}
.y22{bottom:472.110000px;}
.yd9{bottom:473.910000px;}
.y11e{bottom:484.350000px;}
.y6d{bottom:494.070000px;}
.y4c{bottom:494.430000px;}
.y21{bottom:496.230000px;}
.y11d{bottom:508.110000px;}
.yd4{bottom:511.350000px;}
.y6a{bottom:514.590000px;}
.y4b{bottom:518.190000px;}
.y20{bottom:519.990000px;}
.yb2{bottom:525.390000px;}
.y11c{bottom:531.900000px;}
.y4a{bottom:541.980000px;}
.y1f{bottom:543.780000px;}
.y11b{bottom:555.660000px;}
.y69{bottom:562.860000px;}
.y1e{bottom:567.540000px;}
.yee{bottom:570.060000px;}
.y49{bottom:573.660000px;}
.y68{bottom:579.060000px;}
.y11a{bottom:579.420000px;}
.y1d{bottom:591.300000px;}
.y48{bottom:597.060000px;}
.y64{bottom:602.820000px;}
.y136{bottom:603.180000px;}
.yb0{bottom:605.700000px;}
.y1c{bottom:615.060000px;}
.y47{bottom:620.820000px;}
.y119{bottom:626.940000px;}
.y135{bottom:627.300000px;}
.ycf{bottom:631.260000px;}
.y1b{bottom:638.820000px;}
.y46{bottom:644.580000px;}
.y118{bottom:650.700000px;}
.y134{bottom:651.060000px;}
.y1a{bottom:662.610000px;}
.y45{bottom:668.730000px;}
.y117{bottom:674.490000px;}
.y133{bottom:674.850000px;}
.y94{bottom:675.570000px;}
.yaf{bottom:685.650000px;}
.y19{bottom:686.730000px;}
.y44{bottom:692.130000px;}
.y116{bottom:698.250000px;}
.y132{bottom:698.610000px;}
.y93{bottom:699.690000px;}
.y18{bottom:710.490000px;}
.y43{bottom:715.890000px;}
.y115{bottom:722.370000px;}
.y92{bottom:723.450000px;}
.y17{bottom:734.250000px;}
.ycc{bottom:739.290000px;}
.y42{bottom:739.650000px;}
.y114{bottom:746.130000px;}
.y91{bottom:747.210000px;}
.y16{bottom:758.010000px;}
.y41{bottom:763.410000px;}
.yad{bottom:765.930000px;}
.y113{bottom:769.890000px;}
.y90{bottom:770.970000px;}
.y15{bottom:781.770000px;}
.y40{bottom:787.170000px;}
.ye9{bottom:789.690000px;}
.y112{bottom:793.650000px;}
.y8f{bottom:794.730000px;}
.yca{bottom:799.815000px;}
.y14{bottom:805.575000px;}
.y111{bottom:817.455000px;}
.y8e{bottom:818.535000px;}
.y3f{bottom:818.895000px;}
.ye8{bottom:820.335000px;}
.yac{bottom:826.095000px;}
.y13{bottom:829.335000px;}
.yc9{bottom:831.855000px;}
.y110{bottom:841.575000px;}
.y3e{bottom:842.295000px;}
.y12{bottom:853.095000px;}
.ye7{bottom:857.055000px;}
.y10f{bottom:865.335000px;}
.y3d{bottom:866.055000px;}
.yab{bottom:866.415000px;}
.yc5{bottom:868.575000px;}
.y11{bottom:877.215000px;}
.ye5{bottom:880.815000px;}
.y10e{bottom:889.095000px;}
.y8d{bottom:890.175000px;}
.y3c{bottom:898.095000px;}
.y8a{bottom:907.095000px;}
.y10{bottom:912.495000px;}
.y10d{bottom:912.855000px;}
.y3b{bottom:921.495000px;}
.y63{bottom:929.085000px;}
.yf{bottom:936.645000px;}
.yc3{bottom:940.245000px;}
.y3a{bottom:945.645000px;}
.y62{bottom:952.845000px;}
.y10c{bottom:960.405000px;}
.ye{bottom:967.245000px;}
.y39{bottom:969.405000px;}
.y61{bottom:976.605000px;}
.yd{bottom:984.165000px;}
.y38{bottom:993.165000px;}
.y60{bottom:1000.725000px;}
.y10b{bottom:1007.925000px;}
.yc{bottom:1014.765000px;}
.y37{bottom:1016.925000px;}
.y5f{bottom:1024.485000px;}
.yb{bottom:1031.685000px;}
.y10a{bottom:1032.045000px;}
.y36{bottom:1040.685000px;}
.y84{bottom:1047.165000px;}
.y5e{bottom:1048.245000px;}
.ya{bottom:1055.445000px;}
.y109{bottom:1055.805000px;}
.y35{bottom:1064.490000px;}
.ya1{bottom:1066.650000px;}
.y5d{bottom:1072.050000px;}
.y131{bottom:1079.250000px;}
.y108{bottom:1079.610000px;}
.y9{bottom:1081.410000px;}
.y5c{bottom:1095.810000px;}
.y34{bottom:1096.170000px;}
.y130{bottom:1103.010000px;}
.y107{bottom:1103.370000px;}
.y8{bottom:1113.090000px;}
.y12f{bottom:1126.770000px;}
.y106{bottom:1127.130000px;}
.y33{bottom:1127.490000px;}
.y7{bottom:1144.770000px;}
.ya0{bottom:1146.570000px;}
.y12e{bottom:1150.530000px;}
.y32{bottom:1150.890000px;}
.y2{bottom:1198.080000px;}
.y1{bottom:1216.080000px;}
.h6{height:4.038750px;}
.h11{height:19.800000px;}
.h26{height:21.996000px;}
.he{height:23.760000px;}
.h1a{height:24.120000px;}
.h3{height:27.000000px;}
.ha{height:33.319688px;}
.h2{height:38.608594px;}
.h1b{height:39.600000px;}
.h1c{height:39.636000px;}
.h1f{height:39.960000px;}
.hf{height:39.996000px;}
.h13{height:42.406875px;}
.h10{height:42.672656px;}
.h2a{height:46.445625px;}
.h27{height:46.736719px;}
.h4{height:50.484375px;}
.h8{height:50.800781px;}
.hb{height:51.996094px;}
.h2c{height:52.417969px;}
.hc{height:59.343750px;}
.h12{height:59.400000px;}
.h18{height:59.436000px;}
.h23{height:59.796000px;}
.h9{height:60.888516px;}
.h28{height:65.520000px;}
.h5{height:65.884219px;}
.h7{height:68.073047px;}
.h22{height:71.676000px;}
.h15{height:79.200000px;}
.h16{height:79.236000px;}
.h1d{height:79.560000px;}
.h14{height:79.596000px;}
.h20{height:99.000000px;}
.h24{height:107.316000px;}
.h2b{height:109.116000px;}
.h17{height:119.196000px;}
.h29{height:152.670000px;}
.h1e{height:158.475000px;}
.h21{height:226.830000px;}
.h25{height:286.275000px;}
.h19{height:294.585000px;}
.hd{height:318.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:34.560000px;}
.w20{width:43.920000px;}
.w11{width:49.320000px;}
.w1a{width:58.356000px;}
.w21{width:86.436000px;}
.w4{width:105.516000px;}
.w24{width:108.396000px;}
.w1f{width:115.992000px;}
.w14{width:118.476000px;}
.w16{width:122.472000px;}
.w23{width:124.596000px;}
.wa{width:125.712000px;}
.w1b{width:128.196000px;}
.w9{width:128.556000px;}
.wc{width:129.312000px;}
.w1c{width:132.156000px;}
.w12{width:133.272000px;}
.w8{width:133.632000px;}
.w1d{width:136.872000px;}
.w15{width:137.196000px;}
.w1e{width:141.876000px;}
.w13{width:162.075000px;}
.wb{width:167.070000px;}
.w22{width:217.185000px;}
.w5{width:305.430000px;}
.w3{width:305.745000px;}
.we{width:333.150000px;}
.wf{width:334.905000px;}
.w17{width:339.630000px;}
.w6{width:359.070000px;}
.w18{width:378.510000px;}
.w19{width:717.405000px;}
.wd{width:722.445000px;}
.w10{width:726.405000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x6{left:7.560000px;}
.x52{left:9.036000px;}
.x1d{left:10.080000px;}
.x27{left:13.320000px;}
.x3a{left:17.679000px;}
.x3f{left:19.119000px;}
.x37{left:20.880000px;}
.x4a{left:22.323000px;}
.x51{left:23.439000px;}
.x3b{left:25.239000px;}
.x1b{left:26.640000px;}
.x3d{left:28.119000px;}
.x28{left:29.199000px;}
.x18{left:30.960000px;}
.x1f{left:32.760000px;}
.x25{left:34.950000px;}
.x2d{left:36.399000px;}
.x21{left:38.190000px;}
.x23{left:39.960000px;}
.x3e{left:41.439000px;}
.x49{left:42.483000px;}
.x2a{left:44.319000px;}
.x29{left:45.759000px;}
.x2c{left:46.839000px;}
.x39{left:51.159000px;}
.x3c{left:53.319000px;}
.x2b{left:56.559000px;}
.x38{left:60.519000px;}
.x43{left:63.039000px;}
.x46{left:69.120000px;}
.x30{left:72.720000px;}
.x1a{left:84.990000px;}
.x3{left:87.516000px;}
.x19{left:91.479000px;}
.x8{left:95.795987px;}
.x45{left:97.959000px;}
.x2f{left:99.039000px;}
.x44{left:101.199000px;}
.x1{left:116.675987px;}
.x14{left:118.475987px;}
.x1c{left:123.156000px;}
.x57{left:127.835987px;}
.x50{left:132.516000px;}
.xa{left:135.395987px;}
.x32{left:137.916000px;}
.xe{left:140.111987px;}
.x47{left:143.310000px;}
.x48{left:146.952000px;}
.x13{left:149.111987px;}
.x10{left:159.194987px;}
.x2{left:184.394987px;}
.xd{left:200.234987px;}
.x9{left:212.834987px;}
.x53{left:219.675000px;}
.x1e{left:257.505000px;}
.x33{left:271.905000px;}
.x4b{left:275.865000px;}
.x17{left:288.105000px;}
.x15{left:292.794000px;}
.x12{left:296.024987px;}
.x4{left:297.834000px;}
.xf{left:304.664987px;}
.x4f{left:316.554000px;}
.x26{left:319.434000px;}
.x40{left:323.034000px;}
.x31{left:325.554000px;}
.xb{left:345.389987px;}
.x42{left:370.230000px;}
.x20{left:386.790000px;}
.x5{left:393.990000px;}
.x11{left:397.949987px;}
.x4c{left:408.750000px;}
.x2e{left:420.660000px;}
.x41{left:427.140000px;}
.x34{left:434.700000px;}
.x54{left:437.580000px;}
.x16{left:446.580000px;}
.xc{left:458.099987px;}
.x7{left:500.220000px;}
.x22{left:513.210000px;}
.x4d{left:546.330000px;}
.x35{left:553.890000px;}
.x55{left:562.890000px;}
.x24{left:681.015000px;}
.x4e{left:689.295000px;}
.x36{left:691.815000px;}
.x56{left:696.885000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls16{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-1.024000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.602667pt;}
.ls19{letter-spacing:-0.414933pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.414720pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls29{letter-spacing:0.512000pt;}
.ls2a{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.650667pt;}
.ls2e{letter-spacing:0.832000pt;}
.ls28{letter-spacing:0.842667pt;}
.lsc{letter-spacing:1.920000pt;}
.ls1d{letter-spacing:7.040000pt;}
.ls26{letter-spacing:8.320000pt;}
.ls1f{letter-spacing:9.600000pt;}
.ls22{letter-spacing:9.760000pt;}
.ls10{letter-spacing:10.880000pt;}
.ls5{letter-spacing:12.160000pt;}
.ls21{letter-spacing:13.440000pt;}
.ls27{letter-spacing:17.280000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls12{letter-spacing:19.840000pt;}
.ls6{letter-spacing:22.400000pt;}
.lse{letter-spacing:24.960000pt;}
.ls1b{letter-spacing:26.240000pt;}
.ls24{letter-spacing:26.346667pt;}
.lsa{letter-spacing:27.520000pt;}
.lsf{letter-spacing:27.626667pt;}
.ls20{letter-spacing:27.680000pt;}
.lsd{letter-spacing:30.080000pt;}
.ls3{letter-spacing:31.360000pt;}
.ls4{letter-spacing:33.920000pt;}
.ls23{letter-spacing:35.200000pt;}
.lsb{letter-spacing:37.760000pt;}
.ls2b{letter-spacing:47.488000pt;}
.ls25{letter-spacing:51.840000pt;}
.ls1e{letter-spacing:58.240000pt;}
.ls1{letter-spacing:67.333120pt;}
.ls0{letter-spacing:99.439787pt;}
.ls2c{letter-spacing:439.786667pt;}
.ws1{word-spacing:-21.440000pt;}
.wsc{word-spacing:-16.832000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.360000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.025067pt;}
.ws5{word-spacing:-12.837333pt;}
.ws6{word-spacing:-12.160000pt;}
.ws2{word-spacing:-10.560000pt;}
.ws3{word-spacing:0.000000pt;}
._2{margin-left:-2.334720pt;}
._0{margin-left:-1.410560pt;}
._1{width:1.021440pt;}
._3{width:1.981440pt;}
._15{width:3.661227pt;}
._1c{width:5.170773pt;}
._16{width:6.374400pt;}
._7{width:7.429120pt;}
._6{width:8.320000pt;}
._2b{width:9.212160pt;}
._24{width:10.254507pt;}
._1f{width:11.786667pt;}
._1b{width:13.309013pt;}
._1a{width:14.858667pt;}
._9{width:17.172480pt;}
._8{width:18.821120pt;}
._c{width:19.773440pt;}
._17{width:21.255680pt;}
._20{width:22.643200pt;}
._1e{width:24.320000pt;}
._1d{width:25.438720pt;}
._21{width:27.008000pt;}
._19{width:28.224000pt;}
._18{width:29.383680pt;}
._d{width:30.274560pt;}
._e{width:31.694933pt;}
._14{width:33.108053pt;}
._13{width:34.373120pt;}
._28{width:35.604480pt;}
._23{width:36.805120pt;}
._22{width:38.080000pt;}
._25{width:39.314773pt;}
._2a{width:40.650240pt;}
._29{width:42.306560pt;}
._36{width:43.520000pt;}
._5{width:44.608000pt;}
._4{width:46.327893pt;}
._30{width:49.479680pt;}
._31{width:50.373120pt;}
._2c{width:51.328000pt;}
._27{width:52.599893pt;}
._26{width:53.824000pt;}
._34{width:55.203840pt;}
._38{width:56.097280pt;}
._32{width:57.728000pt;}
._33{width:58.751147pt;}
._37{width:59.973120pt;}
._35{width:62.986240pt;}
._11{width:64.000000pt;}
._12{width:65.326080pt;}
._10{width:74.304000pt;}
._f{width:75.202560pt;}
._a{width:89.472000pt;}
._b{width:90.846720pt;}
._3c{width:92.784213pt;}
._3b{width:93.785173pt;}
._2e{width:94.909440pt;}
._2d{width:96.033280pt;}
._2f{width:97.187840pt;}
._3a{width:439.111680pt;}
._39{width:440.090453pt;}
.fs3{font-size:5.120000pt;}
.fs5{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:2.880000pt;}
.y6c{bottom:5.120000pt;}
.yb5{bottom:5.146667pt;}
.y72{bottom:5.440000pt;}
.y89{bottom:5.760000pt;}
.yed{bottom:6.080000pt;}
.yea{bottom:6.120000pt;}
.ycb{bottom:6.400000pt;}
.y67{bottom:6.720000pt;}
.y98{bottom:7.040000pt;}
.y4{bottom:9.600000pt;}
.y5{bottom:10.240000pt;}
.yce{bottom:16.960000pt;}
.yd3{bottom:17.600000pt;}
.y65{bottom:22.400000pt;}
.y9b{bottom:22.720000pt;}
.yaa{bottom:22.746667pt;}
.y71{bottom:23.040000pt;}
.y6b{bottom:23.066667pt;}
.y83{bottom:23.072000pt;}
.y78{bottom:23.360000pt;}
.y88{bottom:23.400000pt;}
.y66{bottom:24.000000pt;}
.yec{bottom:25.600000pt;}
.yc8{bottom:27.840000pt;}
.yc7{bottom:28.160000pt;}
.yd8{bottom:28.186667pt;}
.ycd{bottom:38.400000pt;}
.yd2{bottom:38.746667pt;}
.y70{bottom:40.320000pt;}
.y8c{bottom:40.346667pt;}
.y9f{bottom:40.354667pt;}
.yae{bottom:40.360000pt;}
.y6f{bottom:40.640000pt;}
.y8b{bottom:40.666667pt;}
.y82{bottom:40.674667pt;}
.y76{bottom:40.680000pt;}
.y7e{bottom:40.960000pt;}
.yb4{bottom:40.986667pt;}
.y77{bottom:41.000000pt;}
.yeb{bottom:44.800000pt;}
.yf4{bottom:45.120000pt;}
.yc6{bottom:49.280000pt;}
.yd7{bottom:49.306667pt;}
.y6{bottom:49.312000pt;}
.y3{bottom:50.912000pt;}
.y7b{bottom:57.920000pt;}
.ya9{bottom:57.946667pt;}
.y81{bottom:57.954667pt;}
.y7a{bottom:58.240000pt;}
.yb1{bottom:58.266667pt;}
.y80{bottom:58.274667pt;}
.y75{bottom:58.280000pt;}
.y7d{bottom:58.560000pt;}
.yb3{bottom:58.586667pt;}
.y74{bottom:58.600000pt;}
.yd1{bottom:59.866667pt;}
.yf3{bottom:64.320000pt;}
.yf7{bottom:64.346667pt;}
.yf6{bottom:65.306667pt;}
.yd6{bottom:70.426667pt;}
.ya8{bottom:75.546667pt;}
.yb7{bottom:75.840000pt;}
.y87{bottom:76.200000pt;}
.yd0{bottom:80.986667pt;}
.yf2{bottom:83.866667pt;}
.yd5{bottom:91.546667pt;}
.y141{bottom:91.872000pt;}
.ya7{bottom:93.146667pt;}
.ya6{bottom:93.466667pt;}
.y86{bottom:93.480000pt;}
.y85{bottom:93.800000pt;}
.y9e{bottom:95.712000pt;}
.y105{bottom:100.512000pt;}
.y7f{bottom:100.832000pt;}
.y31{bottom:102.752000pt;}
.yf1{bottom:103.386667pt;}
.yef{bottom:104.026667pt;}
.y5b{bottom:108.512000pt;}
.ya4{bottom:110.746667pt;}
.ya5{bottom:111.066667pt;}
.y12d{bottom:112.704000pt;}
.y140{bottom:113.024000pt;}
.y104{bottom:121.664000pt;}
.yf0{bottom:122.586667pt;}
.y30{bottom:123.584000pt;}
.ya3{bottom:128.346667pt;}
.ya2{bottom:128.666667pt;}
.y5a{bottom:129.984000pt;}
.yc2{bottom:133.184000pt;}
.y12c{bottom:133.826667pt;}
.y13f{bottom:134.146667pt;}
.y103{bottom:142.786667pt;}
.y2f{bottom:144.706667pt;}
.y9d{bottom:149.186667pt;}
.yc1{bottom:154.306667pt;}
.y12b{bottom:154.946667pt;}
.y13e{bottom:155.266667pt;}
.y59{bottom:158.146667pt;}
.y102{bottom:163.906667pt;}
.y2e{bottom:165.826667pt;}
.y7c{bottom:171.906667pt;}
.yc0{bottom:175.426667pt;}
.y12a{bottom:176.066667pt;}
.y13d{bottom:176.386667pt;}
.y58{bottom:178.946667pt;}
.y101{bottom:185.026667pt;}
.y2d{bottom:186.946667pt;}
.ye4{bottom:188.546667pt;}
.ybf{bottom:196.546667pt;}
.y129{bottom:197.826667pt;}
.y57{bottom:200.066667pt;}
.y100{bottom:206.146667pt;}
.y2c{bottom:208.066667pt;}
.ye3{bottom:209.666667pt;}
.ybe{bottom:217.666667pt;}
.y13c{bottom:218.626667pt;}
.y128{bottom:218.946667pt;}
.y9c{bottom:220.546667pt;}
.y56{bottom:221.186667pt;}
.ye6{bottom:221.826667pt;}
.yff{bottom:227.266667pt;}
.y2b{bottom:229.186667pt;}
.ye2{bottom:230.786667pt;}
.ybd{bottom:238.813333pt;}
.y127{bottom:239.773333pt;}
.y13b{bottom:240.093333pt;}
.y55{bottom:242.333333pt;}
.y79{bottom:243.293333pt;}
.y96{bottom:247.426667pt;}
.yfe{bottom:248.733333pt;}
.y2a{bottom:250.653333pt;}
.ye1{bottom:251.933333pt;}
.y9a{bottom:256.413333pt;}
.ybc{bottom:260.253333pt;}
.y126{bottom:260.893333pt;}
.y13a{bottom:261.213333pt;}
.y54{bottom:263.453333pt;}
.yfd{bottom:269.853333pt;}
.y29{bottom:271.773333pt;}
.ye0{bottom:273.053333pt;}
.ybb{bottom:281.373333pt;}
.y125{bottom:282.013333pt;}
.y139{bottom:282.333333pt;}
.y53{bottom:284.573333pt;}
.yfc{bottom:290.973333pt;}
.y99{bottom:292.253333pt;}
.y28{bottom:292.893333pt;}
.ydf{bottom:294.173333pt;}
.yba{bottom:302.493333pt;}
.y124{bottom:303.133333pt;}
.y138{bottom:303.453333pt;}
.y52{bottom:305.693333pt;}
.y97{bottom:310.493333pt;}
.yfb{bottom:312.093333pt;}
.y27{bottom:314.013333pt;}
.y73{bottom:314.333333pt;}
.yde{bottom:315.293333pt;}
.yb9{bottom:323.613333pt;}
.y123{bottom:324.253333pt;}
.y137{bottom:324.573333pt;}
.y51{bottom:326.813333pt;}
.y95{bottom:331.933333pt;}
.yfa{bottom:333.213333pt;}
.y26{bottom:335.133333pt;}
.ydd{bottom:336.413333pt;}
.yb8{bottom:345.053333pt;}
.y122{bottom:345.693333pt;}
.y50{bottom:348.253333pt;}
.yf9{bottom:354.373333pt;}
.y25{bottom:356.293333pt;}
.ydc{bottom:357.893333pt;}
.y121{bottom:366.853333pt;}
.yf8{bottom:375.813333pt;}
.y4f{bottom:376.453333pt;}
.y24{bottom:377.413333pt;}
.yb6{bottom:378.373333pt;}
.ydb{bottom:379.013333pt;}
.y6e{bottom:385.733333pt;}
.y120{bottom:388.293333pt;}
.y4e{bottom:397.253333pt;}
.y23{bottom:398.533333pt;}
.yda{bottom:400.133333pt;}
.yf5{bottom:409.093333pt;}
.y11f{bottom:409.413333pt;}
.y4d{bottom:418.373333pt;}
.y22{bottom:419.653333pt;}
.yd9{bottom:421.253333pt;}
.y11e{bottom:430.533333pt;}
.y6d{bottom:439.173333pt;}
.y4c{bottom:439.493333pt;}
.y21{bottom:441.093333pt;}
.y11d{bottom:451.653333pt;}
.yd4{bottom:454.533333pt;}
.y6a{bottom:457.413333pt;}
.y4b{bottom:460.613333pt;}
.y20{bottom:462.213333pt;}
.yb2{bottom:467.013333pt;}
.y11c{bottom:472.800000pt;}
.y4a{bottom:481.760000pt;}
.y1f{bottom:483.360000pt;}
.y11b{bottom:493.920000pt;}
.y69{bottom:500.320000pt;}
.y1e{bottom:504.480000pt;}
.yee{bottom:506.720000pt;}
.y49{bottom:509.920000pt;}
.y68{bottom:514.720000pt;}
.y11a{bottom:515.040000pt;}
.y1d{bottom:525.600000pt;}
.y48{bottom:530.720000pt;}
.y64{bottom:535.840000pt;}
.y136{bottom:536.160000pt;}
.yb0{bottom:538.400000pt;}
.y1c{bottom:546.720000pt;}
.y47{bottom:551.840000pt;}
.y119{bottom:557.280000pt;}
.y135{bottom:557.600000pt;}
.ycf{bottom:561.120000pt;}
.y1b{bottom:567.840000pt;}
.y46{bottom:572.960000pt;}
.y118{bottom:578.400000pt;}
.y134{bottom:578.720000pt;}
.y1a{bottom:588.986667pt;}
.y45{bottom:594.426667pt;}
.y117{bottom:599.546667pt;}
.y133{bottom:599.866667pt;}
.y94{bottom:600.506667pt;}
.yaf{bottom:609.466667pt;}
.y19{bottom:610.426667pt;}
.y44{bottom:615.226667pt;}
.y116{bottom:620.666667pt;}
.y132{bottom:620.986667pt;}
.y93{bottom:621.946667pt;}
.y18{bottom:631.546667pt;}
.y43{bottom:636.346667pt;}
.y115{bottom:642.106667pt;}
.y92{bottom:643.066667pt;}
.y17{bottom:652.666667pt;}
.ycc{bottom:657.146667pt;}
.y42{bottom:657.466667pt;}
.y114{bottom:663.226667pt;}
.y91{bottom:664.186667pt;}
.y16{bottom:673.786667pt;}
.y41{bottom:678.586667pt;}
.yad{bottom:680.826667pt;}
.y113{bottom:684.346667pt;}
.y90{bottom:685.306667pt;}
.y15{bottom:694.906667pt;}
.y40{bottom:699.706667pt;}
.ye9{bottom:701.946667pt;}
.y112{bottom:705.466667pt;}
.y8f{bottom:706.426667pt;}
.yca{bottom:710.946667pt;}
.y14{bottom:716.066667pt;}
.y111{bottom:726.626667pt;}
.y8e{bottom:727.586667pt;}
.y3f{bottom:727.906667pt;}
.ye8{bottom:729.186667pt;}
.yac{bottom:734.306667pt;}
.y13{bottom:737.186667pt;}
.yc9{bottom:739.426667pt;}
.y110{bottom:748.066667pt;}
.y3e{bottom:748.706667pt;}
.y12{bottom:758.306667pt;}
.ye7{bottom:761.826667pt;}
.y10f{bottom:769.186667pt;}
.y3d{bottom:769.826667pt;}
.yab{bottom:770.146667pt;}
.yc5{bottom:772.066667pt;}
.y11{bottom:779.746667pt;}
.ye5{bottom:782.946667pt;}
.y10e{bottom:790.306667pt;}
.y8d{bottom:791.266667pt;}
.y3c{bottom:798.306667pt;}
.y8a{bottom:806.306667pt;}
.y10{bottom:811.106667pt;}
.y10d{bottom:811.426667pt;}
.y3b{bottom:819.106667pt;}
.y63{bottom:825.853333pt;}
.yf{bottom:832.573333pt;}
.yc3{bottom:835.773333pt;}
.y3a{bottom:840.573333pt;}
.y62{bottom:846.973333pt;}
.y10c{bottom:853.693333pt;}
.ye{bottom:859.773333pt;}
.y39{bottom:861.693333pt;}
.y61{bottom:868.093333pt;}
.yd{bottom:874.813333pt;}
.y38{bottom:882.813333pt;}
.y60{bottom:889.533333pt;}
.y10b{bottom:895.933333pt;}
.yc{bottom:902.013333pt;}
.y37{bottom:903.933333pt;}
.y5f{bottom:910.653333pt;}
.yb{bottom:917.053333pt;}
.y10a{bottom:917.373333pt;}
.y36{bottom:925.053333pt;}
.y84{bottom:930.813333pt;}
.y5e{bottom:931.773333pt;}
.ya{bottom:938.173333pt;}
.y109{bottom:938.493333pt;}
.y35{bottom:946.213333pt;}
.ya1{bottom:948.133333pt;}
.y5d{bottom:952.933333pt;}
.y131{bottom:959.333333pt;}
.y108{bottom:959.653333pt;}
.y9{bottom:961.253333pt;}
.y5c{bottom:974.053333pt;}
.y34{bottom:974.373333pt;}
.y130{bottom:980.453333pt;}
.y107{bottom:980.773333pt;}
.y8{bottom:989.413333pt;}
.y12f{bottom:1001.573333pt;}
.y106{bottom:1001.893333pt;}
.y33{bottom:1002.213333pt;}
.y7{bottom:1017.573333pt;}
.ya0{bottom:1019.173333pt;}
.y12e{bottom:1022.693333pt;}
.y32{bottom:1023.013333pt;}
.y2{bottom:1064.960000pt;}
.y1{bottom:1080.960000pt;}
.h6{height:3.590000pt;}
.h11{height:17.600000pt;}
.h26{height:19.552000pt;}
.he{height:21.120000pt;}
.h1a{height:21.440000pt;}
.h3{height:24.000000pt;}
.ha{height:29.617500pt;}
.h2{height:34.318750pt;}
.h1b{height:35.200000pt;}
.h1c{height:35.232000pt;}
.h1f{height:35.520000pt;}
.hf{height:35.552000pt;}
.h13{height:37.695000pt;}
.h10{height:37.931250pt;}
.h2a{height:41.285000pt;}
.h27{height:41.543750pt;}
.h4{height:44.875000pt;}
.h8{height:45.156250pt;}
.hb{height:46.218750pt;}
.h2c{height:46.593750pt;}
.hc{height:52.750000pt;}
.h12{height:52.800000pt;}
.h18{height:52.832000pt;}
.h23{height:53.152000pt;}
.h9{height:54.123125pt;}
.h28{height:58.240000pt;}
.h5{height:58.563750pt;}
.h7{height:60.509375pt;}
.h22{height:63.712000pt;}
.h15{height:70.400000pt;}
.h16{height:70.432000pt;}
.h1d{height:70.720000pt;}
.h14{height:70.752000pt;}
.h20{height:88.000000pt;}
.h24{height:95.392000pt;}
.h2b{height:96.992000pt;}
.h17{height:105.952000pt;}
.h29{height:135.706667pt;}
.h1e{height:140.866667pt;}
.h21{height:201.626667pt;}
.h25{height:254.466667pt;}
.h19{height:261.853333pt;}
.hd{height:283.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:30.720000pt;}
.w20{width:39.040000pt;}
.w11{width:43.840000pt;}
.w1a{width:51.872000pt;}
.w21{width:76.832000pt;}
.w4{width:93.792000pt;}
.w24{width:96.352000pt;}
.w1f{width:103.104000pt;}
.w14{width:105.312000pt;}
.w16{width:108.864000pt;}
.w23{width:110.752000pt;}
.wa{width:111.744000pt;}
.w1b{width:113.952000pt;}
.w9{width:114.272000pt;}
.wc{width:114.944000pt;}
.w1c{width:117.472000pt;}
.w12{width:118.464000pt;}
.w8{width:118.784000pt;}
.w1d{width:121.664000pt;}
.w15{width:121.952000pt;}
.w1e{width:126.112000pt;}
.w13{width:144.066667pt;}
.wb{width:148.506667pt;}
.w22{width:193.053333pt;}
.w5{width:271.493333pt;}
.w3{width:271.773333pt;}
.we{width:296.133333pt;}
.wf{width:297.693333pt;}
.w17{width:301.893333pt;}
.w6{width:319.173333pt;}
.w18{width:336.453333pt;}
.w19{width:637.693333pt;}
.wd{width:642.173333pt;}
.w10{width:645.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x6{left:6.720000pt;}
.x52{left:8.032000pt;}
.x1d{left:8.960000pt;}
.x27{left:11.840000pt;}
.x3a{left:15.714667pt;}
.x3f{left:16.994667pt;}
.x37{left:18.560000pt;}
.x4a{left:19.842667pt;}
.x51{left:20.834667pt;}
.x3b{left:22.434667pt;}
.x1b{left:23.680000pt;}
.x3d{left:24.994667pt;}
.x28{left:25.954667pt;}
.x18{left:27.520000pt;}
.x1f{left:29.120000pt;}
.x25{left:31.066667pt;}
.x2d{left:32.354667pt;}
.x21{left:33.946667pt;}
.x23{left:35.520000pt;}
.x3e{left:36.834667pt;}
.x49{left:37.762667pt;}
.x2a{left:39.394667pt;}
.x29{left:40.674667pt;}
.x2c{left:41.634667pt;}
.x39{left:45.474667pt;}
.x3c{left:47.394667pt;}
.x2b{left:50.274667pt;}
.x38{left:53.794667pt;}
.x43{left:56.034667pt;}
.x46{left:61.440000pt;}
.x30{left:64.640000pt;}
.x1a{left:75.546667pt;}
.x3{left:77.792000pt;}
.x19{left:81.314667pt;}
.x8{left:85.151988pt;}
.x45{left:87.074667pt;}
.x2f{left:88.034667pt;}
.x44{left:89.954667pt;}
.x1{left:103.711988pt;}
.x14{left:105.311988pt;}
.x1c{left:109.472000pt;}
.x57{left:113.631988pt;}
.x50{left:117.792000pt;}
.xa{left:120.351988pt;}
.x32{left:122.592000pt;}
.xe{left:124.543988pt;}
.x47{left:127.386667pt;}
.x48{left:130.624000pt;}
.x13{left:132.543988pt;}
.x10{left:141.506655pt;}
.x2{left:163.906655pt;}
.xd{left:177.986655pt;}
.x9{left:189.186655pt;}
.x53{left:195.266667pt;}
.x1e{left:228.893333pt;}
.x33{left:241.693333pt;}
.x4b{left:245.213333pt;}
.x17{left:256.093333pt;}
.x15{left:260.261333pt;}
.x12{left:263.133322pt;}
.x4{left:264.741333pt;}
.xf{left:270.813322pt;}
.x4f{left:281.381333pt;}
.x26{left:283.941333pt;}
.x40{left:287.141333pt;}
.x31{left:289.381333pt;}
.xb{left:307.013322pt;}
.x42{left:329.093333pt;}
.x20{left:343.813333pt;}
.x5{left:350.213333pt;}
.x11{left:353.733322pt;}
.x4c{left:363.333333pt;}
.x2e{left:373.920000pt;}
.x41{left:379.680000pt;}
.x34{left:386.400000pt;}
.x54{left:388.960000pt;}
.x16{left:396.960000pt;}
.xc{left:407.199988pt;}
.x7{left:444.640000pt;}
.x22{left:456.186667pt;}
.x4d{left:485.626667pt;}
.x35{left:492.346667pt;}
.x55{left:500.346667pt;}
.x24{left:605.346667pt;}
.x4e{left:612.706667pt;}
.x36{left:614.946667pt;}
.x56{left:619.453333pt;}
}




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