
    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_6b5ab39f8bdf944cb822e26a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3cc57279bac69a38cb4017f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_1751ee4bac4683d09b27cb2a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_627832471275b655b2dcb417.woff')format("woff");}.ff4{font-family:ff4;line-height:1.402354;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_14c81c8de38ef46a1b0d61f7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8bd952c2aa402f244c9b58ec.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5623dad7355e0b13e16edd81.woff')format("woff");}.ff8{font-family:ff8;line-height:1.035156;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_e5cb8ed4649bd69da5671be8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_5ef5d000d6f3ea80d5763781.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f5ca9ad5e37a4703b0e495e5.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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;}
.m1{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);}
.m2{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);}
.v4{vertical-align:-94.500000px;}
.v6{vertical-align:-69.120000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.600000px;}
.v5{vertical-align:9.360000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-20.160000px;}
.ls10{letter-spacing:-18.720000px;}
.lsd{letter-spacing:-13.680000px;}
.lse{letter-spacing:-10.080000px;}
.ls18{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.187200px;}
.lsc{letter-spacing:-0.053280px;}
.ls5{letter-spacing:-0.018720px;}
.ls6{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.025920px;}
.lsa{letter-spacing:0.048240px;}
.ls11{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.106800px;}
.ls15{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.235920px;}
.lsb{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls2{letter-spacing:18.180000px;}
.ls1a{letter-spacing:19.386720px;}
.ls16{letter-spacing:690.636000px;}
.ls12{letter-spacing:721.776000px;}
.ls17{letter-spacing:785.136000px;}
.ls14{letter-spacing:834.816000px;}
.ls3{letter-spacing:1057.260000px;}
.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;}
}
.ws3{word-spacing:-23.466960px;}
.ws1{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.093600px;}
.ws8{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.580000px;}
.ws4{word-spacing:-12.060000px;}
.ws2{word-spacing:-11.520000px;}
.ws6{word-spacing:0.000000px;}
._36{margin-left:-2723.949120px;}
._25{margin-left:-2548.630560px;}
._29{margin-left:-2539.896000px;}
._38{margin-left:-2506.021200px;}
._30{margin-left:-1758.350160px;}
._35{margin-left:-1494.996000px;}
._14{margin-left:-1484.008560px;}
._2d{margin-left:-1443.248640px;}
._13{margin-left:-1296.120000px;}
._2e{margin-left:-1278.156000px;}
._33{margin-left:-1209.993120px;}
._32{margin-left:-957.036000px;}
._3b{margin-left:-547.560000px;}
._1{margin-left:-544.496400px;}
._3a{margin-left:-543.060000px;}
._e{margin-left:-536.369040px;}
._6{margin-left:-515.365200px;}
._5{margin-left:-465.809040px;}
._39{margin-left:-437.760000px;}
._8{margin-left:-436.698720px;}
._3d{margin-left:-434.280000px;}
._9{margin-left:-432.805440px;}
._40{margin-left:-418.392000px;}
._3f{margin-left:-413.280000px;}
._b{margin-left:-411.733440px;}
._11{margin-left:-409.171200px;}
._a{margin-left:-407.792160px;}
._42{margin-left:-339.840000px;}
._41{margin-left:-324.900000px;}
._31{margin-left:-313.848000px;}
._c{margin-left:-252.378720px;}
._22{margin-left:-233.712000px;}
._15{margin-left:-224.568000px;}
._3{margin-left:-193.680000px;}
._2{margin-left:-182.134080px;}
._27{margin-left:-175.536000px;}
._26{margin-left:-161.106480px;}
._34{margin-left:-131.832000px;}
._18{margin-left:-117.936000px;}
._16{margin-left:-102.240000px;}
._7{margin-left:-96.808320px;}
._12{margin-left:-63.720000px;}
._28{margin-left:-49.896000px;}
._d{margin-left:-47.189520px;}
._3c{margin-left:-40.968000px;}
._10{margin-left:-35.820000px;}
._3e{margin-left:-22.032000px;}
._2a{margin-left:-18.720000px;}
._17{margin-left:-17.280000px;}
._23{margin-left:-13.680000px;}
._2f{margin-left:-10.080000px;}
._45{margin-left:-6.454080px;}
._46{margin-left:-4.601520px;}
._2c{margin-left:-2.664000px;}
._4{margin-left:-1.215360px;}
._0{width:1.627920px;}
._20{width:2.629440px;}
._1b{width:4.043760px;}
._24{width:5.138640px;}
._1a{width:6.439680px;}
._19{width:7.470000px;}
._2b{width:8.914320px;}
._47{width:10.074960px;}
._1d{width:11.115360px;}
._1c{width:12.191040px;}
._21{width:13.864320px;}
._48{width:16.718400px;}
._43{width:18.451440px;}
._44{width:19.877280px;}
._37{width:21.556080px;}
._1e{width:23.232240px;}
._1f{width:24.262560px;}
._f{width:1683.109200px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs9{font-size:75.893905px;}
.fs4{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fs3{font-size:88.795869px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:113.760000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.240000px;}
.y1e{bottom:3.780000px;}
.y8{bottom:3.960000px;}
.yb{bottom:4.140000px;}
.y85{bottom:4.314000px;}
.y7a{bottom:4.320000px;}
.ya9{bottom:4.500000px;}
.yb9{bottom:4.545000px;}
.y83{bottom:4.680000px;}
.y7b{bottom:4.725000px;}
.y92{bottom:4.860000px;}
.yaa{bottom:5.040000px;}
.yad{bottom:5.220000px;}
.yeb{bottom:5.400000px;}
.yf4{bottom:5.580000px;}
.ye9{bottom:5.940000px;}
.y89{bottom:7.560000px;}
.ya0{bottom:9.900000px;}
.y9{bottom:11.520000px;}
.yc1{bottom:12.600000px;}
.y2{bottom:13.320000px;}
.y98{bottom:14.580000px;}
.y78{bottom:14.625000px;}
.y81{bottom:14.760000px;}
.yb5{bottom:14.940000px;}
.yf6{bottom:15.120000px;}
.yf0{bottom:15.150000px;}
.yb1{bottom:15.300000px;}
.ya7{bottom:15.480000px;}
.y2a{bottom:20.520000px;}
.y7{bottom:24.660000px;}
.yc0{bottom:29.874000px;}
.y29{bottom:37.800000px;}
.y6{bottom:45.360000px;}
.y28{bottom:55.080000px;}
.yd{bottom:56.160000px;}
.y40{bottom:57.420000px;}
.y5{bottom:66.090000px;}
.y27{bottom:72.180000px;}
.y3f{bottom:76.356000px;}
.y4{bottom:88.230000px;}
.y26{bottom:89.460000px;}
.y25{bottom:106.770000px;}
.y66{bottom:111.456000px;}
.y87{bottom:114.516000px;}
.y3{bottom:115.770000px;}
.y3e{bottom:117.216000px;}
.yc4{bottom:119.556000px;}
.yd1{bottom:120.456000px;}
.y24{bottom:124.050000px;}
.y65{bottom:128.736000px;}
.y86{bottom:129.276000px;}
.yde{bottom:133.056000px;}
.ybf{bottom:134.316000px;}
.y3d{bottom:134.496000px;}
.y23{bottom:141.330000px;}
.y64{bottom:146.016000px;}
.y84{bottom:149.076000px;}
.ydd{bottom:150.150000px;}
.y3c{bottom:151.770000px;}
.yc3{bottom:152.310000px;}
.y108{bottom:155.730000px;}
.y22{bottom:158.610000px;}
.ydc{bottom:167.430000px;}
.y3b{bottom:169.050000px;}
.yc2{bottom:170.310000px;}
.y107{bottom:173.010000px;}
.y21{bottom:175.710000px;}
.y63{bottom:181.290000px;}
.ydb{bottom:184.710000px;}
.y3a{bottom:186.150000px;}
.y80{bottom:188.850000px;}
.y106{bottom:190.290000px;}
.y20{bottom:192.990000px;}
.yda{bottom:201.990000px;}
.y39{bottom:203.430000px;}
.y62{bottom:207.210000px;}
.y105{bottom:207.570000px;}
.ybe{bottom:208.650000px;}
.y82{bottom:209.910000px;}
.ybc{bottom:223.410000px;}
.y104{bottom:224.850000px;}
.y38{bottom:225.390000px;}
.yd9{bottom:231.150000px;}
.y103{bottom:241.950000px;}
.ybd{bottom:244.110000px;}
.yd8{bottom:245.190000px;}
.y37{bottom:245.370000px;}
.y7f{bottom:250.230000px;}
.y102{bottom:259.230000px;}
.y36{bottom:260.670000px;}
.yba{bottom:264.630000px;}
.y7e{bottom:264.990000px;}
.y101{bottom:276.510000px;}
.y35{bottom:282.990000px;}
.y7d{bottom:284.790000px;}
.ybb{bottom:285.150000px;}
.y100{bottom:293.790000px;}
.y7c{bottom:304.770000px;}
.y34{bottom:305.310000px;}
.yb7{bottom:305.670000px;}
.yff{bottom:311.070000px;}
.y77{bottom:324.570000px;}
.yb8{bottom:326.190000px;}
.y33{bottom:327.675000px;}
.yfe{bottom:328.395000px;}
.y79{bottom:345.495000px;}
.yb4{bottom:346.755000px;}
.y32{bottom:349.995000px;}
.yd0{bottom:362.415000px;}
.yfd{bottom:362.775000px;}
.yb6{bottom:367.455000px;}
.y76{bottom:368.715000px;}
.y31{bottom:372.495000px;}
.ycf{bottom:379.695000px;}
.yfc{bottom:380.055000px;}
.y30{bottom:394.815000px;}
.yce{bottom:396.795000px;}
.yfb{bottom:397.335000px;}
.y75{bottom:397.875000px;}
.yb3{bottom:408.495000px;}
.ycd{bottom:414.075000px;}
.yfa{bottom:414.615000px;}
.y74{bottom:415.155000px;}
.y2f{bottom:417.135000px;}
.yb0{bottom:423.255000px;}
.ycc{bottom:431.355000px;}
.y73{bottom:432.435000px;}
.y2e{bottom:439.455000px;}
.yb2{bottom:444.855000px;}
.ycb{bottom:448.635000px;}
.y72{bottom:449.715000px;}
.y2d{bottom:461.775000px;}
.yf8{bottom:464.475000px;}
.yae{bottom:465.555000px;}
.yca{bottom:465.915000px;}
.y71{bottom:466.815000px;}
.yc9{bottom:483.015000px;}
.y2c{bottom:484.095000px;}
.yf9{bottom:485.355000px;}
.yaf{bottom:487.335000px;}
.y70{bottom:501.375000px;}
.y1f{bottom:501.555000px;}
.yf5{bottom:505.155000px;}
.yab{bottom:508.035000px;}
.yc8{bottom:512.355000px;}
.y6f{bottom:518.655000px;}
.yf7{bottom:526.035000px;}
.yc7{bottom:526.395000px;}
.yd7{bottom:529.275000px;}
.yac{bottom:529.815000px;}
.y6e{bottom:532.695000px;}
.yd6{bottom:543.315000px;}
.yf2{bottom:545.835000px;}
.ya6{bottom:550.515000px;}
.y119{bottom:554.295000px;}
.yf3{bottom:567.615000px;}
.y61{bottom:570.855000px;}
.y118{bottom:571.575000px;}
.ya8{bottom:572.295000px;}
.yef{bottom:587.415000px;}
.y60{bottom:588.135000px;}
.y117{bottom:588.855000px;}
.ya5{bottom:596.265000px;}
.y5f{bottom:605.265000px;}
.y116{bottom:606.165000px;}
.yf1{bottom:608.325000px;}
.y5e{bottom:622.545000px;}
.y115{bottom:623.265000px;}
.ya4{bottom:625.425000px;}
.yee{bottom:631.365000px;}
.y5d{bottom:639.825000px;}
.y114{bottom:640.545000px;}
.ya3{bottom:642.705000px;}
.yed{bottom:648.645000px;}
.y5c{bottom:657.105000px;}
.y113{bottom:657.825000px;}
.ya2{bottom:659.985000px;}
.yec{bottom:663.405000px;}
.y5b{bottom:674.385000px;}
.ya1{bottom:674.745000px;}
.y112{bottom:675.105000px;}
.yea{bottom:685.725000px;}
.y5a{bottom:691.665000px;}
.y111{bottom:692.385000px;}
.y9f{bottom:692.745000px;}
.ye8{bottom:706.965000px;}
.y59{bottom:708.765000px;}
.y1d{bottom:709.305000px;}
.y110{bottom:709.665000px;}
.y58{bottom:726.045000px;}
.y10f{bottom:726.765000px;}
.y9e{bottom:727.485000px;}
.ye6{bottom:729.285000px;}
.y57{bottom:743.325000px;}
.y10e{bottom:744.045000px;}
.y9d{bottom:744.585000px;}
.y1c{bottom:744.945000px;}
.ye7{bottom:749.985000px;}
.y1b{bottom:751.785000px;}
.y9c{bottom:759.345000px;}
.y56{bottom:760.605000px;}
.y10d{bottom:761.325000px;}
.y1a{bottom:767.445000px;}
.ye5{bottom:773.925000px;}
.y55{bottom:777.885000px;}
.y10c{bottom:778.605000px;}
.y9b{bottom:779.325000px;}
.y18{bottom:788.145000px;}
.yc6{bottom:788.325000px;}
.y19{bottom:794.085000px;}
.y54{bottom:794.985000px;}
.y10b{bottom:795.885000px;}
.y9a{bottom:799.125000px;}
.yc5{bottom:802.365000px;}
.ye4{bottom:803.265000px;}
.y6d{bottom:803.625000px;}
.y15{bottom:808.845000px;}
.y53{bottom:812.265000px;}
.y10a{bottom:812.985000px;}
.y16{bottom:814.785000px;}
.y17{bottom:815.685000px;}
.y97{bottom:819.105000px;}
.ye3{bottom:820.545000px;}
.y6c{bottom:820.905000px;}
.y109{bottom:830.265000px;}
.ye2{bottom:837.645000px;}
.y6b{bottom:838.185000px;}
.y99{bottom:839.985000px;}
.yd5{bottom:844.665000px;}
.y52{bottom:847.545000px;}
.ye1{bottom:854.925000px;}
.y6a{bottom:855.465000px;}
.yd4{bottom:861.990000px;}
.y51{bottom:864.870000px;}
.y14{bottom:867.570000px;}
.y69{bottom:872.790000px;}
.y96{bottom:880.350000px;}
.y50{bottom:882.150000px;}
.ye0{bottom:884.310000px;}
.y13{bottom:888.270000px;}
.y68{bottom:889.890000px;}
.yd3{bottom:891.330000px;}
.y95{bottom:895.110000px;}
.y4f{bottom:899.430000px;}
.y67{bottom:903.930000px;}
.yd2{bottom:905.370000px;}
.y12{bottom:914.910000px;}
.y94{bottom:915.090000px;}
.ydf{bottom:916.350000px;}
.y4e{bottom:916.530000px;}
.y11{bottom:929.670000px;}
.y4d{bottom:933.810000px;}
.y93{bottom:934.890000px;}
.y4c{bottom:951.090000px;}
.y10{bottom:951.630000px;}
.y90{bottom:954.690000px;}
.y4b{bottom:968.370000px;}
.y91{bottom:975.750000px;}
.yf{bottom:979.350000px;}
.y4a{bottom:985.650000px;}
.y49{bottom:1002.930000px;}
.ye{bottom:1006.890000px;}
.y8f{bottom:1016.070000px;}
.y48{bottom:1020.030000px;}
.y8e{bottom:1033.350000px;}
.yc{bottom:1033.710000px;}
.y47{bottom:1037.310000px;}
.ya{bottom:1049.370000px;}
.y8d{bottom:1050.630000px;}
.y46{bottom:1054.590000px;}
.y8c{bottom:1067.730000px;}
.y1{bottom:1071.690000px;}
.y45{bottom:1071.870000px;}
.y8b{bottom:1083.930000px;}
.y44{bottom:1089.150000px;}
.y8a{bottom:1092.930000px;}
.y43{bottom:1106.430000px;}
.y88{bottom:1110.930000px;}
.y42{bottom:1123.530000px;}
.y41{bottom:1140.840000px;}
.h30{height:17.100000px;}
.h21{height:17.280000px;}
.h14{height:19.080000px;}
.h1c{height:19.260000px;}
.h2b{height:19.800000px;}
.h2d{height:19.836000px;}
.h26{height:19.980000px;}
.h1f{height:20.160000px;}
.h1d{height:20.196000px;}
.h33{height:20.520000px;}
.h29{height:20.880000px;}
.h27{height:21.060000px;}
.h32{height:21.600000px;}
.h8{height:22.320000px;}
.h20{height:25.956000px;}
.h24{height:30.600000px;}
.h22{height:35.332031px;}
.h19{height:36.580781px;}
.h23{height:39.960000px;}
.h34{height:39.996000px;}
.h1e{height:40.140000px;}
.h1b{height:40.176000px;}
.h2e{height:40.320000px;}
.h2c{height:40.356000px;}
.h2a{height:40.500000px;}
.h31{height:40.680000px;}
.h35{height:40.860000px;}
.h28{height:41.580000px;}
.h25{height:41.760000px;}
.hf{height:42.257109px;}
.h10{height:42.445547px;}
.h12{height:47.344922px;}
.hd{height:50.944922px;}
.h2f{height:53.100000px;}
.h36{height:53.573906px;}
.h16{height:58.651172px;}
.hb{height:60.226875px;}
.h1a{height:61.423863px;}
.h17{height:63.070312px;}
.he{height:63.351562px;}
.h3{height:65.010937px;}
.ha{height:65.884219px;}
.h11{height:66.777743px;}
.h5{height:70.628906px;}
.h6{height:70.664062px;}
.hc{height:72.376875px;}
.h18{height:72.711562px;}
.h13{height:78.006975px;}
.h7{height:91.268161px;}
.h4{height:96.508125px;}
.h9{height:114.648750px;}
.h2{height:138.096000px;}
.h15{height:207.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w19{width:80.100000px;}
.w1a{width:80.136000px;}
.w23{width:99.036000px;}
.w14{width:103.716000px;}
.w1b{width:104.220000px;}
.w18{width:104.256000px;}
.w25{width:109.440000px;}
.w2a{width:111.816000px;}
.w2b{width:112.140000px;}
.w28{width:118.080000px;}
.w4{width:118.440000px;}
.w29{width:118.476000px;}
.w2{width:120.240000px;}
.w12{width:122.040000px;}
.w11{width:122.076000px;}
.w1d{width:124.560000px;}
.w24{width:124.776000px;}
.w15{width:125.820000px;}
.w22{width:132.840000px;}
.wf{width:168.330000px;}
.w1c{width:178.410000px;}
.w1e{width:178.770000px;}
.w17{width:185.070000px;}
.w5{width:201.990000px;}
.w1f{width:206.670000px;}
.w26{width:212.250000px;}
.w6{width:212.790000px;}
.wa{width:224.670000px;}
.w9{width:225.030000px;}
.w20{width:232.590000px;}
.w21{width:234.930000px;}
.w27{width:237.270000px;}
.wb{width:239.610000px;}
.w7{width:262.290000px;}
.w13{width:275.250000px;}
.w16{width:304.050000px;}
.w10{width:307.290000px;}
.wd{width:337.350000px;}
.we{width:337.575000px;}
.w3{width:438.405000px;}
.wc{width:690.765000px;}
.w8{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:8.820000px;}
.x22{left:11.700000px;}
.x49{left:13.320000px;}
.xf{left:14.940000px;}
.x4{left:19.260000px;}
.x25{left:21.960000px;}
.x41{left:23.940000px;}
.x40{left:29.340000px;}
.x56{left:32.580000px;}
.x5a{left:33.840000px;}
.x43{left:35.280000px;}
.x4c{left:37.260000px;}
.xd{left:38.340000px;}
.x5e{left:40.140000px;}
.x45{left:41.805000px;}
.x72{left:43.560000px;}
.x57{left:44.640000px;}
.x59{left:45.900000px;}
.x63{left:47.160000px;}
.x55{left:48.420000px;}
.x46{left:51.660000px;}
.x4f{left:53.460000px;}
.x62{left:54.900000px;}
.x53{left:57.054000px;}
.x61{left:59.040000px;}
.x4d{left:65.025000px;}
.x5b{left:66.054000px;}
.x39{left:68.790000px;}
.x7{left:69.885000px;}
.x3d{left:70.950000px;}
.x58{left:72.534000px;}
.x3b{left:74.205000px;}
.x5{left:75.645000px;}
.x75{left:81.894000px;}
.x11{left:91.800000px;}
.x71{left:94.680000px;}
.x37{left:96.474000px;}
.x47{left:98.454000px;}
.x6f{left:99.900000px;}
.x21{left:101.196000px;}
.x28{left:103.715987px;}
.x1{left:108.036000px;}
.xc{left:110.160000px;}
.x2{left:112.134000px;}
.x4e{left:120.414000px;}
.x12{left:125.675987px;}
.x6{left:129.105000px;}
.x48{left:130.170000px;}
.x77{left:134.495987px;}
.x3c{left:136.614000px;}
.x3e{left:145.254000px;}
.x38{left:149.970000px;}
.x16{left:151.589987px;}
.x8{left:153.585000px;}
.x2c{left:168.509987px;}
.x3{left:228.270000px;}
.x33{left:237.269987px;}
.x6d{left:255.989987px;}
.x68{left:257.969987px;}
.x67{left:266.249987px;}
.x2b{left:271.829987px;}
.x13{left:276.509987px;}
.x15{left:279.029987px;}
.x76{left:280.649987px;}
.x35{left:284.789987px;}
.x54{left:288.075000px;}
.x36{left:292.214987px;}
.x6a{left:295.634987px;}
.x31{left:299.414987px;}
.x1d{left:306.254987px;}
.xe{left:310.035000px;}
.x1c{left:314.534987px;}
.x5c{left:316.155000px;}
.x6e{left:321.735000px;}
.x23{left:326.955000px;}
.x17{left:343.874987px;}
.x3f{left:372.314987px;}
.x4a{left:384.915000px;}
.x2d{left:398.549987px;}
.x50{left:413.535000px;}
.x29{left:417.494987px;}
.x1b{left:423.074987px;}
.xa{left:429.195000px;}
.x1a{left:439.274987px;}
.x73{left:440.535000px;}
.x19{left:442.334987px;}
.x14{left:446.474987px;}
.x18{left:448.274987px;}
.x5f{left:449.715000px;}
.x4b{left:489.345000px;}
.x2a{left:511.304987px;}
.x52{left:518.505000px;}
.x10{left:522.825000px;}
.x42{left:539.565000px;}
.x5d{left:549.465000px;}
.x24{left:552.345000px;}
.x70{left:559.725000px;}
.x51{left:599.325000px;}
.x3a{left:616.065000px;}
.x32{left:627.584987px;}
.x34{left:629.024987px;}
.x20{left:632.624987px;}
.x1f{left:647.024987px;}
.x1e{left:653.144987px;}
.x66{left:659.084987px;}
.x44{left:662.325000px;}
.xb{left:666.690000px;}
.x74{left:672.270000px;}
.x64{left:673.889987px;}
.x60{left:674.970000px;}
.x65{left:678.389987px;}
.x2f{left:680.369987px;}
.x6c{left:687.749987px;}
.x6b{left:690.629987px;}
.x69{left:692.249987px;}
.x26{left:736.889987px;}
.x30{left:739.589987px;}
.x27{left:747.329987px;}
.x2e{left:779.369987px;}
@media print{
.v4{vertical-align:-84.000000pt;}
.v6{vertical-align:-61.440000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:3.200000pt;}
.v5{vertical-align:8.320000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-17.920000pt;}
.ls10{letter-spacing:-16.640000pt;}
.lsd{letter-spacing:-12.160000pt;}
.lse{letter-spacing:-8.960000pt;}
.ls18{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.166400pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:-0.016640pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.023040pt;}
.lsa{letter-spacing:0.042880pt;}
.ls11{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.094933pt;}
.ls15{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.209707pt;}
.lsb{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2{letter-spacing:16.160000pt;}
.ls1a{letter-spacing:17.232640pt;}
.ls16{letter-spacing:613.898667pt;}
.ls12{letter-spacing:641.578667pt;}
.ls17{letter-spacing:697.898667pt;}
.ls14{letter-spacing:742.058667pt;}
.ls3{letter-spacing:939.786667pt;}
.ws3{word-spacing:-20.859520pt;}
.ws1{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-12.960000pt;}
.ws4{word-spacing:-10.720000pt;}
.ws2{word-spacing:-10.240000pt;}
.ws6{word-spacing:0.000000pt;}
._36{margin-left:-2421.288107pt;}
._25{margin-left:-2265.449387pt;}
._29{margin-left:-2257.685333pt;}
._38{margin-left:-2227.574400pt;}
._30{margin-left:-1562.977920pt;}
._35{margin-left:-1328.885333pt;}
._14{margin-left:-1319.118720pt;}
._2d{margin-left:-1282.887680pt;}
._13{margin-left:-1152.106667pt;}
._2e{margin-left:-1136.138667pt;}
._33{margin-left:-1075.549440pt;}
._32{margin-left:-850.698667pt;}
._3b{margin-left:-486.720000pt;}
._1{margin-left:-483.996800pt;}
._3a{margin-left:-482.720000pt;}
._e{margin-left:-476.772480pt;}
._6{margin-left:-458.102400pt;}
._5{margin-left:-414.052480pt;}
._39{margin-left:-389.120000pt;}
._8{margin-left:-388.176640pt;}
._3d{margin-left:-386.026667pt;}
._9{margin-left:-384.715947pt;}
._40{margin-left:-371.904000pt;}
._3f{margin-left:-367.360000pt;}
._b{margin-left:-365.985280pt;}
._11{margin-left:-363.707733pt;}
._a{margin-left:-362.481920pt;}
._42{margin-left:-302.080000pt;}
._41{margin-left:-288.800000pt;}
._31{margin-left:-278.976000pt;}
._c{margin-left:-224.336640pt;}
._22{margin-left:-207.744000pt;}
._15{margin-left:-199.616000pt;}
._3{margin-left:-172.160000pt;}
._2{margin-left:-161.896960pt;}
._27{margin-left:-156.032000pt;}
._26{margin-left:-143.205760pt;}
._34{margin-left:-117.184000pt;}
._18{margin-left:-104.832000pt;}
._16{margin-left:-90.880000pt;}
._7{margin-left:-86.051840pt;}
._12{margin-left:-56.640000pt;}
._28{margin-left:-44.352000pt;}
._d{margin-left:-41.946240pt;}
._3c{margin-left:-36.416000pt;}
._10{margin-left:-31.840000pt;}
._3e{margin-left:-19.584000pt;}
._2a{margin-left:-16.640000pt;}
._17{margin-left:-15.360000pt;}
._23{margin-left:-12.160000pt;}
._2f{margin-left:-8.960000pt;}
._45{margin-left:-5.736960pt;}
._46{margin-left:-4.090240pt;}
._2c{margin-left:-2.368000pt;}
._4{margin-left:-1.080320pt;}
._0{width:1.447040pt;}
._20{width:2.337280pt;}
._1b{width:3.594453pt;}
._24{width:4.567680pt;}
._1a{width:5.724160pt;}
._19{width:6.640000pt;}
._2b{width:7.923840pt;}
._47{width:8.955520pt;}
._1d{width:9.880320pt;}
._1c{width:10.836480pt;}
._21{width:12.323840pt;}
._48{width:14.860800pt;}
._43{width:16.401280pt;}
._44{width:17.668693pt;}
._37{width:19.160960pt;}
._1e{width:20.650880pt;}
._1f{width:21.566720pt;}
._f{width:1496.097067pt;}
.fsb{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs9{font-size:67.461249pt;}
.fs4{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fs3{font-size:78.929661pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:101.120000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:2.880000pt;}
.y1e{bottom:3.360000pt;}
.y8{bottom:3.520000pt;}
.yb{bottom:3.680000pt;}
.y85{bottom:3.834667pt;}
.y7a{bottom:3.840000pt;}
.ya9{bottom:4.000000pt;}
.yb9{bottom:4.040000pt;}
.y83{bottom:4.160000pt;}
.y7b{bottom:4.200000pt;}
.y92{bottom:4.320000pt;}
.yaa{bottom:4.480000pt;}
.yad{bottom:4.640000pt;}
.yeb{bottom:4.800000pt;}
.yf4{bottom:4.960000pt;}
.ye9{bottom:5.280000pt;}
.y89{bottom:6.720000pt;}
.ya0{bottom:8.800000pt;}
.y9{bottom:10.240000pt;}
.yc1{bottom:11.200000pt;}
.y2{bottom:11.840000pt;}
.y98{bottom:12.960000pt;}
.y78{bottom:13.000000pt;}
.y81{bottom:13.120000pt;}
.yb5{bottom:13.280000pt;}
.yf6{bottom:13.440000pt;}
.yf0{bottom:13.466667pt;}
.yb1{bottom:13.600000pt;}
.ya7{bottom:13.760000pt;}
.y2a{bottom:18.240000pt;}
.y7{bottom:21.920000pt;}
.yc0{bottom:26.554667pt;}
.y29{bottom:33.600000pt;}
.y6{bottom:40.320000pt;}
.y28{bottom:48.960000pt;}
.yd{bottom:49.920000pt;}
.y40{bottom:51.040000pt;}
.y5{bottom:58.746667pt;}
.y27{bottom:64.160000pt;}
.y3f{bottom:67.872000pt;}
.y4{bottom:78.426667pt;}
.y26{bottom:79.520000pt;}
.y25{bottom:94.906667pt;}
.y66{bottom:99.072000pt;}
.y87{bottom:101.792000pt;}
.y3{bottom:102.906667pt;}
.y3e{bottom:104.192000pt;}
.yc4{bottom:106.272000pt;}
.yd1{bottom:107.072000pt;}
.y24{bottom:110.266667pt;}
.y65{bottom:114.432000pt;}
.y86{bottom:114.912000pt;}
.yde{bottom:118.272000pt;}
.ybf{bottom:119.392000pt;}
.y3d{bottom:119.552000pt;}
.y23{bottom:125.626667pt;}
.y64{bottom:129.792000pt;}
.y84{bottom:132.512000pt;}
.ydd{bottom:133.466667pt;}
.y3c{bottom:134.906667pt;}
.yc3{bottom:135.386667pt;}
.y108{bottom:138.426667pt;}
.y22{bottom:140.986667pt;}
.ydc{bottom:148.826667pt;}
.y3b{bottom:150.266667pt;}
.yc2{bottom:151.386667pt;}
.y107{bottom:153.786667pt;}
.y21{bottom:156.186667pt;}
.y63{bottom:161.146667pt;}
.ydb{bottom:164.186667pt;}
.y3a{bottom:165.466667pt;}
.y80{bottom:167.866667pt;}
.y106{bottom:169.146667pt;}
.y20{bottom:171.546667pt;}
.yda{bottom:179.546667pt;}
.y39{bottom:180.826667pt;}
.y62{bottom:184.186667pt;}
.y105{bottom:184.506667pt;}
.ybe{bottom:185.466667pt;}
.y82{bottom:186.586667pt;}
.ybc{bottom:198.586667pt;}
.y104{bottom:199.866667pt;}
.y38{bottom:200.346667pt;}
.yd9{bottom:205.466667pt;}
.y103{bottom:215.066667pt;}
.ybd{bottom:216.986667pt;}
.yd8{bottom:217.946667pt;}
.y37{bottom:218.106667pt;}
.y7f{bottom:222.426667pt;}
.y102{bottom:230.426667pt;}
.y36{bottom:231.706667pt;}
.yba{bottom:235.226667pt;}
.y7e{bottom:235.546667pt;}
.y101{bottom:245.786667pt;}
.y35{bottom:251.546667pt;}
.y7d{bottom:253.146667pt;}
.ybb{bottom:253.466667pt;}
.y100{bottom:261.146667pt;}
.y7c{bottom:270.906667pt;}
.y34{bottom:271.386667pt;}
.yb7{bottom:271.706667pt;}
.yff{bottom:276.506667pt;}
.y77{bottom:288.506667pt;}
.yb8{bottom:289.946667pt;}
.y33{bottom:291.266667pt;}
.yfe{bottom:291.906667pt;}
.y79{bottom:307.106667pt;}
.yb4{bottom:308.226667pt;}
.y32{bottom:311.106667pt;}
.yd0{bottom:322.146667pt;}
.yfd{bottom:322.466667pt;}
.yb6{bottom:326.626667pt;}
.y76{bottom:327.746667pt;}
.y31{bottom:331.106667pt;}
.ycf{bottom:337.506667pt;}
.yfc{bottom:337.826667pt;}
.y30{bottom:350.946667pt;}
.yce{bottom:352.706667pt;}
.yfb{bottom:353.186667pt;}
.y75{bottom:353.666667pt;}
.yb3{bottom:363.106667pt;}
.ycd{bottom:368.066667pt;}
.yfa{bottom:368.546667pt;}
.y74{bottom:369.026667pt;}
.y2f{bottom:370.786667pt;}
.yb0{bottom:376.226667pt;}
.ycc{bottom:383.426667pt;}
.y73{bottom:384.386667pt;}
.y2e{bottom:390.626667pt;}
.yb2{bottom:395.426667pt;}
.ycb{bottom:398.786667pt;}
.y72{bottom:399.746667pt;}
.y2d{bottom:410.466667pt;}
.yf8{bottom:412.866667pt;}
.yae{bottom:413.826667pt;}
.yca{bottom:414.146667pt;}
.y71{bottom:414.946667pt;}
.yc9{bottom:429.346667pt;}
.y2c{bottom:430.306667pt;}
.yf9{bottom:431.426667pt;}
.yaf{bottom:433.186667pt;}
.y70{bottom:445.666667pt;}
.y1f{bottom:445.826667pt;}
.yf5{bottom:449.026667pt;}
.yab{bottom:451.586667pt;}
.yc8{bottom:455.426667pt;}
.y6f{bottom:461.026667pt;}
.yf7{bottom:467.586667pt;}
.yc7{bottom:467.906667pt;}
.yd7{bottom:470.466667pt;}
.yac{bottom:470.946667pt;}
.y6e{bottom:473.506667pt;}
.yd6{bottom:482.946667pt;}
.yf2{bottom:485.186667pt;}
.ya6{bottom:489.346667pt;}
.y119{bottom:492.706667pt;}
.yf3{bottom:504.546667pt;}
.y61{bottom:507.426667pt;}
.y118{bottom:508.066667pt;}
.ya8{bottom:508.706667pt;}
.yef{bottom:522.146667pt;}
.y60{bottom:522.786667pt;}
.y117{bottom:523.426667pt;}
.ya5{bottom:530.013333pt;}
.y5f{bottom:538.013333pt;}
.y116{bottom:538.813333pt;}
.yf1{bottom:540.733333pt;}
.y5e{bottom:553.373333pt;}
.y115{bottom:554.013333pt;}
.ya4{bottom:555.933333pt;}
.yee{bottom:561.213333pt;}
.y5d{bottom:568.733333pt;}
.y114{bottom:569.373333pt;}
.ya3{bottom:571.293333pt;}
.yed{bottom:576.573333pt;}
.y5c{bottom:584.093333pt;}
.y113{bottom:584.733333pt;}
.ya2{bottom:586.653333pt;}
.yec{bottom:589.693333pt;}
.y5b{bottom:599.453333pt;}
.ya1{bottom:599.773333pt;}
.y112{bottom:600.093333pt;}
.yea{bottom:609.533333pt;}
.y5a{bottom:614.813333pt;}
.y111{bottom:615.453333pt;}
.y9f{bottom:615.773333pt;}
.ye8{bottom:628.413333pt;}
.y59{bottom:630.013333pt;}
.y1d{bottom:630.493333pt;}
.y110{bottom:630.813333pt;}
.y58{bottom:645.373333pt;}
.y10f{bottom:646.013333pt;}
.y9e{bottom:646.653333pt;}
.ye6{bottom:648.253333pt;}
.y57{bottom:660.733333pt;}
.y10e{bottom:661.373333pt;}
.y9d{bottom:661.853333pt;}
.y1c{bottom:662.173333pt;}
.ye7{bottom:666.653333pt;}
.y1b{bottom:668.253333pt;}
.y9c{bottom:674.973333pt;}
.y56{bottom:676.093333pt;}
.y10d{bottom:676.733333pt;}
.y1a{bottom:682.173333pt;}
.ye5{bottom:687.933333pt;}
.y55{bottom:691.453333pt;}
.y10c{bottom:692.093333pt;}
.y9b{bottom:692.733333pt;}
.y18{bottom:700.573333pt;}
.yc6{bottom:700.733333pt;}
.y19{bottom:705.853333pt;}
.y54{bottom:706.653333pt;}
.y10b{bottom:707.453333pt;}
.y9a{bottom:710.333333pt;}
.yc5{bottom:713.213333pt;}
.ye4{bottom:714.013333pt;}
.y6d{bottom:714.333333pt;}
.y15{bottom:718.973333pt;}
.y53{bottom:722.013333pt;}
.y10a{bottom:722.653333pt;}
.y16{bottom:724.253333pt;}
.y17{bottom:725.053333pt;}
.y97{bottom:728.093333pt;}
.ye3{bottom:729.373333pt;}
.y6c{bottom:729.693333pt;}
.y109{bottom:738.013333pt;}
.ye2{bottom:744.573333pt;}
.y6b{bottom:745.053333pt;}
.y99{bottom:746.653333pt;}
.yd5{bottom:750.813333pt;}
.y52{bottom:753.373333pt;}
.ye1{bottom:759.933333pt;}
.y6a{bottom:760.413333pt;}
.yd4{bottom:766.213333pt;}
.y51{bottom:768.773333pt;}
.y14{bottom:771.173333pt;}
.y69{bottom:775.813333pt;}
.y96{bottom:782.533333pt;}
.y50{bottom:784.133333pt;}
.ye0{bottom:786.053333pt;}
.y13{bottom:789.573333pt;}
.y68{bottom:791.013333pt;}
.yd3{bottom:792.293333pt;}
.y95{bottom:795.653333pt;}
.y4f{bottom:799.493333pt;}
.y67{bottom:803.493333pt;}
.yd2{bottom:804.773333pt;}
.y12{bottom:813.253333pt;}
.y94{bottom:813.413333pt;}
.ydf{bottom:814.533333pt;}
.y4e{bottom:814.693333pt;}
.y11{bottom:826.373333pt;}
.y4d{bottom:830.053333pt;}
.y93{bottom:831.013333pt;}
.y4c{bottom:845.413333pt;}
.y10{bottom:845.893333pt;}
.y90{bottom:848.613333pt;}
.y4b{bottom:860.773333pt;}
.y91{bottom:867.333333pt;}
.yf{bottom:870.533333pt;}
.y4a{bottom:876.133333pt;}
.y49{bottom:891.493333pt;}
.ye{bottom:895.013333pt;}
.y8f{bottom:903.173333pt;}
.y48{bottom:906.693333pt;}
.y8e{bottom:918.533333pt;}
.yc{bottom:918.853333pt;}
.y47{bottom:922.053333pt;}
.ya{bottom:932.773333pt;}
.y8d{bottom:933.893333pt;}
.y46{bottom:937.413333pt;}
.y8c{bottom:949.093333pt;}
.y1{bottom:952.613333pt;}
.y45{bottom:952.773333pt;}
.y8b{bottom:963.493333pt;}
.y44{bottom:968.133333pt;}
.y8a{bottom:971.493333pt;}
.y43{bottom:983.493333pt;}
.y88{bottom:987.493333pt;}
.y42{bottom:998.693333pt;}
.y41{bottom:1014.080000pt;}
.h30{height:15.200000pt;}
.h21{height:15.360000pt;}
.h14{height:16.960000pt;}
.h1c{height:17.120000pt;}
.h2b{height:17.600000pt;}
.h2d{height:17.632000pt;}
.h26{height:17.760000pt;}
.h1f{height:17.920000pt;}
.h1d{height:17.952000pt;}
.h33{height:18.240000pt;}
.h29{height:18.560000pt;}
.h27{height:18.720000pt;}
.h32{height:19.200000pt;}
.h8{height:19.840000pt;}
.h20{height:23.072000pt;}
.h24{height:27.200000pt;}
.h22{height:31.406250pt;}
.h19{height:32.516250pt;}
.h23{height:35.520000pt;}
.h34{height:35.552000pt;}
.h1e{height:35.680000pt;}
.h1b{height:35.712000pt;}
.h2e{height:35.840000pt;}
.h2c{height:35.872000pt;}
.h2a{height:36.000000pt;}
.h31{height:36.160000pt;}
.h35{height:36.320000pt;}
.h28{height:36.960000pt;}
.h25{height:37.120000pt;}
.hf{height:37.561875pt;}
.h10{height:37.729375pt;}
.h12{height:42.084375pt;}
.hd{height:45.284375pt;}
.h2f{height:47.200000pt;}
.h36{height:47.621250pt;}
.h16{height:52.134375pt;}
.hb{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h17{height:56.062500pt;}
.he{height:56.312500pt;}
.h3{height:57.787500pt;}
.ha{height:58.563750pt;}
.h11{height:59.357993pt;}
.h5{height:62.781250pt;}
.h6{height:62.812500pt;}
.hc{height:64.335000pt;}
.h18{height:64.632500pt;}
.h13{height:69.339533pt;}
.h7{height:81.127254pt;}
.h4{height:85.785000pt;}
.h9{height:101.910000pt;}
.h2{height:122.752000pt;}
.h15{height:184.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w19{width:71.200000pt;}
.w1a{width:71.232000pt;}
.w23{width:88.032000pt;}
.w14{width:92.192000pt;}
.w1b{width:92.640000pt;}
.w18{width:92.672000pt;}
.w25{width:97.280000pt;}
.w2a{width:99.392000pt;}
.w2b{width:99.680000pt;}
.w28{width:104.960000pt;}
.w4{width:105.280000pt;}
.w29{width:105.312000pt;}
.w2{width:106.880000pt;}
.w12{width:108.480000pt;}
.w11{width:108.512000pt;}
.w1d{width:110.720000pt;}
.w24{width:110.912000pt;}
.w15{width:111.840000pt;}
.w22{width:118.080000pt;}
.wf{width:149.626667pt;}
.w1c{width:158.586667pt;}
.w1e{width:158.906667pt;}
.w17{width:164.506667pt;}
.w5{width:179.546667pt;}
.w1f{width:183.706667pt;}
.w26{width:188.666667pt;}
.w6{width:189.146667pt;}
.wa{width:199.706667pt;}
.w9{width:200.026667pt;}
.w20{width:206.746667pt;}
.w21{width:208.826667pt;}
.w27{width:210.906667pt;}
.wb{width:212.986667pt;}
.w7{width:233.146667pt;}
.w13{width:244.666667pt;}
.w16{width:270.266667pt;}
.w10{width:273.146667pt;}
.wd{width:299.866667pt;}
.we{width:300.066667pt;}
.w3{width:389.693333pt;}
.wc{width:614.013333pt;}
.w8{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:7.840000pt;}
.x22{left:10.400000pt;}
.x49{left:11.840000pt;}
.xf{left:13.280000pt;}
.x4{left:17.120000pt;}
.x25{left:19.520000pt;}
.x41{left:21.280000pt;}
.x40{left:26.080000pt;}
.x56{left:28.960000pt;}
.x5a{left:30.080000pt;}
.x43{left:31.360000pt;}
.x4c{left:33.120000pt;}
.xd{left:34.080000pt;}
.x5e{left:35.680000pt;}
.x45{left:37.160000pt;}
.x72{left:38.720000pt;}
.x57{left:39.680000pt;}
.x59{left:40.800000pt;}
.x63{left:41.920000pt;}
.x55{left:43.040000pt;}
.x46{left:45.920000pt;}
.x4f{left:47.520000pt;}
.x62{left:48.800000pt;}
.x53{left:50.714667pt;}
.x61{left:52.480000pt;}
.x4d{left:57.800000pt;}
.x5b{left:58.714667pt;}
.x39{left:61.146667pt;}
.x7{left:62.120000pt;}
.x3d{left:63.066667pt;}
.x58{left:64.474667pt;}
.x3b{left:65.960000pt;}
.x5{left:67.240000pt;}
.x75{left:72.794667pt;}
.x11{left:81.600000pt;}
.x71{left:84.160000pt;}
.x37{left:85.754667pt;}
.x47{left:87.514667pt;}
.x6f{left:88.800000pt;}
.x21{left:89.952000pt;}
.x28{left:92.191988pt;}
.x1{left:96.032000pt;}
.xc{left:97.920000pt;}
.x2{left:99.674667pt;}
.x4e{left:107.034667pt;}
.x12{left:111.711988pt;}
.x6{left:114.760000pt;}
.x48{left:115.706667pt;}
.x77{left:119.551988pt;}
.x3c{left:121.434667pt;}
.x3e{left:129.114667pt;}
.x38{left:133.306667pt;}
.x16{left:134.746655pt;}
.x8{left:136.520000pt;}
.x2c{left:149.786655pt;}
.x3{left:202.906667pt;}
.x33{left:210.906655pt;}
.x6d{left:227.546655pt;}
.x68{left:229.306655pt;}
.x67{left:236.666655pt;}
.x2b{left:241.626655pt;}
.x13{left:245.786655pt;}
.x15{left:248.026655pt;}
.x76{left:249.466655pt;}
.x35{left:253.146655pt;}
.x54{left:256.066667pt;}
.x36{left:259.746655pt;}
.x6a{left:262.786655pt;}
.x31{left:266.146655pt;}
.x1d{left:272.226655pt;}
.xe{left:275.586667pt;}
.x1c{left:279.586655pt;}
.x5c{left:281.026667pt;}
.x6e{left:285.986667pt;}
.x23{left:290.626667pt;}
.x17{left:305.666655pt;}
.x3f{left:330.946655pt;}
.x4a{left:342.146667pt;}
.x2d{left:354.266655pt;}
.x50{left:367.586667pt;}
.x29{left:371.106655pt;}
.x1b{left:376.066655pt;}
.xa{left:381.506667pt;}
.x1a{left:390.466655pt;}
.x73{left:391.586667pt;}
.x19{left:393.186655pt;}
.x14{left:396.866655pt;}
.x18{left:398.466655pt;}
.x5f{left:399.746667pt;}
.x4b{left:434.973333pt;}
.x2a{left:454.493322pt;}
.x52{left:460.893333pt;}
.x10{left:464.733333pt;}
.x42{left:479.613333pt;}
.x5d{left:488.413333pt;}
.x24{left:490.973333pt;}
.x70{left:497.533333pt;}
.x51{left:532.733333pt;}
.x3a{left:547.613333pt;}
.x32{left:557.853322pt;}
.x34{left:559.133322pt;}
.x20{left:562.333322pt;}
.x1f{left:575.133322pt;}
.x1e{left:580.573322pt;}
.x66{left:585.853322pt;}
.x44{left:588.733333pt;}
.xb{left:592.613333pt;}
.x74{left:597.573333pt;}
.x64{left:599.013322pt;}
.x60{left:599.973333pt;}
.x65{left:603.013322pt;}
.x2f{left:604.773322pt;}
.x6c{left:611.333322pt;}
.x6b{left:613.893322pt;}
.x69{left:615.333322pt;}
.x26{left:655.013322pt;}
.x30{left:657.413322pt;}
.x27{left:664.293322pt;}
.x2e{left:692.773322pt;}
}




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