
    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_6a43e56e5aaf45f06bac9dc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_999988ee0ce31e9f5a7e59ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_6561fb2718fd8256ea259dec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c72515a27d45b3fe664ab019.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e75e1b8da1e207d11928b813.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_70d3ffaa94cb26e081d218ba.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_affa04ba12f7d71feb8fba04.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_18a41386b4c28263d0c5cd8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107422;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_1f73f4c6967cdf5091d09a08.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.107422;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_23a21f6730b8b3eda9da0441.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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_15bcab961c1af44747a3803c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6cc8f0db9fc7f704428afaec.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.962402;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v6{vertical-align:-49.260000px;}
.v5{vertical-align:-38.040000px;}
.v2{vertical-align:-10.320000px;}
.v7{vertical-align:-2.340000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.040000px;}
.v4{vertical-align:74.280000px;}
.v8{vertical-align:96.900000px;}
.v3{vertical-align:142.740000px;}
.ls10{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.064200px;}
.ls12{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.005040px;}
.ls14{letter-spacing:0.020880px;}
.ls1d{letter-spacing:0.140880px;}
.ls3{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.287400px;}
.lsa{letter-spacing:0.348480px;}
.ls9{letter-spacing:0.678240px;}
.ls1c{letter-spacing:50.540880px;}
.ls13{letter-spacing:56.160000px;}
.ls21{letter-spacing:80.368128px;}
.ls20{letter-spacing:80.434080px;}
.ls4{letter-spacing:85.165920px;}
.ls1b{letter-spacing:85.219968px;}
.ls17{letter-spacing:85.285920px;}
.lsf{letter-spacing:95.982048px;}
.lse{letter-spacing:96.048000px;}
.ls8{letter-spacing:106.864128px;}
.ls7{letter-spacing:106.930080px;}
.ls1{letter-spacing:139.075968px;}
.ls2{letter-spacing:139.141920px;}
.ls1e{letter-spacing:139.285920px;}
.ls16{letter-spacing:144.352128px;}
.ls15{letter-spacing:144.418080px;}
.ls1f{letter-spacing:144.562080px;}
.lsd{letter-spacing:150.024000px;}
.ls19{letter-spacing:925.671936px;}
.ls1a{letter-spacing:1015.932000px;}
.ls18{letter-spacing:1022.112000px;}
.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;}
}
.ws16{word-spacing:-167.904000px;}
.ws21{word-spacing:-167.760000px;}
.ws1e{word-spacing:-108.144000px;}
.ws1f{word-spacing:-54.185760px;}
.ws20{word-spacing:-48.848544px;}
.ws0{word-spacing:-48.816000px;}
.ws23{word-spacing:-43.446240px;}
.ws3{word-spacing:-37.946304px;}
.ws2{word-spacing:-37.913760px;}
.ws17{word-spacing:-35.342784px;}
.ws18{word-spacing:-35.310240px;}
.ws10{word-spacing:-32.576544px;}
.ws22{word-spacing:-32.544000px;}
.ws1d{word-spacing:-30.024000px;}
.wsa{word-spacing:-27.206784px;}
.wsc{word-spacing:-27.179280px;}
.ws9{word-spacing:-27.174240px;}
.wsb{word-spacing:-27.142584px;}
.ws5{word-spacing:-24.440544px;}
.ws4{word-spacing:-24.408000px;}
.ws6{word-spacing:-21.641760px;}
.wsf{word-spacing:-19.070784px;}
.wsd{word-spacing:-19.038240px;}
.ws14{word-spacing:-16.304544px;}
.ws15{word-spacing:-16.272000px;}
.ws11{word-spacing:-15.002784px;}
.ws8{word-spacing:-14.970240px;}
.ws7{word-spacing:-12.204000px;}
.ws1c{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
.ws12{word-spacing:81.185040px;}
.ws13{word-spacing:81.901056px;}
.ws1a{word-spacing:441.972576px;}
.ws19{word-spacing:567.453696px;}
.ws1b{word-spacing:581.994480px;}
.wse{word-spacing:800.698752px;}
._a{margin-left:-18.702720px;}
._18{margin-left:-16.566480px;}
._1a{margin-left:-15.433920px;}
._13{margin-left:-13.932720px;}
._9{margin-left:-12.883968px;}
._4{margin-left:-11.016000px;}
._f{margin-left:-9.173520px;}
._6{margin-left:-7.945344px;}
._d{margin-left:-6.918048px;}
._5{margin-left:-5.898816px;}
._2{margin-left:-4.536000px;}
._1{margin-left:-2.681280px;}
._0{margin-left:-1.532160px;}
._3{width:1.512000px;}
._b{width:2.553120px;}
._7{width:3.827808px;}
._1c{width:5.893920px;}
._11{width:24.962880px;}
._10{width:28.900080px;}
._1b{width:39.518640px;}
._16{width:255.704160px;}
._15{width:376.157280px;}
._14{width:435.056160px;}
._17{width:475.498272px;}
._e{width:960.057120px;}
._c{width:1635.914880px;}
._19{width:1657.008480px;}
._8{width:1672.634880px;}
._12{width:1750.465680px;}
.fc7{color:transparent;}
.fc6{color:rgb(92,141,182);}
.fc4{color:rgb(212,0,80);}
.fc3{color:rgb(181,0,69);}
.fc5{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(77,115,150);}
.fsc{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsf{font-size:66.240000px;}
.fs10{font-size:66.384000px;}
.fs6{font-size:72.000000px;}
.fs16{font-size:72.144000px;}
.fs12{font-size:84.240000px;}
.fs13{font-size:84.384000px;}
.fs0{font-size:95.760000px;}
.fsd{font-size:95.904000px;}
.fsb{font-size:108.000000px;}
.fsa{font-size:108.144000px;}
.fs11{font-size:120.240000px;}
.fs3{font-size:120.384000px;}
.fs15{font-size:144.000000px;}
.fs14{font-size:144.144000px;}
.fs18{font-size:156.240000px;}
.fs17{font-size:156.384000px;}
.fs5{font-size:167.760000px;}
.fs4{font-size:167.904000px;}
.fs19{font-size:176.832798px;}
.fs9{font-size:192.240000px;}
.fs1a{font-size:192.384000px;}
.fs1{font-size:216.000000px;}
.fs2{font-size:216.144000px;}
.fs8{font-size:239.760000px;}
.fs7{font-size:239.904000px;}
.y0{bottom:0.000000px;}
.ye{bottom:17.424000px;}
.ydd{bottom:93.384000px;}
.y73{bottom:93.672000px;}
.y37{bottom:95.724000px;}
.yd3{bottom:104.070000px;}
.y13b{bottom:110.556000px;}
.y2a{bottom:113.364000px;}
.y72{bottom:113.472000px;}
.y5e{bottom:113.508000px;}
.y36{bottom:113.544000px;}
.y16d{bottom:118.224000px;}
.ya2{bottom:119.088000px;}
.ydc{bottom:125.460000px;}
.y89{bottom:127.368000px;}
.y55{bottom:127.908000px;}
.yaf{bottom:129.492000px;}
.y76{bottom:131.580000px;}
.y35{bottom:137.304000px;}
.y65{bottom:139.248000px;}
.yba{bottom:140.328000px;}
.y14c{bottom:140.724000px;}
.y32{bottom:142.452000px;}
.y16c{bottom:149.364000px;}
.y156{bottom:149.796000px;}
.yae{bottom:151.095000px;}
.y75{bottom:151.380000px;}
.y54{bottom:151.665000px;}
.y34{bottom:155.130000px;}
.y13a{bottom:157.350000px;}
.y6a{bottom:158.145000px;}
.y31{bottom:158.655000px;}
.y64{bottom:159.045000px;}
.yea{bottom:161.130000px;}
.ya1{bottom:164.445000px;}
.y4b{bottom:165.135000px;}
.y53{bottom:169.485000px;}
.y123{bottom:170.535000px;}
.y74{bottom:171.180000px;}
.y114{bottom:171.615000px;}
.yad{bottom:172.725000px;}
.y2{bottom:176.730000px;}
.y14b{bottom:176.760000px;}
.y16b{bottom:182.550000px;}
.y71{bottom:183.090000px;}
.yd0{bottom:188.535000px;}
.yb9{bottom:188.565000px;}
.yc9{bottom:189.255000px;}
.ycf{bottom:189.510000px;}
.y151{bottom:198.720000px;}
.y155{bottom:200.235000px;}
.y19{bottom:202.500000px;}
.y8b{bottom:202.575000px;}
.y70{bottom:202.890000px;}
.y113{bottom:207.615000px;}
.y12a{bottom:207.930000px;}
.ye4{bottom:208.470000px;}
.yac{bottom:213.555000px;}
.yc8{bottom:214.455000px;}
.yce{bottom:214.710000px;}
.y1{bottom:216.105000px;}
.y16a{bottom:216.150000px;}
.y122{bottom:220.965000px;}
.y30{bottom:221.865000px;}
.y139{bottom:222.195000px;}
.y6f{bottom:222.690000px;}
.y13f{bottom:223.635000px;}
.y20{bottom:224.535000px;}
.ya0{bottom:224.745000px;}
.ydb{bottom:224.850000px;}
.yfe{bottom:225.870000px;}
.ye9{bottom:226.695000px;}
.y14a{bottom:233.820000px;}
.yf7{bottom:234.870000px;}
.yab{bottom:235.155000px;}
.yb8{bottom:236.625000px;}
.yc7{bottom:239.685000px;}
.ycd{bottom:239.910000px;}
.ye3{bottom:240.915000px;}
.y15d{bottom:241.095000px;}
.y5d{bottom:241.305000px;}
.y6e{bottom:242.535000px;}
.y49{bottom:242.670000px;}
.y112{bottom:243.615000px;}
.y150{bottom:249.120000px;}
.y69{bottom:249.330000px;}
.y2f{bottom:250.845000px;}
.y12{bottom:251.970000px;}
.y18{bottom:252.900000px;}
.y91{bottom:253.695000px;}
.y1f{bottom:254.055000px;}
.yf1{bottom:255.705000px;}
.y154{bottom:256.575000px;}
.yaa{bottom:256.785000px;}
.y24{bottom:257.970000px;}
.y129{bottom:258.375000px;}
.yc6{bottom:264.885000px;}
.ycc{bottom:265.140000px;}
.yd{bottom:266.370000px;}
.y16f{bottom:267.090000px;}
.y48{bottom:267.870000px;}
.y138{bottom:268.995000px;}
.y149{bottom:269.820000px;}
.y9f{bottom:270.150000px;}
.y121{bottom:271.365000px;}
.y88{bottom:272.130000px;}
.y140{bottom:278.025000px;}
.ya9{bottom:278.385000px;}
.yb7{bottom:278.790000px;}
.y2e{bottom:279.645000px;}
.yfd{bottom:282.210000px;}
.y5c{bottom:283.290000px;}
.y43{bottom:283.935000px;}
.yf6{bottom:285.270000px;}
.y63{bottom:288.510000px;}
.y7a{bottom:288.750000px;}
.y13e{bottom:288.975000px;}
.yc5{bottom:290.085000px;}
.ycb{bottom:290.340000px;}
.ye8{bottom:292.035000px;}
.yda{bottom:292.650000px;}
.y3f{bottom:292.680000px;}
.y45{bottom:293.835000px;}
.y15c{bottom:295.815000px;}
.y4c{bottom:296.715000px;}
.y111{bottom:299.055000px;}
.y14f{bottom:299.190000px;}
.y90{bottom:299.985000px;}
.y169{bottom:300.420000px;}
.yf0{bottom:301.110000px;}
.yfa{bottom:304.920000px;}
.y148{bottom:305.820000px;}
.y131{bottom:306.975000px;}
.y105{bottom:308.055000px;}
.y2d{bottom:308.445000px;}
.y79{bottom:308.595000px;}
.y128{bottom:308.775000px;}
.y17{bottom:309.450000px;}
.yc{bottom:311.730000px;}
.y87{bottom:312.270000px;}
.yca{bottom:315.540000px;}
.y5b{bottom:325.230000px;}
.yb6{bottom:326.850000px;}
.y78{bottom:328.395000px;}
.y3e{bottom:328.680000px;}
.y62{bottom:331.710000px;}
.y16e{bottom:333.720000px;}
.y137{bottom:333.825000px;}
.y11{bottom:334.980000px;}
.y110{bottom:335.085000px;}
.yf5{bottom:335.670000px;}
.ya8{bottom:336.675000px;}
.y2c{bottom:337.290000px;}
.yfc{bottom:338.550000px;}
.y29{bottom:340.530000px;}
.y68{bottom:341.205000px;}
.yd9{bottom:341.250000px;}
.ye2{bottom:342.180000px;}
.y15b{bottom:344.985000px;}
.y120{bottom:345.705000px;}
.y8f{bottom:346.245000px;}
.yef{bottom:346.470000px;}
.y77{bottom:348.195000px;}
.y7{bottom:349.455000px;}
.y86{bottom:352.410000px;}
.y101{bottom:354.270000px;}
.y13d{bottom:354.525000px;}
.yf9{bottom:355.320000px;}
.ye7{bottom:357.405000px;}
.ya7{bottom:358.275000px;}
.y104{bottom:358.455000px;}
.y147{bottom:362.910000px;}
.y52{bottom:363.390000px;}
.y130{bottom:363.525000px;}
.y11a{bottom:363.855000px;}
.y168{bottom:366.915000px;}
.y5a{bottom:368.790000px;}
.y42{bottom:370.875000px;}
.y10f{bottom:371.085000px;}
.y3d{bottom:371.880000px;}
.ya6{bottom:379.875000px;}
.y136{bottom:380.625000px;}
.y61{bottom:380.850000px;}
.yb{bottom:381.030000px;}
.y10a{bottom:381.750000px;}
.y127{bottom:383.145000px;}
.yf4{bottom:386.100000px;}
.yd8{bottom:389.880000px;}
.y9e{bottom:390.930000px;}
.y8e{bottom:392.325000px;}
.y85{bottom:392.730000px;}
.y15a{bottom:394.305000px;}
.y22{bottom:394.815000px;}
.y2b{bottom:394.890000px;}
.yfb{bottom:395.100000px;}
.y11f{bottom:396.150000px;}
.y28{bottom:396.870000px;}
.y146{bottom:398.910000px;}
.y10{bottom:399.810000px;}
.y51{bottom:401.910000px;}
.y100{bottom:404.670000px;}
.yf8{bottom:405.750000px;}
.y6{bottom:406.050000px;}
.y3c{bottom:407.880000px;}
.y103{bottom:408.855000px;}
.y119{bottom:409.215000px;}
.y15f{bottom:409.500000px;}
.y165{bottom:409.890000px;}
.y47{bottom:410.475000px;}
.y4a{bottom:411.405000px;}
.y14e{bottom:412.455000px;}
.y153{bottom:413.925000px;}
.y59{bottom:418.140000px;}
.y6d{bottom:418.320000px;}
.yee{bottom:418.830000px;}
.y12f{bottom:419.865000px;}
.y16{bottom:422.130000px;}
.ye6{bottom:422.925000px;}
.ya5{bottom:423.030000px;}
.yb5{bottom:423.180000px;}
.y21{bottom:423.615000px;}
.y60{bottom:424.080000px;}
.ya{bottom:426.420000px;}
.y92{bottom:428.760000px;}
.y164{bottom:429.330000px;}
.y1e{bottom:429.870000px;}
.y109{bottom:432.150000px;}
.y84{bottom:432.900000px;}
.y67{bottom:433.080000px;}
.y126{bottom:433.545000px;}
.y10e{bottom:433.725000px;}
.y145{bottom:434.910000px;}
.yd7{bottom:438.480000px;}
.y8d{bottom:438.585000px;}
.y50{bottom:440.280000px;}
.yb1{bottom:440.790000px;}
.y159{bottom:443.445000px;}
.ye1{bottom:443.775000px;}
.y3b{bottom:443.910000px;}
.ya4{bottom:444.630000px;}
.y135{bottom:445.425000px;}
.y11e{bottom:446.550000px;}
.y9d{bottom:447.300000px;}
.y163{bottom:448.410000px;}
.y27{bottom:453.240000px;}
.y118{bottom:454.215000px;}
.yff{bottom:454.530000px;}
.y99{bottom:454.755000px;}
.y41{bottom:458.025000px;}
.y1d{bottom:459.570000px;}
.y14d{bottom:462.855000px;}
.yed{bottom:464.220000px;}
.y5{bottom:464.370000px;}
.yde{bottom:464.610000px;}
.y162{bottom:465.690000px;}
.y15e{bottom:467.130000px;}
.y58{bottom:467.280000px;}
.y10d{bottom:469.725000px;}
.y152{bottom:470.265000px;}
.yb4{bottom:471.240000px;}
.y15{bottom:472.575000px;}
.y83{bottom:473.040000px;}
.y5f{bottom:473.220000px;}
.ye0{bottom:476.175000px;}
.y98{bottom:476.355000px;}
.y4f{bottom:480.240000px;}
.y7d{bottom:481.320000px;}
.y108{bottom:482.550000px;}
.ya3{bottom:483.045000px;}
.y102{bottom:483.405000px;}
.y44{bottom:484.410000px;}
.y8c{bottom:484.890000px;}
.y13c{bottom:485.205000px;}
.yc0{bottom:485.310000px;}
.yd6{bottom:487.080000px;}
.y3a{bottom:487.110000px;}
.ye5{bottom:488.265000px;}
.y1c{bottom:489.090000px;}
.y144{bottom:491.835000px;}
.y134{bottom:492.270000px;}
.y158{bottom:494.250000px;}
.y9{bottom:495.720000px;}
.y11d{bottom:496.950000px;}
.yc2{bottom:497.265000px;}
.y161{bottom:497.910000px;}
.y97{bottom:497.955000px;}
.yc3{bottom:499.830000px;}
.yf3{bottom:500.370000px;}
.y7c{bottom:501.120000px;}
.y9c{bottom:503.640000px;}
.y10c{bottom:505.770000px;}
.y12e{bottom:506.520000px;}
.ybd{bottom:506.730000px;}
.y125{bottom:508.065000px;}
.yec{bottom:509.580000px;}
.y26{bottom:509.760000px;}
.yb0{bottom:514.335000px;}
.y160{bottom:515.190000px;}
.y57{bottom:516.420000px;}
.ybf{bottom:518.250000px;}
.yb3{bottom:519.480000px;}
.y96{bottom:519.555000px;}
.y66{bottom:519.840000px;}
.y7b{bottom:520.920000px;}
.y4{bottom:522.720000px;}
.y14{bottom:522.975000px;}
.y39{bottom:523.110000px;}
.y117{bottom:524.085000px;}
.y4e{bottom:525.060000px;}
.y143{bottom:527.835000px;}
.y157{bottom:529.455000px;}
.yc1{bottom:530.385000px;}
.y107{bottom:532.950000px;}
.yd2{bottom:534.420000px;}
.yd5{bottom:535.710000px;}
.y133{bottom:539.070000px;}
.ybc{bottom:539.850000px;}
.y9b{bottom:540.255000px;}
.y95{bottom:541.185000px;}
.y40{bottom:544.965000px;}
.y10b{bottom:548.970000px;}
.y82{bottom:549.000000px;}
.yf2{bottom:550.770000px;}
.ybe{bottom:551.370000px;}
.y167{bottom:551.775000px;}
.y12d{bottom:556.950000px;}
.y124{bottom:558.510000px;}
.y25{bottom:560.160000px;}
.y23{bottom:560.490000px;}
.y9a{bottom:561.855000px;}
.y94{bottom:562.785000px;}
.y8{bottom:565.230000px;}
.y56{bottom:565.770000px;}
.yb2{bottom:567.570000px;}
.y116{bottom:568.905000px;}
.y4d{bottom:570.090000px;}
.ydf{bottom:577.440000px;}
.y81{bottom:577.830000px;}
.y11c{bottom:578.340000px;}
.y13{bottom:579.495000px;}
.y3{bottom:581.040000px;}
.yeb{bottom:581.970000px;}
.y46{bottom:582.870000px;}
.y106{bottom:583.380000px;}
.y1b{bottom:584.025000px;}
.yd4{bottom:584.310000px;}
.y166{bottom:584.670000px;}
.y142{bottom:584.895000px;}
.ybb{bottom:601.170000px;}
.y80{bottom:603.510000px;}
.y132{bottom:603.870000px;}
.y93{bottom:612.930000px;}
.y1a{bottom:613.590000px;}
.yc4{bottom:617.040000px;}
.y8a{bottom:620.745000px;}
.y141{bottom:620.895000px;}
.y7f{bottom:623.310000px;}
.y38{bottom:635.505000px;}
.y7e{bottom:643.110000px;}
.y33{bottom:659.010000px;}
.y12b{bottom:665.715000px;}
.y11b{bottom:669.315000px;}
.y12c{bottom:670.035000px;}
.y6c{bottom:670.350000px;}
.y115{bottom:671.145000px;}
.y6b{bottom:690.150000px;}
.yd1{bottom:692.565000px;}
.yf{bottom:717.330000px;}
.h11{height:47.980898px;}
.h14{height:53.709961px;}
.h15{height:65.884219px;}
.h16{height:66.027445px;}
.h7{height:71.613281px;}
.h21{height:71.756508px;}
.h13{height:73.129219px;}
.h12{height:73.239187px;}
.h22{height:73.722656px;}
.h1f{height:75.560977px;}
.h20{height:75.690141px;}
.h31{height:79.998047px;}
.h33{height:80.104711px;}
.h30{height:81.210938px;}
.h19{height:83.787539px;}
.h1b{height:83.930766px;}
.h25{height:86.255508px;}
.h24{height:86.402953px;}
.h1{height:91.177734px;}
.h10{height:95.245664px;}
.h2c{height:96.873047px;}
.h32{height:97.002211px;}
.h1a{height:100.827539px;}
.hf{height:107.419922px;}
.he{height:107.563148px;}
.h1e{height:110.583984px;}
.h4{height:114.623437px;}
.h17{height:119.594180px;}
.h18{height:119.737406px;}
.h36{height:122.781367px;}
.h28{height:123.116836px;}
.h29{height:123.264281px;}
.h35{height:128.113594px;}
.h34{height:128.223562px;}
.h1d{height:143.226562px;}
.h1c{height:143.369789px;}
.h27{height:155.400820px;}
.h26{height:155.544047px;}
.h6{height:166.858945px;}
.h5{height:167.002172px;}
.hc{height:171.773789px;}
.hd{height:171.921234px;}
.h2d{height:180.687539px;}
.hb{height:183.041016px;}
.h38{height:191.207461px;}
.h37{height:191.350688px;}
.h2b{height:197.396836px;}
.h8{height:214.839844px;}
.h2e{height:214.983070px;}
.h2{height:221.167969px;}
.h3{height:221.315414px;}
.h2f{height:226.980000px;}
.ha{height:245.496445px;}
.h9{height:245.643891px;}
.h2a{height:265.856836px;}
.h23{height:641.160000px;}
.h0{height:810.000000px;}
.w2{width:291.600000px;}
.w3{width:586.080000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x40{left:10.980000px;}
.x42{left:101.735979px;}
.x2{left:105.695979px;}
.x13{left:108.935979px;}
.x38{left:111.131979px;}
.x50{left:113.040000px;}
.x44{left:124.739979px;}
.x39{left:131.471979px;}
.x3c{left:132.695979px;}
.x43{left:134.999979px;}
.x55{left:136.799979px;}
.x5d{left:139.823979px;}
.x5a{left:143.675979px;}
.x1f{left:146.195979px;}
.x57{left:150.329979px;}
.x37{left:153.209979px;}
.x52{left:157.829979px;}
.x3{left:159.689979px;}
.x2f{left:162.464979px;}
.x2d{left:163.589979px;}
.x2e{left:166.649979px;}
.x17{left:168.404979px;}
.x2c{left:169.709979px;}
.x4b{left:175.289979px;}
.x30{left:183.524979px;}
.x18{left:188.744979px;}
.x56{left:190.829979px;}
.x31{left:208.004979px;}
.x16{left:210.599979px;}
.x20{left:226.619979px;}
.x58{left:236.489979px;}
.x54{left:251.969979px;}
.xd{left:259.454979px;}
.xe{left:265.034979px;}
.x2a{left:267.224979px;}
.x10{left:268.814979px;}
.x32{left:276.764979px;}
.x33{left:284.864979px;}
.x2b{left:287.384979px;}
.x29{left:288.644979px;}
.xf{left:305.894979px;}
.x1c{left:310.829979px;}
.x53{left:321.014979px;}
.x19{left:366.689979px;}
.x4c{left:371.699979px;}
.x46{left:382.139979px;}
.x47{left:395.099979px;}
.x45{left:408.419979px;}
.x1a{left:444.164979px;}
.x5b{left:465.089979px;}
.x5c{left:483.449979px;}
.x36{left:540.719979px;}
.x12{left:571.319979px;}
.x4{left:576.794979px;}
.x6{left:585.719979px;}
.x5{left:610.949979px;}
.x14{left:618.194979px;}
.x4d{left:621.929979px;}
.x49{left:648.464979px;}
.x15{left:658.694979px;}
.x1d{left:661.064979px;}
.x48{left:665.204979px;}
.x3a{left:680.009979px;}
.x51{left:698.940000px;}
.x3b{left:700.349979px;}
.x1{left:730.904979px;}
.x7{left:740.774979px;}
.xa{left:743.114979px;}
.x9{left:746.534979px;}
.x8{left:753.734979px;}
.xc{left:759.239979px;}
.xb{left:762.659979px;}
.x21{left:778.109979px;}
.x22{left:800.789979px;}
.x41{left:835.529979px;}
.x3d{left:840.344979px;}
.x4e{left:883.769979px;}
.x59{left:892.334979px;}
.x27{left:897.224979px;}
.x35{left:902.084979px;}
.x4a{left:911.234979px;}
.x28{left:926.024979px;}
.x1b{left:1004.249979px;}
.x3f{left:1031.760000px;}
.x3e{left:1042.739979px;}
.x23{left:1066.529979px;}
.x26{left:1074.959979px;}
.x25{left:1079.819979px;}
.x24{left:1104.299979px;}
.x4f{left:1149.734979px;}
.x11{left:1177.814979px;}
.x34{left:1195.349979px;}
.x1e{left:1199.624979px;}
@media print{
.v6{vertical-align:-43.786667pt;}
.v5{vertical-align:-33.813333pt;}
.v2{vertical-align:-9.173333pt;}
.v7{vertical-align:-2.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.146667pt;}
.v4{vertical-align:66.026667pt;}
.v8{vertical-align:86.133333pt;}
.v3{vertical-align:126.880000pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.057067pt;}
.ls12{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.004480pt;}
.ls14{letter-spacing:0.018560pt;}
.ls1d{letter-spacing:0.125227pt;}
.ls3{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.255467pt;}
.lsa{letter-spacing:0.309760pt;}
.ls9{letter-spacing:0.602880pt;}
.ls1c{letter-spacing:44.925227pt;}
.ls13{letter-spacing:49.920000pt;}
.ls21{letter-spacing:71.438336pt;}
.ls20{letter-spacing:71.496960pt;}
.ls4{letter-spacing:75.703040pt;}
.ls1b{letter-spacing:75.751083pt;}
.ls17{letter-spacing:75.809707pt;}
.lsf{letter-spacing:85.317376pt;}
.lse{letter-spacing:85.376000pt;}
.ls8{letter-spacing:94.990336pt;}
.ls7{letter-spacing:95.048960pt;}
.ls1{letter-spacing:123.623083pt;}
.ls2{letter-spacing:123.681707pt;}
.ls1e{letter-spacing:123.809707pt;}
.ls16{letter-spacing:128.313003pt;}
.ls15{letter-spacing:128.371627pt;}
.ls1f{letter-spacing:128.499627pt;}
.lsd{letter-spacing:133.354667pt;}
.ls19{letter-spacing:822.819499pt;}
.ls1a{letter-spacing:903.050667pt;}
.ls18{letter-spacing:908.544000pt;}
.ws16{word-spacing:-149.248000pt;}
.ws21{word-spacing:-149.120000pt;}
.ws1e{word-spacing:-96.128000pt;}
.ws1f{word-spacing:-48.165120pt;}
.ws20{word-spacing:-43.420928pt;}
.ws0{word-spacing:-43.392000pt;}
.ws23{word-spacing:-38.618880pt;}
.ws3{word-spacing:-33.730048pt;}
.ws2{word-spacing:-33.701120pt;}
.ws17{word-spacing:-31.415808pt;}
.ws18{word-spacing:-31.386880pt;}
.ws10{word-spacing:-28.956928pt;}
.ws22{word-spacing:-28.928000pt;}
.ws1d{word-spacing:-26.688000pt;}
.wsa{word-spacing:-24.183808pt;}
.wsc{word-spacing:-24.159360pt;}
.ws9{word-spacing:-24.154880pt;}
.wsb{word-spacing:-24.126741pt;}
.ws5{word-spacing:-21.724928pt;}
.ws4{word-spacing:-21.696000pt;}
.ws6{word-spacing:-19.237120pt;}
.wsf{word-spacing:-16.951808pt;}
.wsd{word-spacing:-16.922880pt;}
.ws14{word-spacing:-14.492928pt;}
.ws15{word-spacing:-14.464000pt;}
.ws11{word-spacing:-13.335808pt;}
.ws8{word-spacing:-13.306880pt;}
.ws7{word-spacing:-10.848000pt;}
.ws1c{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
.ws12{word-spacing:72.164480pt;}
.ws13{word-spacing:72.800939pt;}
.ws1a{word-spacing:392.864512pt;}
.ws19{word-spacing:504.403285pt;}
.ws1b{word-spacing:517.328427pt;}
.wse{word-spacing:711.732224pt;}
._a{margin-left:-16.624640pt;}
._18{margin-left:-14.725760pt;}
._1a{margin-left:-13.719040pt;}
._13{margin-left:-12.384640pt;}
._9{margin-left:-11.452416pt;}
._4{margin-left:-9.792000pt;}
._f{margin-left:-8.154240pt;}
._6{margin-left:-7.062528pt;}
._d{margin-left:-6.149376pt;}
._5{margin-left:-5.243392pt;}
._2{margin-left:-4.032000pt;}
._1{margin-left:-2.383360pt;}
._0{margin-left:-1.361920pt;}
._3{width:1.344000pt;}
._b{width:2.269440pt;}
._7{width:3.402496pt;}
._1c{width:5.239040pt;}
._11{width:22.189227pt;}
._10{width:25.688960pt;}
._1b{width:35.127680pt;}
._16{width:227.292587pt;}
._15{width:334.362027pt;}
._14{width:386.716587pt;}
._17{width:422.665131pt;}
._e{width:853.384107pt;}
._c{width:1454.146560pt;}
._19{width:1472.896427pt;}
._8{width:1486.786560pt;}
._12{width:1555.969493pt;}
.fsc{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsf{font-size:58.880000pt;}
.fs10{font-size:59.008000pt;}
.fs6{font-size:64.000000pt;}
.fs16{font-size:64.128000pt;}
.fs12{font-size:74.880000pt;}
.fs13{font-size:75.008000pt;}
.fs0{font-size:85.120000pt;}
.fsd{font-size:85.248000pt;}
.fsb{font-size:96.000000pt;}
.fsa{font-size:96.128000pt;}
.fs11{font-size:106.880000pt;}
.fs3{font-size:107.008000pt;}
.fs15{font-size:128.000000pt;}
.fs14{font-size:128.128000pt;}
.fs18{font-size:138.880000pt;}
.fs17{font-size:139.008000pt;}
.fs5{font-size:149.120000pt;}
.fs4{font-size:149.248000pt;}
.fs19{font-size:157.184710pt;}
.fs9{font-size:170.880000pt;}
.fs1a{font-size:171.008000pt;}
.fs1{font-size:192.000000pt;}
.fs2{font-size:192.128000pt;}
.fs8{font-size:213.120000pt;}
.fs7{font-size:213.248000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:15.488000pt;}
.ydd{bottom:83.008000pt;}
.y73{bottom:83.264000pt;}
.y37{bottom:85.088000pt;}
.yd3{bottom:92.506667pt;}
.y13b{bottom:98.272000pt;}
.y2a{bottom:100.768000pt;}
.y72{bottom:100.864000pt;}
.y5e{bottom:100.896000pt;}
.y36{bottom:100.928000pt;}
.y16d{bottom:105.088000pt;}
.ya2{bottom:105.856000pt;}
.ydc{bottom:111.520000pt;}
.y89{bottom:113.216000pt;}
.y55{bottom:113.696000pt;}
.yaf{bottom:115.104000pt;}
.y76{bottom:116.960000pt;}
.y35{bottom:122.048000pt;}
.y65{bottom:123.776000pt;}
.yba{bottom:124.736000pt;}
.y14c{bottom:125.088000pt;}
.y32{bottom:126.624000pt;}
.y16c{bottom:132.768000pt;}
.y156{bottom:133.152000pt;}
.yae{bottom:134.306667pt;}
.y75{bottom:134.560000pt;}
.y54{bottom:134.813333pt;}
.y34{bottom:137.893333pt;}
.y13a{bottom:139.866667pt;}
.y6a{bottom:140.573333pt;}
.y31{bottom:141.026667pt;}
.y64{bottom:141.373333pt;}
.yea{bottom:143.226667pt;}
.ya1{bottom:146.173333pt;}
.y4b{bottom:146.786667pt;}
.y53{bottom:150.653333pt;}
.y123{bottom:151.586667pt;}
.y74{bottom:152.160000pt;}
.y114{bottom:152.546667pt;}
.yad{bottom:153.533333pt;}
.y2{bottom:157.093333pt;}
.y14b{bottom:157.120000pt;}
.y16b{bottom:162.266667pt;}
.y71{bottom:162.746667pt;}
.yd0{bottom:167.586667pt;}
.yb9{bottom:167.613333pt;}
.yc9{bottom:168.226667pt;}
.ycf{bottom:168.453333pt;}
.y151{bottom:176.640000pt;}
.y155{bottom:177.986667pt;}
.y19{bottom:180.000000pt;}
.y8b{bottom:180.066667pt;}
.y70{bottom:180.346667pt;}
.y113{bottom:184.546667pt;}
.y12a{bottom:184.826667pt;}
.ye4{bottom:185.306667pt;}
.yac{bottom:189.826667pt;}
.yc8{bottom:190.626667pt;}
.yce{bottom:190.853333pt;}
.y1{bottom:192.093333pt;}
.y16a{bottom:192.133333pt;}
.y122{bottom:196.413333pt;}
.y30{bottom:197.213333pt;}
.y139{bottom:197.506667pt;}
.y6f{bottom:197.946667pt;}
.y13f{bottom:198.786667pt;}
.y20{bottom:199.586667pt;}
.ya0{bottom:199.773333pt;}
.ydb{bottom:199.866667pt;}
.yfe{bottom:200.773333pt;}
.ye9{bottom:201.506667pt;}
.y14a{bottom:207.840000pt;}
.yf7{bottom:208.773333pt;}
.yab{bottom:209.026667pt;}
.yb8{bottom:210.333333pt;}
.yc7{bottom:213.053333pt;}
.ycd{bottom:213.253333pt;}
.ye3{bottom:214.146667pt;}
.y15d{bottom:214.306667pt;}
.y5d{bottom:214.493333pt;}
.y6e{bottom:215.586667pt;}
.y49{bottom:215.706667pt;}
.y112{bottom:216.546667pt;}
.y150{bottom:221.440000pt;}
.y69{bottom:221.626667pt;}
.y2f{bottom:222.973333pt;}
.y12{bottom:223.973333pt;}
.y18{bottom:224.800000pt;}
.y91{bottom:225.506667pt;}
.y1f{bottom:225.826667pt;}
.yf1{bottom:227.293333pt;}
.y154{bottom:228.066667pt;}
.yaa{bottom:228.253333pt;}
.y24{bottom:229.306667pt;}
.y129{bottom:229.666667pt;}
.yc6{bottom:235.453333pt;}
.ycc{bottom:235.680000pt;}
.yd{bottom:236.773333pt;}
.y16f{bottom:237.413333pt;}
.y48{bottom:238.106667pt;}
.y138{bottom:239.106667pt;}
.y149{bottom:239.840000pt;}
.y9f{bottom:240.133333pt;}
.y121{bottom:241.213333pt;}
.y88{bottom:241.893333pt;}
.y140{bottom:247.133333pt;}
.ya9{bottom:247.453333pt;}
.yb7{bottom:247.813333pt;}
.y2e{bottom:248.573333pt;}
.yfd{bottom:250.853333pt;}
.y5c{bottom:251.813333pt;}
.y43{bottom:252.386667pt;}
.yf6{bottom:253.573333pt;}
.y63{bottom:256.453333pt;}
.y7a{bottom:256.666667pt;}
.y13e{bottom:256.866667pt;}
.yc5{bottom:257.853333pt;}
.ycb{bottom:258.080000pt;}
.ye8{bottom:259.586667pt;}
.yda{bottom:260.133333pt;}
.y3f{bottom:260.160000pt;}
.y45{bottom:261.186667pt;}
.y15c{bottom:262.946667pt;}
.y4c{bottom:263.746667pt;}
.y111{bottom:265.826667pt;}
.y14f{bottom:265.946667pt;}
.y90{bottom:266.653333pt;}
.y169{bottom:267.040000pt;}
.yf0{bottom:267.653333pt;}
.yfa{bottom:271.040000pt;}
.y148{bottom:271.840000pt;}
.y131{bottom:272.866667pt;}
.y105{bottom:273.826667pt;}
.y2d{bottom:274.173333pt;}
.y79{bottom:274.306667pt;}
.y128{bottom:274.466667pt;}
.y17{bottom:275.066667pt;}
.yc{bottom:277.093333pt;}
.y87{bottom:277.573333pt;}
.yca{bottom:280.480000pt;}
.y5b{bottom:289.093333pt;}
.yb6{bottom:290.533333pt;}
.y78{bottom:291.906667pt;}
.y3e{bottom:292.160000pt;}
.y62{bottom:294.853333pt;}
.y16e{bottom:296.640000pt;}
.y137{bottom:296.733333pt;}
.y11{bottom:297.760000pt;}
.y110{bottom:297.853333pt;}
.yf5{bottom:298.373333pt;}
.ya8{bottom:299.266667pt;}
.y2c{bottom:299.813333pt;}
.yfc{bottom:300.933333pt;}
.y29{bottom:302.693333pt;}
.y68{bottom:303.293333pt;}
.yd9{bottom:303.333333pt;}
.ye2{bottom:304.160000pt;}
.y15b{bottom:306.653333pt;}
.y120{bottom:307.293333pt;}
.y8f{bottom:307.773333pt;}
.yef{bottom:307.973333pt;}
.y77{bottom:309.506667pt;}
.y7{bottom:310.626667pt;}
.y86{bottom:313.253333pt;}
.y101{bottom:314.906667pt;}
.y13d{bottom:315.133333pt;}
.yf9{bottom:315.840000pt;}
.ye7{bottom:317.693333pt;}
.ya7{bottom:318.466667pt;}
.y104{bottom:318.626667pt;}
.y147{bottom:322.586667pt;}
.y52{bottom:323.013333pt;}
.y130{bottom:323.133333pt;}
.y11a{bottom:323.426667pt;}
.y168{bottom:326.146667pt;}
.y5a{bottom:327.813333pt;}
.y42{bottom:329.666667pt;}
.y10f{bottom:329.853333pt;}
.y3d{bottom:330.560000pt;}
.ya6{bottom:337.666667pt;}
.y136{bottom:338.333333pt;}
.y61{bottom:338.533333pt;}
.yb{bottom:338.693333pt;}
.y10a{bottom:339.333333pt;}
.y127{bottom:340.573333pt;}
.yf4{bottom:343.200000pt;}
.yd8{bottom:346.560000pt;}
.y9e{bottom:347.493333pt;}
.y8e{bottom:348.733333pt;}
.y85{bottom:349.093333pt;}
.y15a{bottom:350.493333pt;}
.y22{bottom:350.946667pt;}
.y2b{bottom:351.013333pt;}
.yfb{bottom:351.200000pt;}
.y11f{bottom:352.133333pt;}
.y28{bottom:352.773333pt;}
.y146{bottom:354.586667pt;}
.y10{bottom:355.386667pt;}
.y51{bottom:357.253333pt;}
.y100{bottom:359.706667pt;}
.yf8{bottom:360.666667pt;}
.y6{bottom:360.933333pt;}
.y3c{bottom:362.560000pt;}
.y103{bottom:363.426667pt;}
.y119{bottom:363.746667pt;}
.y15f{bottom:364.000000pt;}
.y165{bottom:364.346667pt;}
.y47{bottom:364.866667pt;}
.y4a{bottom:365.693333pt;}
.y14e{bottom:366.626667pt;}
.y153{bottom:367.933333pt;}
.y59{bottom:371.680000pt;}
.y6d{bottom:371.840000pt;}
.yee{bottom:372.293333pt;}
.y12f{bottom:373.213333pt;}
.y16{bottom:375.226667pt;}
.ye6{bottom:375.933333pt;}
.ya5{bottom:376.026667pt;}
.yb5{bottom:376.160000pt;}
.y21{bottom:376.546667pt;}
.y60{bottom:376.960000pt;}
.ya{bottom:379.040000pt;}
.y92{bottom:381.120000pt;}
.y164{bottom:381.626667pt;}
.y1e{bottom:382.106667pt;}
.y109{bottom:384.133333pt;}
.y84{bottom:384.800000pt;}
.y67{bottom:384.960000pt;}
.y126{bottom:385.373333pt;}
.y10e{bottom:385.533333pt;}
.y145{bottom:386.586667pt;}
.yd7{bottom:389.760000pt;}
.y8d{bottom:389.853333pt;}
.y50{bottom:391.360000pt;}
.yb1{bottom:391.813333pt;}
.y159{bottom:394.173333pt;}
.ye1{bottom:394.466667pt;}
.y3b{bottom:394.586667pt;}
.ya4{bottom:395.226667pt;}
.y135{bottom:395.933333pt;}
.y11e{bottom:396.933333pt;}
.y9d{bottom:397.600000pt;}
.y163{bottom:398.586667pt;}
.y27{bottom:402.880000pt;}
.y118{bottom:403.746667pt;}
.yff{bottom:404.026667pt;}
.y99{bottom:404.226667pt;}
.y41{bottom:407.133333pt;}
.y1d{bottom:408.506667pt;}
.y14d{bottom:411.426667pt;}
.yed{bottom:412.640000pt;}
.y5{bottom:412.773333pt;}
.yde{bottom:412.986667pt;}
.y162{bottom:413.946667pt;}
.y15e{bottom:415.226667pt;}
.y58{bottom:415.360000pt;}
.y10d{bottom:417.533333pt;}
.y152{bottom:418.013333pt;}
.yb4{bottom:418.880000pt;}
.y15{bottom:420.066667pt;}
.y83{bottom:420.480000pt;}
.y5f{bottom:420.640000pt;}
.ye0{bottom:423.266667pt;}
.y98{bottom:423.426667pt;}
.y4f{bottom:426.880000pt;}
.y7d{bottom:427.840000pt;}
.y108{bottom:428.933333pt;}
.ya3{bottom:429.373333pt;}
.y102{bottom:429.693333pt;}
.y44{bottom:430.586667pt;}
.y8c{bottom:431.013333pt;}
.y13c{bottom:431.293333pt;}
.yc0{bottom:431.386667pt;}
.yd6{bottom:432.960000pt;}
.y3a{bottom:432.986667pt;}
.ye5{bottom:434.013333pt;}
.y1c{bottom:434.746667pt;}
.y144{bottom:437.186667pt;}
.y134{bottom:437.573333pt;}
.y158{bottom:439.333333pt;}
.y9{bottom:440.640000pt;}
.y11d{bottom:441.733333pt;}
.yc2{bottom:442.013333pt;}
.y161{bottom:442.586667pt;}
.y97{bottom:442.626667pt;}
.yc3{bottom:444.293333pt;}
.yf3{bottom:444.773333pt;}
.y7c{bottom:445.440000pt;}
.y9c{bottom:447.680000pt;}
.y10c{bottom:449.573333pt;}
.y12e{bottom:450.240000pt;}
.ybd{bottom:450.426667pt;}
.y125{bottom:451.613333pt;}
.yec{bottom:452.960000pt;}
.y26{bottom:453.120000pt;}
.yb0{bottom:457.186667pt;}
.y160{bottom:457.946667pt;}
.y57{bottom:459.040000pt;}
.ybf{bottom:460.666667pt;}
.yb3{bottom:461.760000pt;}
.y96{bottom:461.826667pt;}
.y66{bottom:462.080000pt;}
.y7b{bottom:463.040000pt;}
.y4{bottom:464.640000pt;}
.y14{bottom:464.866667pt;}
.y39{bottom:464.986667pt;}
.y117{bottom:465.853333pt;}
.y4e{bottom:466.720000pt;}
.y143{bottom:469.186667pt;}
.y157{bottom:470.626667pt;}
.yc1{bottom:471.453333pt;}
.y107{bottom:473.733333pt;}
.yd2{bottom:475.040000pt;}
.yd5{bottom:476.186667pt;}
.y133{bottom:479.173333pt;}
.ybc{bottom:479.866667pt;}
.y9b{bottom:480.226667pt;}
.y95{bottom:481.053333pt;}
.y40{bottom:484.413333pt;}
.y10b{bottom:487.973333pt;}
.y82{bottom:488.000000pt;}
.yf2{bottom:489.573333pt;}
.ybe{bottom:490.106667pt;}
.y167{bottom:490.466667pt;}
.y12d{bottom:495.066667pt;}
.y124{bottom:496.453333pt;}
.y25{bottom:497.920000pt;}
.y23{bottom:498.213333pt;}
.y9a{bottom:499.426667pt;}
.y94{bottom:500.253333pt;}
.y8{bottom:502.426667pt;}
.y56{bottom:502.906667pt;}
.yb2{bottom:504.506667pt;}
.y116{bottom:505.693333pt;}
.y4d{bottom:506.746667pt;}
.ydf{bottom:513.280000pt;}
.y81{bottom:513.626667pt;}
.y11c{bottom:514.080000pt;}
.y13{bottom:515.106667pt;}
.y3{bottom:516.480000pt;}
.yeb{bottom:517.306667pt;}
.y46{bottom:518.106667pt;}
.y106{bottom:518.560000pt;}
.y1b{bottom:519.133333pt;}
.yd4{bottom:519.386667pt;}
.y166{bottom:519.706667pt;}
.y142{bottom:519.906667pt;}
.ybb{bottom:534.373333pt;}
.y80{bottom:536.453333pt;}
.y132{bottom:536.773333pt;}
.y93{bottom:544.826667pt;}
.y1a{bottom:545.413333pt;}
.yc4{bottom:548.480000pt;}
.y8a{bottom:551.773333pt;}
.y141{bottom:551.906667pt;}
.y7f{bottom:554.053333pt;}
.y38{bottom:564.893333pt;}
.y7e{bottom:571.653333pt;}
.y33{bottom:585.786667pt;}
.y12b{bottom:591.746667pt;}
.y11b{bottom:594.946667pt;}
.y12c{bottom:595.586667pt;}
.y6c{bottom:595.866667pt;}
.y115{bottom:596.573333pt;}
.y6b{bottom:613.466667pt;}
.yd1{bottom:615.613333pt;}
.yf{bottom:637.626667pt;}
.h11{height:42.649687pt;}
.h14{height:47.742188pt;}
.h15{height:58.563750pt;}
.h16{height:58.691063pt;}
.h7{height:63.656250pt;}
.h21{height:63.783562pt;}
.h13{height:65.003750pt;}
.h12{height:65.101500pt;}
.h22{height:65.531250pt;}
.h1f{height:67.165312pt;}
.h20{height:67.280125pt;}
.h31{height:71.109375pt;}
.h33{height:71.204188pt;}
.h30{height:72.187500pt;}
.h19{height:74.477812pt;}
.h1b{height:74.605125pt;}
.h25{height:76.671562pt;}
.h24{height:76.802625pt;}
.h1{height:81.046875pt;}
.h10{height:84.662813pt;}
.h2c{height:86.109375pt;}
.h32{height:86.224187pt;}
.h1a{height:89.624479pt;}
.hf{height:95.484375pt;}
.he{height:95.611688pt;}
.h1e{height:98.296875pt;}
.h4{height:101.887500pt;}
.h17{height:106.305937pt;}
.h18{height:106.433250pt;}
.h36{height:109.138993pt;}
.h28{height:109.437187pt;}
.h29{height:109.568250pt;}
.h35{height:113.878750pt;}
.h34{height:113.976500pt;}
.h1d{height:127.312500pt;}
.h1c{height:127.439813pt;}
.h27{height:138.134062pt;}
.h26{height:138.261375pt;}
.h6{height:148.319063pt;}
.h5{height:148.446375pt;}
.hc{height:152.687812pt;}
.hd{height:152.818875pt;}
.h2d{height:160.611146pt;}
.hb{height:162.703125pt;}
.h38{height:169.962187pt;}
.h37{height:170.089500pt;}
.h2b{height:175.463854pt;}
.h8{height:190.968750pt;}
.h2e{height:191.096063pt;}
.h2{height:196.593750pt;}
.h3{height:196.724812pt;}
.h2f{height:201.760000pt;}
.ha{height:218.219062pt;}
.h9{height:218.350125pt;}
.h2a{height:236.317188pt;}
.h23{height:569.920000pt;}
.h0{height:720.000000pt;}
.w2{width:259.200000pt;}
.w3{width:520.960000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x40{left:9.760000pt;}
.x42{left:90.431981pt;}
.x2{left:93.951981pt;}
.x13{left:96.831981pt;}
.x38{left:98.783981pt;}
.x50{left:100.480000pt;}
.x44{left:110.879981pt;}
.x39{left:116.863981pt;}
.x3c{left:117.951981pt;}
.x43{left:119.999981pt;}
.x55{left:121.599981pt;}
.x5d{left:124.287981pt;}
.x5a{left:127.711981pt;}
.x1f{left:129.951981pt;}
.x57{left:133.626648pt;}
.x37{left:136.186648pt;}
.x52{left:140.293314pt;}
.x3{left:141.946648pt;}
.x2f{left:144.413314pt;}
.x2d{left:145.413314pt;}
.x2e{left:148.133314pt;}
.x17{left:149.693314pt;}
.x2c{left:150.853314pt;}
.x4b{left:155.813314pt;}
.x30{left:163.133314pt;}
.x18{left:167.773314pt;}
.x56{left:169.626648pt;}
.x31{left:184.893314pt;}
.x16{left:187.199981pt;}
.x20{left:201.439981pt;}
.x58{left:210.213314pt;}
.x54{left:223.973314pt;}
.xd{left:230.626648pt;}
.xe{left:235.586648pt;}
.x2a{left:237.533314pt;}
.x10{left:238.946648pt;}
.x32{left:246.013314pt;}
.x33{left:253.213314pt;}
.x2b{left:255.453314pt;}
.x29{left:256.573314pt;}
.xf{left:271.906648pt;}
.x1c{left:276.293314pt;}
.x53{left:285.346648pt;}
.x19{left:325.946648pt;}
.x4c{left:330.399981pt;}
.x46{left:339.679981pt;}
.x47{left:351.199981pt;}
.x45{left:363.039981pt;}
.x1a{left:394.813314pt;}
.x5b{left:413.413314pt;}
.x5c{left:429.733314pt;}
.x36{left:480.639981pt;}
.x12{left:507.839981pt;}
.x4{left:512.706648pt;}
.x6{left:520.639981pt;}
.x5{left:543.066648pt;}
.x14{left:549.506648pt;}
.x4d{left:552.826648pt;}
.x49{left:576.413314pt;}
.x15{left:585.506648pt;}
.x1d{left:587.613314pt;}
.x48{left:591.293314pt;}
.x3a{left:604.453314pt;}
.x51{left:621.280000pt;}
.x3b{left:622.533314pt;}
.x1{left:649.693314pt;}
.x7{left:658.466648pt;}
.xa{left:660.546648pt;}
.x9{left:663.586648pt;}
.x8{left:669.986648pt;}
.xc{left:674.879981pt;}
.xb{left:677.919981pt;}
.x21{left:691.653314pt;}
.x22{left:711.813314pt;}
.x41{left:742.693314pt;}
.x3d{left:746.973314pt;}
.x4e{left:785.573314pt;}
.x59{left:793.186648pt;}
.x27{left:797.533314pt;}
.x35{left:801.853314pt;}
.x4a{left:809.986648pt;}
.x28{left:823.133314pt;}
.x1b{left:892.666648pt;}
.x3f{left:917.120000pt;}
.x3e{left:926.879981pt;}
.x23{left:948.026648pt;}
.x26{left:955.519981pt;}
.x25{left:959.839981pt;}
.x24{left:981.599981pt;}
.x4f{left:1021.986648pt;}
.x11{left:1046.946648pt;}
.x34{left:1062.533314pt;}
.x1e{left:1066.333314pt;}
}




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