
    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_8e56236d95f6ef0e7110b95f.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_8386a85cbfbc157b31bd4166.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_debc806d02e6260ddb4c8fbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_ba568bd134a8c07a71e669a1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.937988;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_c328854fcc704a12d21200f2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4c70f9225d1fa74ecb98b835.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_180aeab5cae43335f3a3fcfd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-2.700000px;}
.lsc{letter-spacing:-1.494000px;}
.ls4{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.ls5{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.180000px;}
.lsd{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls1a{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.lsb{letter-spacing:14.580000px;}
.ls19{letter-spacing:16.506720px;}
.ls15{letter-spacing:34.506720px;}
.ls18{letter-spacing:46.026720px;}
.ls16{letter-spacing:79.146720px;}
.ls17{letter-spacing:79.290720px;}
.ls14{letter-spacing:118.026720px;}
.ls11{letter-spacing:124.506720px;}
.ls10{letter-spacing:124.650720px;}
.ls1{letter-spacing:161.370720px;}
.ls13{letter-spacing:196.506720px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.300000px;}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws9{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.wsb{word-spacing:-13.446000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._21{margin-left:-1077.639120px;}
._6{margin-left:-964.920000px;}
._22{margin-left:-731.952000px;}
._76{margin-left:-14.489280px;}
._8{margin-left:-4.014720px;}
._7{margin-left:-2.474640px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._e{width:2.546160px;}
._10{width:3.913200px;}
._d{width:5.132160px;}
._c{width:6.303600px;}
._12{width:7.912800px;}
._15{width:9.442080px;}
._24{width:10.725840px;}
._f{width:11.801520px;}
._11{width:13.056480px;}
._14{width:16.194960px;}
._13{width:17.390160px;}
._2b{width:18.635760px;}
._a{width:19.661040px;}
._9{width:20.975760px;}
._b{width:22.030320px;}
._1a{width:23.753520px;}
._19{width:24.860160px;}
._27{width:26.294400px;}
._29{width:27.429840px;}
._1d{width:28.505520px;}
._1c{width:29.729520px;}
._20{width:31.104000px;}
._2a{width:32.808240px;}
._26{width:33.972480px;}
._17{width:35.915760px;}
._2c{width:37.550880px;}
._18{width:39.291120px;}
._25{width:40.397760px;}
._16{width:42.429600px;}
._23{width:43.742160px;}
._1f{width:44.939520px;}
._1e{width:46.194480px;}
._2d{width:47.248560px;}
._1b{width:48.286080px;}
._3c{width:49.332960px;}
._28{width:50.585760px;}
._5b{width:51.703200px;}
._2e{width:52.976160px;}
._3a{width:54.321840px;}
._2f{width:56.143440px;}
._5d{width:58.005360px;}
._4b{width:59.042880px;}
._4a{width:60.625440px;}
._33{width:62.238960px;}
._34{width:63.257040px;}
._31{width:64.868400px;}
._37{width:65.915280px;}
._39{width:68.095440px;}
._59{width:69.230880px;}
._42{width:70.397280px;}
._43{width:71.442000px;}
._35{width:72.876240px;}
._52{width:74.520720px;}
._44{width:76.521600px;}
._3f{width:78.493680px;}
._30{width:81.811440px;}
._48{width:83.185920px;}
._54{width:85.217760px;}
._74{width:87.070320px;}
._5c{width:89.998560px;}
._38{width:92.178720px;}
._41{width:93.553200px;}
._40{width:95.376960px;}
._65{width:96.452640px;}
._4c{width:97.528320px;}
._75{width:98.783280px;}
._50{width:100.963440px;}
._4e{width:105.476400px;}
._5f{width:106.760160px;}
._5e{width:107.926560px;}
._62{width:109.389600px;}
._4f{width:112.736160px;}
._78{width:113.754240px;}
._70{width:116.501040px;}
._51{width:117.727200px;}
._77{width:119.579760px;}
._36{width:121.580640px;}
._72{width:123.225120px;}
._3d{width:124.480080px;}
._53{width:125.704080px;}
._6b{width:129.738960px;}
._60{width:133.233840px;}
._64{width:139.508640px;}
._56{width:140.666880px;}
._55{width:145.539840px;}
._6e{width:149.070240px;}
._6f{width:151.790400px;}
._6a{width:153.403920px;}
._46{width:159.798240px;}
._6c{width:166.431600px;}
._73{width:173.662560px;}
._71{width:179.249040px;}
._61{width:183.283920px;}
._67{width:190.216080px;}
._63{width:196.251840px;}
._58{width:198.099840px;}
._57{width:201.240000px;}
._3b{width:209.427840px;}
._32{width:214.806240px;}
._69{width:223.621920px;}
._66{width:232.315920px;}
._45{width:240.503040px;}
._4d{width:246.180240px;}
._68{width:256.430160px;}
._6d{width:262.944000px;}
._3e{width:286.757280px;}
._49{width:296.856720px;}
._47{width:323.748720px;}
._5a{width:866.083200px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y3a{bottom:-64.836000px;}
.y39{bottom:-27.216000px;}
.y0{bottom:0.000000px;}
.y71{bottom:5.760000px;}
.yab{bottom:5.796000px;}
.y76{bottom:5.940000px;}
.yc8{bottom:5.976000px;}
.y10f{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y180{bottom:8.280000px;}
.y16a{bottom:9.360000px;}
.y14a{bottom:9.540000px;}
.y38{bottom:10.080000px;}
.y110{bottom:11.520000px;}
.y8{bottom:11.700000px;}
.y156{bottom:15.660000px;}
.y15e{bottom:15.705000px;}
.y164{bottom:15.840000px;}
.y184{bottom:18.360000px;}
.y16d{bottom:19.260000px;}
.y14c{bottom:19.440000px;}
.y92{bottom:19.800000px;}
.y142{bottom:19.980000px;}
.y150{bottom:20.160000px;}
.y17a{bottom:25.554000px;}
.y73{bottom:25.560000px;}
.y10c{bottom:25.590000px;}
.yaa{bottom:25.596000px;}
.y15a{bottom:25.605000px;}
.y75{bottom:25.740000px;}
.yc7{bottom:25.776000px;}
.y9d{bottom:25.785000px;}
.y17f{bottom:28.260000px;}
.y169{bottom:29.160000px;}
.y149{bottom:29.340000px;}
.y143{bottom:29.880000px;}
.y151{bottom:30.060000px;}
.y147{bottom:33.480000px;}
.y176{bottom:35.454000px;}
.y161{bottom:35.460000px;}
.y15c{bottom:35.505000px;}
.y154{bottom:35.640000px;}
.y145{bottom:35.685000px;}
.y9{bottom:36.720000px;}
.y183{bottom:38.160000px;}
.y16c{bottom:39.060000px;}
.y14b{bottom:39.240000px;}
.y189{bottom:39.600000px;}
.y18d{bottom:39.780000px;}
.y166{bottom:43.200000px;}
.y179{bottom:45.354000px;}
.y91{bottom:45.360000px;}
.y10b{bottom:45.390000px;}
.ya9{bottom:45.396000px;}
.y159{bottom:45.405000px;}
.yb5{bottom:45.540000px;}
.yc6{bottom:45.576000px;}
.y9c{bottom:45.585000px;}
.y17e{bottom:48.060000px;}
.y171{bottom:48.960000px;}
.y168{bottom:48.990000px;}
.y148{bottom:49.140000px;}
.y14e{bottom:49.500000px;}
.y158{bottom:49.545000px;}
.y163{bottom:49.680000px;}
.y186{bottom:49.725000px;}
.y6{bottom:52.200000px;}
.y175{bottom:55.254000px;}
.y160{bottom:55.260000px;}
.y153{bottom:55.440000px;}
.y15b{bottom:55.485000px;}
.y182{bottom:57.960000px;}
.y111{bottom:58.320000px;}
.y16b{bottom:59.070000px;}
.y178{bottom:65.154000px;}
.yca{bottom:65.160000px;}
.y90{bottom:65.190000px;}
.yb4{bottom:65.340000px;}
.ya8{bottom:65.370000px;}
.y9b{bottom:65.385000px;}
.y17d{bottom:67.860000px;}
.y170{bottom:68.760000px;}
.y167{bottom:68.970000px;}
.y10e{bottom:73.980000px;}
.y174{bottom:75.054000px;}
.y18f{bottom:75.060000px;}
.y155{bottom:75.240000px;}
.y18b{bottom:75.270000px;}
.y15d{bottom:75.285000px;}
.y181{bottom:77.760000px;}
.y34{bottom:81.360000px;}
.y5e{bottom:81.900000px;}
.y177{bottom:85.134000px;}
.yb3{bottom:85.140000px;}
.y8f{bottom:85.170000px;}
.y9a{bottom:85.185000px;}
.yc2{bottom:86.760000px;}
.y17c{bottom:87.660000px;}
.y8c{bottom:88.920000px;}
.y9f{bottom:89.100000px;}
.y37{bottom:91.296000px;}
.y108{bottom:95.616000px;}
.y6f{bottom:97.956000px;}
.y9e{bottom:99.225000px;}
.y33{bottom:101.196000px;}
.y5d{bottom:101.736000px;}
.yd9{bottom:104.940000px;}
.ya7{bottom:104.970000px;}
.yae{bottom:104.985000px;}
.yb2{bottom:105.120000px;}
.yc5{bottom:105.150000px;}
.y99{bottom:105.165000px;}
.y195{bottom:105.876000px;}
.y8b{bottom:108.756000px;}
.y140{bottom:114.516000px;}
.y107{bottom:115.416000px;}
.y120{bottom:116.856000px;}
.y6e{bottom:117.756000px;}
.y5c{bottom:118.836000px;}
.y98{bottom:119.205000px;}
.y32{bottom:120.996000px;}
.ye1{bottom:124.740000px;}
.ya6{bottom:124.770000px;}
.yb1{bottom:124.920000px;}
.yc4{bottom:124.950000px;}
.y97{bottom:124.965000px;}
.y194{bottom:125.856000px;}
.y8a{bottom:128.556000px;}
.y173{bottom:129.816000px;}
.y13f{bottom:134.316000px;}
.y106{bottom:135.396000px;}
.y11f{bottom:136.656000px;}
.y6d{bottom:137.556000px;}
.y31{bottom:140.796000px;}
.ya5{bottom:144.570000px;}
.yb0{bottom:144.720000px;}
.yc3{bottom:144.750000px;}
.y96{bottom:144.765000px;}
.y193{bottom:145.656000px;}
.y89{bottom:148.356000px;}
.y14d{bottom:152.490000px;}
.y13e{bottom:154.110000px;}
.y105{bottom:155.190000px;}
.y11e{bottom:156.450000px;}
.y6c{bottom:157.350000px;}
.ya4{bottom:158.610000px;}
.y30{bottom:160.590000px;}
.ya3{bottom:164.550000px;}
.y95{bottom:164.565000px;}
.y192{bottom:165.450000px;}
.y88{bottom:168.330000px;}
.y10d{bottom:173.010000px;}
.y13d{bottom:174.090000px;}
.y104{bottom:174.990000px;}
.y11d{bottom:176.250000px;}
.y6b{bottom:177.330000px;}
.y2f{bottom:180.570000px;}
.ya2{bottom:184.350000px;}
.y94{bottom:184.365000px;}
.y191{bottom:185.250000px;}
.y87{bottom:188.130000px;}
.y13c{bottom:193.890000px;}
.y103{bottom:194.790000px;}
.y11c{bottom:196.050000px;}
.y6a{bottom:197.130000px;}
.y2e{bottom:200.370000px;}
.ya1{bottom:204.150000px;}
.ycb{bottom:204.165000px;}
.yde{bottom:204.330000px;}
.y190{bottom:205.050000px;}
.y86{bottom:207.930000px;}
.y13b{bottom:213.690000px;}
.y102{bottom:214.590000px;}
.y11b{bottom:216.030000px;}
.y69{bottom:216.930000px;}
.y2d{bottom:220.170000px;}
.ya0{bottom:223.950000px;}
.ydd{bottom:224.130000px;}
.y85{bottom:227.730000px;}
.y13a{bottom:233.490000px;}
.y101{bottom:234.570000px;}
.y172{bottom:234.930000px;}
.y11a{bottom:235.830000px;}
.y68{bottom:236.730000px;}
.y2c{bottom:239.970000px;}
.ydc{bottom:243.930000px;}
.y84{bottom:247.530000px;}
.y139{bottom:253.290000px;}
.y100{bottom:254.370000px;}
.y119{bottom:255.630000px;}
.y67{bottom:256.530000px;}
.y146{bottom:257.610000px;}
.y2b{bottom:259.770000px;}
.ydb{bottom:263.775000px;}
.y83{bottom:267.510000px;}
.y138{bottom:273.270000px;}
.yff{bottom:274.170000px;}
.y118{bottom:275.430000px;}
.y66{bottom:276.510000px;}
.y2a{bottom:279.750000px;}
.yda{bottom:283.575000px;}
.yc1{bottom:286.050000px;}
.y82{bottom:287.310000px;}
.y137{bottom:293.070000px;}
.yfe{bottom:293.970000px;}
.y117{bottom:295.230000px;}
.y65{bottom:296.310000px;}
.y29{bottom:299.550000px;}
.y81{bottom:307.110000px;}
.yc0{bottom:312.330000px;}
.y136{bottom:312.870000px;}
.yfd{bottom:313.770000px;}
.y116{bottom:315.210000px;}
.y64{bottom:316.110000px;}
.y28{bottom:319.350000px;}
.y80{bottom:326.910000px;}
.y93{bottom:327.810000px;}
.y18e{bottom:329.250000px;}
.y144{bottom:330.510000px;}
.ybf{bottom:332.130000px;}
.y135{bottom:332.670000px;}
.yfc{bottom:333.750000px;}
.y115{bottom:335.010000px;}
.y63{bottom:335.910000px;}
.y27{bottom:339.195000px;}
.y16f{bottom:340.095000px;}
.y7f{bottom:346.755000px;}
.ybe{bottom:351.975000px;}
.y134{bottom:352.515000px;}
.yfb{bottom:353.595000px;}
.y114{bottom:354.855000px;}
.y62{bottom:355.755000px;}
.y26{bottom:358.995000px;}
.y7e{bottom:366.735000px;}
.y113{bottom:371.415000px;}
.ybd{bottom:371.955000px;}
.y133{bottom:372.495000px;}
.yfa{bottom:373.395000px;}
.y61{bottom:375.735000px;}
.y25{bottom:378.975000px;}
.yd8{bottom:385.275000px;}
.y7d{bottom:386.535000px;}
.ybc{bottom:391.755000px;}
.y132{bottom:392.295000px;}
.yf9{bottom:393.195000px;}
.y60{bottom:395.535000px;}
.y24{bottom:398.775000px;}
.y7c{bottom:406.335000px;}
.ybb{bottom:411.555000px;}
.y131{bottom:412.095000px;}
.yf8{bottom:412.995000px;}
.y5f{bottom:415.335000px;}
.y141{bottom:415.875000px;}
.y23{bottom:418.575000px;}
.y7b{bottom:426.135000px;}
.yba{bottom:431.355000px;}
.y130{bottom:431.895000px;}
.y16e{bottom:432.435000px;}
.yf7{bottom:432.975000px;}
.y18c{bottom:434.415000px;}
.y5b{bottom:435.135000px;}
.y22{bottom:438.375000px;}
.y7a{bottom:445.935000px;}
.yb9{bottom:451.155000px;}
.y12f{bottom:451.695000px;}
.yf6{bottom:452.775000px;}
.y79{bottom:454.755000px;}
.y5a{bottom:454.935000px;}
.y21{bottom:458.175000px;}
.yb8{bottom:471.135000px;}
.y12e{bottom:471.675000px;}
.yf5{bottom:472.575000px;}
.y59{bottom:474.915000px;}
.y20{bottom:478.155000px;}
.y78{bottom:484.995000px;}
.yb7{bottom:490.935000px;}
.y12d{bottom:491.475000px;}
.yf4{bottom:492.375000px;}
.y58{bottom:494.715000px;}
.y1f{bottom:497.955000px;}
.yd7{bottom:504.975000px;}
.yb6{bottom:505.695000px;}
.y12c{bottom:511.275000px;}
.yf3{bottom:512.175000px;}
.y57{bottom:514.515000px;}
.y77{bottom:515.235000px;}
.y1e{bottom:517.755000px;}
.y18a{bottom:519.735000px;}
.y8e{bottom:527.115000px;}
.y12b{bottom:531.075000px;}
.yd6{bottom:531.255000px;}
.yf2{bottom:532.155000px;}
.y56{bottom:534.315000px;}
.y165{bottom:537.555000px;}
.y1d{bottom:539.895000px;}
.y74{bottom:545.295000px;}
.y12a{bottom:550.875000px;}
.yd5{bottom:551.235000px;}
.yf1{bottom:551.955000px;}
.y55{bottom:554.115000px;}
.y1c{bottom:559.695000px;}
.y10a{bottom:560.235000px;}
.y129{bottom:570.855000px;}
.yd4{bottom:571.035000px;}
.yf0{bottom:571.755000px;}
.y54{bottom:574.095000px;}
.y1b{bottom:579.495000px;}
.y72{bottom:590.685000px;}
.yd3{bottom:590.865000px;}
.yef{bottom:591.585000px;}
.y53{bottom:593.925000px;}
.y1a{bottom:599.325000px;}
.y128{bottom:610.485000px;}
.yd2{bottom:610.665000px;}
.yee{bottom:611.385000px;}
.y52{bottom:613.725000px;}
.y19{bottom:619.125000px;}
.y188{bottom:625.065000px;}
.yaf{bottom:625.425000px;}
.y8d{bottom:627.045000px;}
.y162{bottom:629.925000px;}
.y127{bottom:630.285000px;}
.yd1{bottom:630.465000px;}
.yed{bottom:631.365000px;}
.y51{bottom:633.525000px;}
.y70{bottom:636.045000px;}
.y18{bottom:639.105000px;}
.y109{bottom:640.365000px;}
.y126{bottom:650.085000px;}
.yd0{bottom:650.445000px;}
.yec{bottom:651.165000px;}
.y50{bottom:653.325000px;}
.y17{bottom:658.905000px;}
.y125{bottom:670.065000px;}
.ycf{bottom:670.245000px;}
.yeb{bottom:670.965000px;}
.y4f{bottom:673.305000px;}
.y16{bottom:678.705000px;}
.y124{bottom:689.865000px;}
.yce{bottom:690.045000px;}
.yea{bottom:690.765000px;}
.y4e{bottom:693.105000px;}
.y15{bottom:698.505000px;}
.y123{bottom:709.665000px;}
.ycd{bottom:709.845000px;}
.y187{bottom:710.385000px;}
.ye9{bottom:710.565000px;}
.y4d{bottom:712.905000px;}
.y14{bottom:718.305000px;}
.ycc{bottom:724.605000px;}
.y122{bottom:729.465000px;}
.ye8{bottom:730.545000px;}
.y4c{bottom:732.705000px;}
.y15f{bottom:735.225000px;}
.y13{bottom:738.285000px;}
.ye7{bottom:750.345000px;}
.y4b{bottom:752.505000px;}
.y112{bottom:756.465000px;}
.y12{bottom:758.085000px;}
.ye6{bottom:770.145000px;}
.y121{bottom:771.405000px;}
.y4a{bottom:772.485000px;}
.y11{bottom:777.885000px;}
.yad{bottom:784.905000px;}
.ye5{bottom:789.945000px;}
.y49{bottom:792.285000px;}
.y10{bottom:805.245000px;}
.ye4{bottom:809.745000px;}
.y48{bottom:812.085000px;}
.y185{bottom:815.505000px;}
.yf{bottom:820.365000px;}
.y157{bottom:820.545000px;}
.ye3{bottom:829.770000px;}
.y47{bottom:831.930000px;}
.ye{bottom:842.190000px;}
.ye2{bottom:849.570000px;}
.y46{bottom:851.730000px;}
.yd{bottom:863.430000px;}
.ye0{bottom:864.330000px;}
.y45{bottom:871.710000px;}
.yc{bottom:887.010000px;}
.y44{bottom:891.510000px;}
.yac{bottom:904.830000px;}
.y43{bottom:911.310000px;}
.yb{bottom:918.690000px;}
.y17b{bottom:920.670000px;}
.y152{bottom:925.710000px;}
.y42{bottom:931.110000px;}
.ya{bottom:950.370000px;}
.y41{bottom:950.910000px;}
.y40{bottom:970.710000px;}
.y5{bottom:979.170000px;}
.y3f{bottom:990.690000px;}
.yc9{bottom:1004.010000px;}
.y3e{bottom:1010.490000px;}
.y4{bottom:1013.010000px;}
.ydf{bottom:1023.810000px;}
.y3d{bottom:1030.290000px;}
.y14f{bottom:1030.830000px;}
.y3{bottom:1043.970000px;}
.y3c{bottom:1050.090000px;}
.y3b{bottom:1069.890000px;}
.y2{bottom:1074.780000px;}
.y36{bottom:1098.000000px;}
.y1{bottom:1106.820000px;}
.y35{bottom:1118.520000px;}
.h13{height:19.800000px;}
.h21{height:21.816000px;}
.h4{height:21.960000px;}
.hc{height:24.120000px;}
.h10{height:24.480000px;}
.h5{height:27.432422px;}
.ha{height:34.855313px;}
.h11{height:39.600000px;}
.h12{height:39.816000px;}
.h8{height:42.164648px;}
.h19{height:43.156758px;}
.h22{height:43.506914px;}
.h2{height:46.736719px;}
.h23{height:48.240000px;}
.h26{height:48.276000px;}
.hf{height:48.496641px;}
.hd{height:50.800781px;}
.h9{height:53.224453px;}
.hb{height:53.573906px;}
.h1{height:54.864844px;}
.he{height:58.429688px;}
.h3{height:59.383125px;}
.h1f{height:59.436000px;}
.h1c{height:59.580000px;}
.h6{height:65.884219px;}
.h24{height:66.960000px;}
.h7{height:67.565039px;}
.h2b{height:79.200000px;}
.h1a{height:79.236000px;}
.h27{height:79.380000px;}
.h20{height:79.416000px;}
.h29{height:86.400000px;}
.h28{height:86.436000px;}
.h25{height:99.180000px;}
.h14{height:99.216000px;}
.h2a{height:104.220000px;}
.h1d{height:118.980000px;}
.h17{height:119.016000px;}
.h18{height:158.760000px;}
.h15{height:198.390000px;}
.h1b{height:218.190000px;}
.h16{height:237.990000px;}
.h1e{height:297.615000px;}
.h0{height:1188.000000px;}
.w2{width:57.276000px;}
.w14{width:104.436000px;}
.w11{width:114.120000px;}
.w15{width:116.640000px;}
.w13{width:151.590000px;}
.wd{width:155.730000px;}
.wa{width:160.410000px;}
.w12{width:167.430000px;}
.wb{width:214.950000px;}
.wc{width:215.130000px;}
.w6{width:228.270000px;}
.w7{width:228.450000px;}
.wf{width:253.470000px;}
.we{width:256.530000px;}
.w8{width:278.895000px;}
.w9{width:367.995000px;}
.w5{width:410.295000px;}
.w10{width:667.185000px;}
.w4{width:677.805000px;}
.w3{width:742.830000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:1.080000px;}
.x1c{left:2.880000px;}
.x3{left:8.100000px;}
.x15{left:10.800000px;}
.x1{left:54.179986px;}
.x2{left:58.680000px;}
.x10{left:62.100000px;}
.xe{left:73.439986px;}
.x8{left:77.939986px;}
.x2d{left:80.999986px;}
.x7{left:82.079986px;}
.x19{left:96.515986px;}
.x16{left:108.035986px;}
.x4{left:116.676000px;}
.x11{left:120.096000px;}
.x23{left:125.496000px;}
.x20{left:135.756000px;}
.x1b{left:139.176000px;}
.x25{left:162.029986px;}
.xb{left:165.449986px;}
.x6{left:219.099000px;}
.x29{left:242.490000px;}
.x13{left:244.479000px;}
.xf{left:282.674986px;}
.xc{left:297.974986px;}
.x1e{left:334.335000px;}
.x14{left:338.829000px;}
.x21{left:351.615000px;}
.x9{left:360.974986px;}
.x2a{left:413.715000px;}
.xa{left:459.104986px;}
.x5{left:465.369000px;}
.xd{left:485.564986px;}
.x27{left:492.404986px;}
.x26{left:499.064986px;}
.x2e{left:512.564986px;}
.x1a{left:528.044986px;}
.x17{left:539.564986px;}
.x1d{left:550.545000px;}
.x22{left:567.285000px;}
.x2b{left:568.905000px;}
.x12{left:640.194000px;}
.x2c{left:676.950000px;}
.x1f{left:703.050000px;}
.x24{left:783.149986px;}
.x18{left:811.799986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.400000pt;}
.lsc{letter-spacing:-1.328000pt;}
.ls4{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.lsb{letter-spacing:12.960000pt;}
.ls19{letter-spacing:14.672640pt;}
.ls15{letter-spacing:30.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ls16{letter-spacing:70.352640pt;}
.ls17{letter-spacing:70.480640pt;}
.ls14{letter-spacing:104.912640pt;}
.ls11{letter-spacing:110.672640pt;}
.ls10{letter-spacing:110.800640pt;}
.ls1{letter-spacing:143.440640pt;}
.ls13{letter-spacing:174.672640pt;}
.wse{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.600000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.wsb{word-spacing:-11.952000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._21{margin-left:-957.901440pt;}
._6{margin-left:-857.706667pt;}
._22{margin-left:-650.624000pt;}
._76{margin-left:-12.879360pt;}
._8{margin-left:-3.568640pt;}
._7{margin-left:-2.199680pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._e{width:2.263253pt;}
._10{width:3.478400pt;}
._d{width:4.561920pt;}
._c{width:5.603200pt;}
._12{width:7.033600pt;}
._15{width:8.392960pt;}
._24{width:9.534080pt;}
._f{width:10.490240pt;}
._11{width:11.605760pt;}
._14{width:14.395520pt;}
._13{width:15.457920pt;}
._2b{width:16.565120pt;}
._a{width:17.476480pt;}
._9{width:18.645120pt;}
._b{width:19.582507pt;}
._1a{width:21.114240pt;}
._19{width:22.097920pt;}
._27{width:23.372800pt;}
._29{width:24.382080pt;}
._1d{width:25.338240pt;}
._1c{width:26.426240pt;}
._20{width:27.648000pt;}
._2a{width:29.162880pt;}
._26{width:30.197760pt;}
._17{width:31.925120pt;}
._2c{width:33.378560pt;}
._18{width:34.925440pt;}
._25{width:35.909120pt;}
._16{width:37.715200pt;}
._23{width:38.881920pt;}
._1f{width:39.946240pt;}
._1e{width:41.061760pt;}
._2d{width:41.998720pt;}
._1b{width:42.920960pt;}
._3c{width:43.851520pt;}
._28{width:44.965120pt;}
._5b{width:45.958400pt;}
._2e{width:47.089920pt;}
._3a{width:48.286080pt;}
._2f{width:49.905280pt;}
._5d{width:51.560320pt;}
._4b{width:52.482560pt;}
._4a{width:53.889280pt;}
._33{width:55.323520pt;}
._34{width:56.228480pt;}
._31{width:57.660800pt;}
._37{width:58.591360pt;}
._39{width:60.529280pt;}
._59{width:61.538560pt;}
._42{width:62.575360pt;}
._43{width:63.504000pt;}
._35{width:64.778880pt;}
._52{width:66.240640pt;}
._44{width:68.019200pt;}
._3f{width:69.772160pt;}
._30{width:72.721280pt;}
._48{width:73.943040pt;}
._54{width:75.749120pt;}
._74{width:77.395840pt;}
._5c{width:79.998720pt;}
._38{width:81.936640pt;}
._41{width:83.158400pt;}
._40{width:84.779520pt;}
._65{width:85.735680pt;}
._4c{width:86.691840pt;}
._75{width:87.807360pt;}
._50{width:89.745280pt;}
._4e{width:93.756800pt;}
._5f{width:94.897920pt;}
._5e{width:95.934720pt;}
._62{width:97.235200pt;}
._4f{width:100.209920pt;}
._78{width:101.114880pt;}
._70{width:103.556480pt;}
._51{width:104.646400pt;}
._77{width:106.293120pt;}
._36{width:108.071680pt;}
._72{width:109.533440pt;}
._3d{width:110.648960pt;}
._53{width:111.736960pt;}
._6b{width:115.323520pt;}
._60{width:118.430080pt;}
._64{width:124.007680pt;}
._56{width:125.037227pt;}
._55{width:129.368747pt;}
._6e{width:132.506880pt;}
._6f{width:134.924800pt;}
._6a{width:136.359040pt;}
._46{width:142.042880pt;}
._6c{width:147.939200pt;}
._73{width:154.366720pt;}
._71{width:159.332480pt;}
._61{width:162.919040pt;}
._67{width:169.080960pt;}
._63{width:174.446080pt;}
._58{width:176.088747pt;}
._57{width:178.880000pt;}
._3b{width:186.158080pt;}
._32{width:190.938880pt;}
._69{width:198.775040pt;}
._66{width:206.503040pt;}
._45{width:213.780480pt;}
._4d{width:218.826880pt;}
._68{width:227.937920pt;}
._6d{width:233.728000pt;}
._3e{width:254.895360pt;}
._49{width:263.872640pt;}
._47{width:287.776640pt;}
._5a{width:769.851733pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y3a{bottom:-57.632000pt;}
.y39{bottom:-24.192000pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:5.120000pt;}
.yab{bottom:5.152000pt;}
.y76{bottom:5.280000pt;}
.yc8{bottom:5.312000pt;}
.y10f{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y180{bottom:7.360000pt;}
.y16a{bottom:8.320000pt;}
.y14a{bottom:8.480000pt;}
.y38{bottom:8.960000pt;}
.y110{bottom:10.240000pt;}
.y8{bottom:10.400000pt;}
.y156{bottom:13.920000pt;}
.y15e{bottom:13.960000pt;}
.y164{bottom:14.080000pt;}
.y184{bottom:16.320000pt;}
.y16d{bottom:17.120000pt;}
.y14c{bottom:17.280000pt;}
.y92{bottom:17.600000pt;}
.y142{bottom:17.760000pt;}
.y150{bottom:17.920000pt;}
.y17a{bottom:22.714667pt;}
.y73{bottom:22.720000pt;}
.y10c{bottom:22.746667pt;}
.yaa{bottom:22.752000pt;}
.y15a{bottom:22.760000pt;}
.y75{bottom:22.880000pt;}
.yc7{bottom:22.912000pt;}
.y9d{bottom:22.920000pt;}
.y17f{bottom:25.120000pt;}
.y169{bottom:25.920000pt;}
.y149{bottom:26.080000pt;}
.y143{bottom:26.560000pt;}
.y151{bottom:26.720000pt;}
.y147{bottom:29.760000pt;}
.y176{bottom:31.514667pt;}
.y161{bottom:31.520000pt;}
.y15c{bottom:31.560000pt;}
.y154{bottom:31.680000pt;}
.y145{bottom:31.720000pt;}
.y9{bottom:32.640000pt;}
.y183{bottom:33.920000pt;}
.y16c{bottom:34.720000pt;}
.y14b{bottom:34.880000pt;}
.y189{bottom:35.200000pt;}
.y18d{bottom:35.360000pt;}
.y166{bottom:38.400000pt;}
.y179{bottom:40.314667pt;}
.y91{bottom:40.320000pt;}
.y10b{bottom:40.346667pt;}
.ya9{bottom:40.352000pt;}
.y159{bottom:40.360000pt;}
.yb5{bottom:40.480000pt;}
.yc6{bottom:40.512000pt;}
.y9c{bottom:40.520000pt;}
.y17e{bottom:42.720000pt;}
.y171{bottom:43.520000pt;}
.y168{bottom:43.546667pt;}
.y148{bottom:43.680000pt;}
.y14e{bottom:44.000000pt;}
.y158{bottom:44.040000pt;}
.y163{bottom:44.160000pt;}
.y186{bottom:44.200000pt;}
.y6{bottom:46.400000pt;}
.y175{bottom:49.114667pt;}
.y160{bottom:49.120000pt;}
.y153{bottom:49.280000pt;}
.y15b{bottom:49.320000pt;}
.y182{bottom:51.520000pt;}
.y111{bottom:51.840000pt;}
.y16b{bottom:52.506667pt;}
.y178{bottom:57.914667pt;}
.yca{bottom:57.920000pt;}
.y90{bottom:57.946667pt;}
.yb4{bottom:58.080000pt;}
.ya8{bottom:58.106667pt;}
.y9b{bottom:58.120000pt;}
.y17d{bottom:60.320000pt;}
.y170{bottom:61.120000pt;}
.y167{bottom:61.306667pt;}
.y10e{bottom:65.760000pt;}
.y174{bottom:66.714667pt;}
.y18f{bottom:66.720000pt;}
.y155{bottom:66.880000pt;}
.y18b{bottom:66.906667pt;}
.y15d{bottom:66.920000pt;}
.y181{bottom:69.120000pt;}
.y34{bottom:72.320000pt;}
.y5e{bottom:72.800000pt;}
.y177{bottom:75.674667pt;}
.yb3{bottom:75.680000pt;}
.y8f{bottom:75.706667pt;}
.y9a{bottom:75.720000pt;}
.yc2{bottom:77.120000pt;}
.y17c{bottom:77.920000pt;}
.y8c{bottom:79.040000pt;}
.y9f{bottom:79.200000pt;}
.y37{bottom:81.152000pt;}
.y108{bottom:84.992000pt;}
.y6f{bottom:87.072000pt;}
.y9e{bottom:88.200000pt;}
.y33{bottom:89.952000pt;}
.y5d{bottom:90.432000pt;}
.yd9{bottom:93.280000pt;}
.ya7{bottom:93.306667pt;}
.yae{bottom:93.320000pt;}
.yb2{bottom:93.440000pt;}
.yc5{bottom:93.466667pt;}
.y99{bottom:93.480000pt;}
.y195{bottom:94.112000pt;}
.y8b{bottom:96.672000pt;}
.y140{bottom:101.792000pt;}
.y107{bottom:102.592000pt;}
.y120{bottom:103.872000pt;}
.y6e{bottom:104.672000pt;}
.y5c{bottom:105.632000pt;}
.y98{bottom:105.960000pt;}
.y32{bottom:107.552000pt;}
.ye1{bottom:110.880000pt;}
.ya6{bottom:110.906667pt;}
.yb1{bottom:111.040000pt;}
.yc4{bottom:111.066667pt;}
.y97{bottom:111.080000pt;}
.y194{bottom:111.872000pt;}
.y8a{bottom:114.272000pt;}
.y173{bottom:115.392000pt;}
.y13f{bottom:119.392000pt;}
.y106{bottom:120.352000pt;}
.y11f{bottom:121.472000pt;}
.y6d{bottom:122.272000pt;}
.y31{bottom:125.152000pt;}
.ya5{bottom:128.506667pt;}
.yb0{bottom:128.640000pt;}
.yc3{bottom:128.666667pt;}
.y96{bottom:128.680000pt;}
.y193{bottom:129.472000pt;}
.y89{bottom:131.872000pt;}
.y14d{bottom:135.546667pt;}
.y13e{bottom:136.986667pt;}
.y105{bottom:137.946667pt;}
.y11e{bottom:139.066667pt;}
.y6c{bottom:139.866667pt;}
.ya4{bottom:140.986667pt;}
.y30{bottom:142.746667pt;}
.ya3{bottom:146.266667pt;}
.y95{bottom:146.280000pt;}
.y192{bottom:147.066667pt;}
.y88{bottom:149.626667pt;}
.y10d{bottom:153.786667pt;}
.y13d{bottom:154.746667pt;}
.y104{bottom:155.546667pt;}
.y11d{bottom:156.666667pt;}
.y6b{bottom:157.626667pt;}
.y2f{bottom:160.506667pt;}
.ya2{bottom:163.866667pt;}
.y94{bottom:163.880000pt;}
.y191{bottom:164.666667pt;}
.y87{bottom:167.226667pt;}
.y13c{bottom:172.346667pt;}
.y103{bottom:173.146667pt;}
.y11c{bottom:174.266667pt;}
.y6a{bottom:175.226667pt;}
.y2e{bottom:178.106667pt;}
.ya1{bottom:181.466667pt;}
.ycb{bottom:181.480000pt;}
.yde{bottom:181.626667pt;}
.y190{bottom:182.266667pt;}
.y86{bottom:184.826667pt;}
.y13b{bottom:189.946667pt;}
.y102{bottom:190.746667pt;}
.y11b{bottom:192.026667pt;}
.y69{bottom:192.826667pt;}
.y2d{bottom:195.706667pt;}
.ya0{bottom:199.066667pt;}
.ydd{bottom:199.226667pt;}
.y85{bottom:202.426667pt;}
.y13a{bottom:207.546667pt;}
.y101{bottom:208.506667pt;}
.y172{bottom:208.826667pt;}
.y11a{bottom:209.626667pt;}
.y68{bottom:210.426667pt;}
.y2c{bottom:213.306667pt;}
.ydc{bottom:216.826667pt;}
.y84{bottom:220.026667pt;}
.y139{bottom:225.146667pt;}
.y100{bottom:226.106667pt;}
.y119{bottom:227.226667pt;}
.y67{bottom:228.026667pt;}
.y146{bottom:228.986667pt;}
.y2b{bottom:230.906667pt;}
.ydb{bottom:234.466667pt;}
.y83{bottom:237.786667pt;}
.y138{bottom:242.906667pt;}
.yff{bottom:243.706667pt;}
.y118{bottom:244.826667pt;}
.y66{bottom:245.786667pt;}
.y2a{bottom:248.666667pt;}
.yda{bottom:252.066667pt;}
.yc1{bottom:254.266667pt;}
.y82{bottom:255.386667pt;}
.y137{bottom:260.506667pt;}
.yfe{bottom:261.306667pt;}
.y117{bottom:262.426667pt;}
.y65{bottom:263.386667pt;}
.y29{bottom:266.266667pt;}
.y81{bottom:272.986667pt;}
.yc0{bottom:277.626667pt;}
.y136{bottom:278.106667pt;}
.yfd{bottom:278.906667pt;}
.y116{bottom:280.186667pt;}
.y64{bottom:280.986667pt;}
.y28{bottom:283.866667pt;}
.y80{bottom:290.586667pt;}
.y93{bottom:291.386667pt;}
.y18e{bottom:292.666667pt;}
.y144{bottom:293.786667pt;}
.ybf{bottom:295.226667pt;}
.y135{bottom:295.706667pt;}
.yfc{bottom:296.666667pt;}
.y115{bottom:297.786667pt;}
.y63{bottom:298.586667pt;}
.y27{bottom:301.506667pt;}
.y16f{bottom:302.306667pt;}
.y7f{bottom:308.226667pt;}
.ybe{bottom:312.866667pt;}
.y134{bottom:313.346667pt;}
.yfb{bottom:314.306667pt;}
.y114{bottom:315.426667pt;}
.y62{bottom:316.226667pt;}
.y26{bottom:319.106667pt;}
.y7e{bottom:325.986667pt;}
.y113{bottom:330.146667pt;}
.ybd{bottom:330.626667pt;}
.y133{bottom:331.106667pt;}
.yfa{bottom:331.906667pt;}
.y61{bottom:333.986667pt;}
.y25{bottom:336.866667pt;}
.yd8{bottom:342.466667pt;}
.y7d{bottom:343.586667pt;}
.ybc{bottom:348.226667pt;}
.y132{bottom:348.706667pt;}
.yf9{bottom:349.506667pt;}
.y60{bottom:351.586667pt;}
.y24{bottom:354.466667pt;}
.y7c{bottom:361.186667pt;}
.ybb{bottom:365.826667pt;}
.y131{bottom:366.306667pt;}
.yf8{bottom:367.106667pt;}
.y5f{bottom:369.186667pt;}
.y141{bottom:369.666667pt;}
.y23{bottom:372.066667pt;}
.y7b{bottom:378.786667pt;}
.yba{bottom:383.426667pt;}
.y130{bottom:383.906667pt;}
.y16e{bottom:384.386667pt;}
.yf7{bottom:384.866667pt;}
.y18c{bottom:386.146667pt;}
.y5b{bottom:386.786667pt;}
.y22{bottom:389.666667pt;}
.y7a{bottom:396.386667pt;}
.yb9{bottom:401.026667pt;}
.y12f{bottom:401.506667pt;}
.yf6{bottom:402.466667pt;}
.y79{bottom:404.226667pt;}
.y5a{bottom:404.386667pt;}
.y21{bottom:407.266667pt;}
.yb8{bottom:418.786667pt;}
.y12e{bottom:419.266667pt;}
.yf5{bottom:420.066667pt;}
.y59{bottom:422.146667pt;}
.y20{bottom:425.026667pt;}
.y78{bottom:431.106667pt;}
.yb7{bottom:436.386667pt;}
.y12d{bottom:436.866667pt;}
.yf4{bottom:437.666667pt;}
.y58{bottom:439.746667pt;}
.y1f{bottom:442.626667pt;}
.yd7{bottom:448.866667pt;}
.yb6{bottom:449.506667pt;}
.y12c{bottom:454.466667pt;}
.yf3{bottom:455.266667pt;}
.y57{bottom:457.346667pt;}
.y77{bottom:457.986667pt;}
.y1e{bottom:460.226667pt;}
.y18a{bottom:461.986667pt;}
.y8e{bottom:468.546667pt;}
.y12b{bottom:472.066667pt;}
.yd6{bottom:472.226667pt;}
.yf2{bottom:473.026667pt;}
.y56{bottom:474.946667pt;}
.y165{bottom:477.826667pt;}
.y1d{bottom:479.906667pt;}
.y74{bottom:484.706667pt;}
.y12a{bottom:489.666667pt;}
.yd5{bottom:489.986667pt;}
.yf1{bottom:490.626667pt;}
.y55{bottom:492.546667pt;}
.y1c{bottom:497.506667pt;}
.y10a{bottom:497.986667pt;}
.y129{bottom:507.426667pt;}
.yd4{bottom:507.586667pt;}
.yf0{bottom:508.226667pt;}
.y54{bottom:510.306667pt;}
.y1b{bottom:515.106667pt;}
.y72{bottom:525.053333pt;}
.yd3{bottom:525.213333pt;}
.yef{bottom:525.853333pt;}
.y53{bottom:527.933333pt;}
.y1a{bottom:532.733333pt;}
.y128{bottom:542.653333pt;}
.yd2{bottom:542.813333pt;}
.yee{bottom:543.453333pt;}
.y52{bottom:545.533333pt;}
.y19{bottom:550.333333pt;}
.y188{bottom:555.613333pt;}
.yaf{bottom:555.933333pt;}
.y8d{bottom:557.373333pt;}
.y162{bottom:559.933333pt;}
.y127{bottom:560.253333pt;}
.yd1{bottom:560.413333pt;}
.yed{bottom:561.213333pt;}
.y51{bottom:563.133333pt;}
.y70{bottom:565.373333pt;}
.y18{bottom:568.093333pt;}
.y109{bottom:569.213333pt;}
.y126{bottom:577.853333pt;}
.yd0{bottom:578.173333pt;}
.yec{bottom:578.813333pt;}
.y50{bottom:580.733333pt;}
.y17{bottom:585.693333pt;}
.y125{bottom:595.613333pt;}
.ycf{bottom:595.773333pt;}
.yeb{bottom:596.413333pt;}
.y4f{bottom:598.493333pt;}
.y16{bottom:603.293333pt;}
.y124{bottom:613.213333pt;}
.yce{bottom:613.373333pt;}
.yea{bottom:614.013333pt;}
.y4e{bottom:616.093333pt;}
.y15{bottom:620.893333pt;}
.y123{bottom:630.813333pt;}
.ycd{bottom:630.973333pt;}
.y187{bottom:631.453333pt;}
.ye9{bottom:631.613333pt;}
.y4d{bottom:633.693333pt;}
.y14{bottom:638.493333pt;}
.ycc{bottom:644.093333pt;}
.y122{bottom:648.413333pt;}
.ye8{bottom:649.373333pt;}
.y4c{bottom:651.293333pt;}
.y15f{bottom:653.533333pt;}
.y13{bottom:656.253333pt;}
.ye7{bottom:666.973333pt;}
.y4b{bottom:668.893333pt;}
.y112{bottom:672.413333pt;}
.y12{bottom:673.853333pt;}
.ye6{bottom:684.573333pt;}
.y121{bottom:685.693333pt;}
.y4a{bottom:686.653333pt;}
.y11{bottom:691.453333pt;}
.yad{bottom:697.693333pt;}
.ye5{bottom:702.173333pt;}
.y49{bottom:704.253333pt;}
.y10{bottom:715.773333pt;}
.ye4{bottom:719.773333pt;}
.y48{bottom:721.853333pt;}
.y185{bottom:724.893333pt;}
.yf{bottom:729.213333pt;}
.y157{bottom:729.373333pt;}
.ye3{bottom:737.573333pt;}
.y47{bottom:739.493333pt;}
.ye{bottom:748.613333pt;}
.ye2{bottom:755.173333pt;}
.y46{bottom:757.093333pt;}
.yd{bottom:767.493333pt;}
.ye0{bottom:768.293333pt;}
.y45{bottom:774.853333pt;}
.yc{bottom:788.453333pt;}
.y44{bottom:792.453333pt;}
.yac{bottom:804.293333pt;}
.y43{bottom:810.053333pt;}
.yb{bottom:816.613333pt;}
.y17b{bottom:818.373333pt;}
.y152{bottom:822.853333pt;}
.y42{bottom:827.653333pt;}
.ya{bottom:844.773333pt;}
.y41{bottom:845.253333pt;}
.y40{bottom:862.853333pt;}
.y5{bottom:870.373333pt;}
.y3f{bottom:880.613333pt;}
.yc9{bottom:892.453333pt;}
.y3e{bottom:898.213333pt;}
.y4{bottom:900.453333pt;}
.ydf{bottom:910.053333pt;}
.y3d{bottom:915.813333pt;}
.y14f{bottom:916.293333pt;}
.y3{bottom:927.973333pt;}
.y3c{bottom:933.413333pt;}
.y3b{bottom:951.013333pt;}
.y2{bottom:955.360000pt;}
.y36{bottom:976.000000pt;}
.y1{bottom:983.840000pt;}
.y35{bottom:994.240000pt;}
.h13{height:17.600000pt;}
.h21{height:19.392000pt;}
.h4{height:19.520000pt;}
.hc{height:21.440000pt;}
.h10{height:21.760000pt;}
.h5{height:24.384375pt;}
.ha{height:30.982500pt;}
.h11{height:35.200000pt;}
.h12{height:35.392000pt;}
.h8{height:37.479688pt;}
.h19{height:38.361562pt;}
.h22{height:38.672812pt;}
.h2{height:41.543750pt;}
.h23{height:42.880000pt;}
.h26{height:42.912000pt;}
.hf{height:43.108125pt;}
.hd{height:45.156250pt;}
.h9{height:47.310625pt;}
.hb{height:47.621250pt;}
.h1{height:48.768750pt;}
.he{height:51.937500pt;}
.h3{height:52.785000pt;}
.h1f{height:52.832000pt;}
.h1c{height:52.960000pt;}
.h6{height:58.563750pt;}
.h24{height:59.520000pt;}
.h7{height:60.057813pt;}
.h2b{height:70.400000pt;}
.h1a{height:70.432000pt;}
.h27{height:70.560000pt;}
.h20{height:70.592000pt;}
.h29{height:76.800000pt;}
.h28{height:76.832000pt;}
.h25{height:88.160000pt;}
.h14{height:88.192000pt;}
.h2a{height:92.640000pt;}
.h1d{height:105.760000pt;}
.h17{height:105.792000pt;}
.h18{height:141.120000pt;}
.h15{height:176.346667pt;}
.h1b{height:193.946667pt;}
.h16{height:211.546667pt;}
.h1e{height:264.546667pt;}
.h0{height:1056.000000pt;}
.w2{width:50.912000pt;}
.w14{width:92.832000pt;}
.w11{width:101.440000pt;}
.w15{width:103.680000pt;}
.w13{width:134.746667pt;}
.wd{width:138.426667pt;}
.wa{width:142.586667pt;}
.w12{width:148.826667pt;}
.wb{width:191.066667pt;}
.wc{width:191.226667pt;}
.w6{width:202.906667pt;}
.w7{width:203.066667pt;}
.wf{width:225.306667pt;}
.we{width:228.026667pt;}
.w8{width:247.906667pt;}
.w9{width:327.106667pt;}
.w5{width:364.706667pt;}
.w10{width:593.053333pt;}
.w4{width:602.493333pt;}
.w3{width:660.293333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:0.960000pt;}
.x1c{left:2.560000pt;}
.x3{left:7.200000pt;}
.x15{left:9.600000pt;}
.x1{left:48.159988pt;}
.x2{left:52.160000pt;}
.x10{left:55.200000pt;}
.xe{left:65.279988pt;}
.x8{left:69.279988pt;}
.x2d{left:71.999988pt;}
.x7{left:72.959988pt;}
.x19{left:85.791988pt;}
.x16{left:96.031988pt;}
.x4{left:103.712000pt;}
.x11{left:106.752000pt;}
.x23{left:111.552000pt;}
.x20{left:120.672000pt;}
.x1b{left:123.712000pt;}
.x25{left:144.026655pt;}
.xb{left:147.066655pt;}
.x6{left:194.754667pt;}
.x29{left:215.546667pt;}
.x13{left:217.314667pt;}
.xf{left:251.266655pt;}
.xc{left:264.866655pt;}
.x1e{left:297.186667pt;}
.x14{left:301.181333pt;}
.x21{left:312.546667pt;}
.x9{left:320.866655pt;}
.x2a{left:367.746667pt;}
.xa{left:408.093321pt;}
.x5{left:413.661333pt;}
.xd{left:431.613321pt;}
.x27{left:437.693321pt;}
.x26{left:443.613321pt;}
.x2e{left:455.613321pt;}
.x1a{left:469.373321pt;}
.x17{left:479.613321pt;}
.x1d{left:489.373333pt;}
.x22{left:504.253333pt;}
.x2b{left:505.693333pt;}
.x12{left:569.061333pt;}
.x2c{left:601.733333pt;}
.x1f{left:624.933333pt;}
.x24{left:696.133321pt;}
.x18{left:721.599988pt;}
}




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