
    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_ec8c7e0b3f8c54d9fcdf1284.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_5e923d0e7d835642d351edae.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958008;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_338d5ec20b2119f0778556f6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.958008;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_85fa2785590537f78a396023.woff')format("woff");}.ff4{font-family:ff4;line-height:0.944336;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_2d6fdfc3b2071257bbb73a24.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3f76cd0fb1a839bd535f4399.woff')format("woff");}.ff6{font-family:ff6;line-height:0.999512;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_3222c981362e72c48fe46c71.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_4e6475f5cdc477ef51a48fa8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_c17522068814b9c65e8f3e71.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;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_d794ffa5c15cce3f0e39ead4.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fa21e617df18f134f2b1720f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_e14d9905d4f59cdcebf4b236.woff')format("woff");}.ffd{font-family:ffd;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58f158784db3d31c26f271d0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.999512;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:fff;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ff10{font-family:ff10;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.678000px;}
.ls7{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.480000px;}
.ls16{letter-spacing:-0.402000px;}
.ls8{letter-spacing:-0.366000px;}
.ls25{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.024000px;}
.ls1f{letter-spacing:0.078000px;}
.lsc{letter-spacing:0.132000px;}
.lse{letter-spacing:0.276000px;}
.lsa{letter-spacing:0.300000px;}
.ls19{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.492000px;}
.ls17{letter-spacing:0.495000px;}
.ls14{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.lsf{letter-spacing:1.668000px;}
.ls24{letter-spacing:18.648000px;}
.ls26{letter-spacing:21.648000px;}
.ls23{letter-spacing:24.648000px;}
.ls1b{letter-spacing:29.148000px;}
.ls1e{letter-spacing:32.148000px;}
.ls1a{letter-spacing:35.148000px;}
.ls1d{letter-spacing:50.652000px;}
.ls1c{letter-spacing:59.652000px;}
.lsd{letter-spacing:60.378000px;}
.ls22{letter-spacing:64.812000px;}
.ls18{letter-spacing:67.152000px;}
.ls21{letter-spacing:70.812000px;}
.ls11{letter-spacing:72.312000px;}
.ls12{letter-spacing:76.812000px;}
.ls10{letter-spacing:78.312000px;}
.lsb{letter-spacing:845.952000px;}
.ls1{letter-spacing:846.102000px;}
.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;}
}
.ws14{word-spacing:-66.000000px;}
.wsf{word-spacing:-29.760000px;}
.ws1{word-spacing:-23.520000px;}
.ws10{word-spacing:-19.200000px;}
.ws15{word-spacing:-16.800000px;}
.wse{word-spacing:-16.548000px;}
.wsd{word-spacing:-15.768000px;}
.ws7{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.892000px;}
.ws3{word-spacing:-14.832000px;}
.ws2{word-spacing:-14.400000px;}
.wsb{word-spacing:-14.388000px;}
.ws8{word-spacing:-13.896000px;}
.ws11{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.680000px;}
.ws13{word-spacing:-13.632000px;}
.ws17{word-spacing:-13.596000px;}
.ws6{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.332000px;}
.ws9{word-spacing:-13.200000px;}
.ws19{word-spacing:-12.888000px;}
.wsa{word-spacing:-12.834000px;}
.ws12{word-spacing:-12.798000px;}
.ws18{word-spacing:-12.522000px;}
.ws16{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._1f{margin-left:-11.634000px;}
._e{margin-left:-8.016000px;}
._8{margin-left:-6.552000px;}
._7{margin-left:-5.040000px;}
._1{margin-left:-3.552000px;}
._2{margin-left:-1.632000px;}
._5{width:1.002000px;}
._0{width:2.016000px;}
._6{width:3.216000px;}
._9{width:4.308000px;}
._a{width:90.726000px;}
._11{width:102.558000px;}
._4{width:103.800000px;}
._3{width:505.980000px;}
._16{width:656.760000px;}
._14{width:971.610000px;}
._10{width:1064.814000px;}
._12{width:1121.298000px;}
._1b{width:1215.840000px;}
._1a{width:1400.670000px;}
._15{width:1435.104000px;}
._1c{width:1448.118000px;}
._13{width:1491.624000px;}
._b{width:1804.794000px;}
._17{width:1865.916000px;}
._f{width:1875.252000px;}
._18{width:2002.260000px;}
._19{width:2003.910000px;}
._1e{width:2011.542000px;}
._d{width:2049.042000px;}
._1d{width:2106.000000px;}
._c{width:2240.220000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.500000px;}
.y2b{bottom:4.860000px;}
.y24{bottom:4.875000px;}
.y2e{bottom:5.625000px;}
.y32{bottom:8.625000px;}
.y37{bottom:9.750000px;}
.y42{bottom:18.000000px;}
.y40{bottom:18.030000px;}
.y4e{bottom:26.610000px;}
.y35{bottom:26.625000px;}
.y59{bottom:26.670000px;}
.y51{bottom:27.000000px;}
.y1b{bottom:42.375000px;}
.y4d{bottom:48.735000px;}
.y4c{bottom:70.485000px;}
.y1a{bottom:71.662500px;}
.y4b{bottom:92.655000px;}
.y13d{bottom:121.162500px;}
.y18{bottom:122.662500px;}
.y92{bottom:132.412500px;}
.yb1{bottom:135.412500px;}
.y13c{bottom:141.412500px;}
.y15e{bottom:142.162500px;}
.y116{bottom:150.045000px;}
.yf7{bottom:152.670000px;}
.yb0{bottom:157.170000px;}
.y17{bottom:162.045000px;}
.y13b{bottom:162.420000px;}
.y91{bottom:163.920000px;}
.y115{bottom:174.780000px;}
.yf6{bottom:177.420000px;}
.yaf{bottom:178.920000px;}
.y15d{bottom:180.420000px;}
.y13a{bottom:182.670000px;}
.y114{bottom:195.075000px;}
.y90{bottom:195.450000px;}
.y16{bottom:195.825000px;}
.yf5{bottom:197.700000px;}
.yae{bottom:200.700000px;}
.y15c{bottom:202.200000px;}
.y139{bottom:203.700000px;}
.y113{bottom:214.950000px;}
.yf4{bottom:217.575000px;}
.y138{bottom:223.950000px;}
.y15{bottom:229.575000px;}
.y8f{bottom:234.450000px;}
.y112{bottom:235.200000px;}
.yad{bottom:237.075000px;}
.yf3{bottom:237.825000px;}
.y137{bottom:243.825000px;}
.y15b{bottom:245.700000px;}
.y111{bottom:255.450000px;}
.yf2{bottom:258.075000px;}
.y14{bottom:263.325000px;}
.y136{bottom:264.825000px;}
.y8e{bottom:267.075000px;}
.y110{bottom:276.450000px;}
.yac{bottom:277.950000px;}
.y45{bottom:279.825000px;}
.y15a{bottom:280.950000px;}
.y135{bottom:285.825000px;}
.y62{bottom:287.700000px;}
.y13{bottom:297.075000px;}
.y10f{bottom:297.450000px;}
.yf1{bottom:298.200000px;}
.y8d{bottom:299.700000px;}
.y134{bottom:306.120000px;}
.y44{bottom:314.370000px;}
.yf0{bottom:318.495000px;}
.y159{bottom:319.245000px;}
.y61{bottom:321.495000px;}
.y133{bottom:326.370000px;}
.y12{bottom:330.870000px;}
.y8c{bottom:332.370000px;}
.yef{bottom:338.745000px;}
.y158{bottom:340.995000px;}
.y132{bottom:346.620000px;}
.y43{bottom:348.870000px;}
.ye4{bottom:354.870000px;}
.y60{bottom:355.245000px;}
.yee{bottom:358.620000px;}
.y157{bottom:362.745000px;}
.y11{bottom:364.620000px;}
.y8b{bottom:364.995000px;}
.y131{bottom:366.495000px;}
.ye3{bottom:375.120000px;}
.yab{bottom:376.995000px;}
.yed{bottom:378.870000px;}
.y41{bottom:383.370000px;}
.y156{bottom:384.495000px;}
.y5f{bottom:388.995000px;}
.ye2{bottom:395.370000px;}
.y8a{bottom:397.995000px;}
.y10{bottom:398.370000px;}
.yaa{bottom:398.745000px;}
.yec{bottom:399.120000px;}
.y130{bottom:401.745000px;}
.y5e{bottom:405.495000px;}
.y155{bottom:406.245000px;}
.ye1{bottom:415.245000px;}
.y3f{bottom:417.870000px;}
.yeb{bottom:418.995000px;}
.yc9{bottom:420.120000px;}
.ya9{bottom:420.480000px;}
.y5d{bottom:428.025000px;}
.y89{bottom:430.650000px;}
.yf{bottom:432.150000px;}
.ye0{bottom:435.525000px;}
.yea{bottom:439.275000px;}
.y12f{bottom:440.025000px;}
.y154{bottom:441.150000px;}
.ya8{bottom:442.275000px;}
.y77{bottom:450.150000px;}
.y5c{bottom:450.900000px;}
.yc8{bottom:453.900000px;}
.ydf{bottom:455.775000px;}
.ye9{bottom:459.525000px;}
.y10e{bottom:460.275000px;}
.y12e{bottom:461.775000px;}
.y88{bottom:463.275000px;}
.ye{bottom:465.900000px;}
.y3e{bottom:470.400000px;}
.y76{bottom:471.900000px;}
.y5b{bottom:473.775000px;}
.yc7{bottom:475.650000px;}
.ya7{bottom:478.650000px;}
.ye8{bottom:479.775000px;}
.y10d{bottom:480.525000px;}
.y12d{bottom:482.025000px;}
.y153{bottom:482.400000px;}
.y75{bottom:493.650000px;}
.y87{bottom:495.900000px;}
.y5a{bottom:496.275000px;}
.yd{bottom:499.650000px;}
.y10c{bottom:501.525000px;}
.y12c{bottom:501.900000px;}
.y3d{bottom:504.525000px;}
.yc6{bottom:509.400000px;}
.ye7{bottom:514.650000px;}
.y74{bottom:515.400000px;}
.yde{bottom:516.150000px;}
.y58{bottom:519.150000px;}
.ya6{bottom:519.525000px;}
.y10b{bottom:521.775000px;}
.y12b{bottom:522.150000px;}
.y152{bottom:523.275000px;}
.yc5{bottom:531.150000px;}
.yc{bottom:533.400000px;}
.ydd{bottom:536.400000px;}
.y73{bottom:537.150000px;}
.y86{bottom:537.900000px;}
.ya5{bottom:541.320000px;}
.y10a{bottom:541.695000px;}
.y12a{bottom:542.445000px;}
.y3c{bottom:543.945000px;}
.y151{bottom:545.070000px;}
.yc4{bottom:552.945000px;}
.ye6{bottom:553.695000px;}
.ydc{bottom:556.320000px;}
.y72{bottom:558.945000px;}
.y109{bottom:561.945000px;}
.y129{bottom:562.695000px;}
.ya4{bottom:563.070000px;}
.y57{bottom:563.820000px;}
.y150{bottom:566.820000px;}
.yb{bottom:567.195000px;}
.y85{bottom:570.570000px;}
.ydb{bottom:576.570000px;}
.y3b{bottom:577.695000px;}
.ye5{bottom:579.945000px;}
.y128{bottom:582.570000px;}
.y56{bottom:586.695000px;}
.y14f{bottom:588.570000px;}
.yc3{bottom:589.320000px;}
.y71{bottom:592.320000px;}
.y3a{bottom:594.195000px;}
.ya3{bottom:596.820000px;}
.y108{bottom:597.195000px;}
.ya{bottom:600.945000px;}
.y127{bottom:602.820000px;}
.y84{bottom:603.195000px;}
.y14e{bottom:610.320000px;}
.y70{bottom:614.070000px;}
.y39{bottom:616.695000px;}
.ya2{bottom:618.570000px;}
.y16c{bottom:622.695000px;}
.y126{bottom:623.820000px;}
.y55{bottom:627.570000px;}
.yc2{bottom:630.195000px;}
.y14d{bottom:632.070000px;}
.y9{bottom:634.695000px;}
.y107{bottom:635.445000px;}
.y6f{bottom:635.820000px;}
.yda{bottom:636.945000px;}
.y38{bottom:639.570000px;}
.ya1{bottom:640.320000px;}
.y125{bottom:644.070000px;}
.y16b{bottom:644.445000px;}
.y14c{bottom:653.445000px;}
.y54{bottom:655.320000px;}
.yd9{bottom:657.195000px;}
.y6e{bottom:657.570000px;}
.y36{bottom:662.100000px;}
.yc1{bottom:663.975000px;}
.y124{bottom:665.100000px;}
.y16a{bottom:666.225000px;}
.y8{bottom:668.475000px;}
.y83{bottom:668.850000px;}
.y14b{bottom:675.225000px;}
.yd8{bottom:677.475000px;}
.y106{bottom:678.600000px;}
.y53{bottom:682.725000px;}
.ya0{bottom:683.850000px;}
.yc0{bottom:685.725000px;}
.y123{bottom:686.100000px;}
.y169{bottom:687.975000px;}
.y34{bottom:689.850000px;}
.y6d{bottom:691.350000px;}
.yd7{bottom:697.350000px;}
.y105{bottom:698.850000px;}
.y82{bottom:701.475000px;}
.y7{bottom:703.350000px;}
.y9f{bottom:705.225000px;}
.y122{bottom:706.350000px;}
.ybf{bottom:707.475000px;}
.y14a{bottom:711.975000px;}
.y6c{bottom:713.100000px;}
.y52{bottom:716.475000px;}
.yd6{bottom:717.600000px;}
.y104{bottom:719.100000px;}
.y168{bottom:724.350000px;}
.y121{bottom:726.225000px;}
.ybe{bottom:729.225000px;}
.y50{bottom:732.975000px;}
.y81{bottom:734.100000px;}
.y33{bottom:734.475000px;}
.y6b{bottom:734.850000px;}
.yd5{bottom:737.850000px;}
.y9e{bottom:738.975000px;}
.y103{bottom:739.350000px;}
.y120{bottom:746.475000px;}
.y6{bottom:747.225000px;}
.y149{bottom:753.600000px;}
.y31{bottom:757.350000px;}
.yd4{bottom:757.725000px;}
.y102{bottom:759.600000px;}
.y9d{bottom:760.725000px;}
.y147{bottom:762.600000px;}
.ybd{bottom:762.975000px;}
.y167{bottom:765.225000px;}
.y80{bottom:766.725000px;}
.y6a{bottom:768.600000px;}
.y4f{bottom:778.005000px;}
.yd3{bottom:778.020000px;}
.y101{bottom:779.505000px;}
.y148{bottom:779.880000px;}
.y11f{bottom:781.395000px;}
.y9c{bottom:782.505000px;}
.y30{bottom:784.005000px;}
.ybc{bottom:784.770000px;}
.y166{bottom:787.005000px;}
.y5{bottom:790.005000px;}
.y69{bottom:790.380000px;}
.y146{bottom:796.380000px;}
.yd2{bottom:798.270000px;}
.y100{bottom:800.505000px;}
.y9b{bottom:804.255000px;}
.ybb{bottom:806.505000px;}
.y7f{bottom:808.755000px;}
.yd1{bottom:818.130000px;}
.y11e{bottom:819.630000px;}
.yff{bottom:820.755000px;}
.y165{bottom:822.255000px;}
.y4a{bottom:822.645000px;}
.y68{bottom:824.130000px;}
.y2f{bottom:824.505000px;}
.y4{bottom:824.880000px;}
.y9a{bottom:826.005000px;}
.yd0{bottom:838.380000px;}
.y11d{bottom:839.880000px;}
.yba{bottom:840.255000px;}
.y2d{bottom:841.005000px;}
.y7e{bottom:841.380000px;}
.yfe{bottom:841.755000px;}
.y67{bottom:845.880000px;}
.y99{bottom:847.755000px;}
.ycf{bottom:858.630000px;}
.y145{bottom:859.380000px;}
.y11c{bottom:860.130000px;}
.yb9{bottom:862.005000px;}
.y2c{bottom:864.255000px;}
.y66{bottom:867.630000px;}
.y22{bottom:871.380000px;}
.yce{bottom:878.880000px;}
.y144{bottom:879.630000px;}
.y11b{bottom:880.380000px;}
.y98{bottom:881.505000px;}
.y164{bottom:881.880000px;}
.y7d{bottom:883.005000px;}
.yb8{bottom:883.755000px;}
.y2a{bottom:887.145000px;}
.ycd{bottom:898.800000px;}
.y143{bottom:899.550000px;}
.y11a{bottom:900.675000px;}
.y65{bottom:901.425000px;}
.y97{bottom:903.300000px;}
.y163{bottom:903.675000px;}
.y21{bottom:905.175000px;}
.yb7{bottom:905.550000px;}
.y29{bottom:909.675000px;}
.y7c{bottom:915.675000px;}
.ycc{bottom:919.050000px;}
.y142{bottom:919.800000px;}
.y119{bottom:921.675000px;}
.y64{bottom:923.175000px;}
.y96{bottom:925.050000px;}
.y162{bottom:925.425000px;}
.y28{bottom:932.550000px;}
.y49{bottom:933.300000px;}
.y20{bottom:939.300000px;}
.y118{bottom:941.550000px;}
.yfd{bottom:943.425000px;}
.y7b{bottom:948.300000px;}
.y27{bottom:955.425000px;}
.y48{bottom:955.800000px;}
.y63{bottom:956.925000px;}
.y161{bottom:960.675000px;}
.yb6{bottom:961.050000px;}
.y95{bottom:961.425000px;}
.y117{bottom:962.550000px;}
.yfc{bottom:963.675000px;}
.ycb{bottom:975.675000px;}
.y26{bottom:977.925000px;}
.y1f{bottom:979.050000px;}
.y141{bottom:980.925000px;}
.y7a{bottom:981.300000px;}
.yfb{bottom:983.550000px;}
.y3{bottom:991.050000px;}
.yb5{bottom:994.800000px;}
.y47{bottom:997.050000px;}
.y160{bottom:998.925000px;}
.y25{bottom:1000.800000px;}
.y140{bottom:1001.175000px;}
.yfa{bottom:1003.800000px;}
.y94{bottom:1005.300000px;}
.yb3{bottom:1008.675000px;}
.yb4{bottom:1016.580000px;}
.y1e{bottom:1018.830000px;}
.yca{bottom:1019.205000px;}
.y15f{bottom:1020.705000px;}
.y13f{bottom:1022.205000px;}
.y79{bottom:1022.955000px;}
.y23{bottom:1023.330000px;}
.yf9{bottom:1024.080000px;}
.y46{bottom:1024.830000px;}
.y2{bottom:1030.455000px;}
.yb2{bottom:1042.455000px;}
.yf8{bottom:1044.330000px;}
.y93{bottom:1052.955000px;}
.y1d{bottom:1058.580000px;}
.y78{bottom:1062.705000px;}
.y13e{bottom:1063.455000px;}
.y1{bottom:1064.205000px;}
.y19{bottom:1117.455000px;}
.h4{height:20.250000px;}
.h9{height:21.750000px;}
.ha{height:21.772500px;}
.h8{height:21.787500px;}
.hf{height:22.110000px;}
.h6{height:22.125000px;}
.hb{height:22.500000px;}
.hc{height:25.912500px;}
.he{height:27.000000px;}
.h11{height:33.750000px;}
.h10{height:33.787500px;}
.h1c{height:41.053711px;}
.hd{height:43.875000px;}
.h14{height:43.912500px;}
.h13{height:44.287500px;}
.h1{height:50.176758px;}
.h1b{height:53.094727px;}
.h7{height:54.738281px;}
.h18{height:61.435547px;}
.h2{height:63.000000px;}
.h1e{height:65.645508px;}
.h1f{height:67.579102px;}
.h5{height:67.837600px;}
.h17{height:71.613281px;}
.h3{height:72.000000px;}
.h15{height:73.722656px;}
.h16{height:81.000000px;}
.h1d{height:86.338763px;}
.h1a{height:98.672872px;}
.h12{height:109.897500px;}
.h19{height:112.429688px;}
.h0{height:1188.000000px;}
.w12{width:7.125000px;}
.w3{width:7.500000px;}
.w10{width:7.875000px;}
.w2{width:8.250000px;}
.w11{width:8.625000px;}
.w14{width:14.625000px;}
.w15{width:15.375000px;}
.w13{width:15.750000px;}
.w8{width:29.662500px;}
.wa{width:83.662500px;}
.wb{width:114.412500px;}
.wc{width:153.075000px;}
.we{width:153.825000px;}
.w4{width:231.120000px;}
.w6{width:232.995000px;}
.wd{width:347.400000px;}
.w7{width:487.320000px;}
.w5{width:502.320000px;}
.wf{width:546.225000px;}
.w9{width:671.145000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.875000px;}
.x1{left:108.037486px;}
.xd{left:124.537486px;}
.xf{left:135.074986px;}
.x8{left:139.200000px;}
.xe{left:141.074986px;}
.x12{left:150.449986px;}
.x14{left:162.074986px;}
.x13{left:177.449986px;}
.x15{left:189.074986px;}
.x9{left:193.200000px;}
.x10{left:216.074986px;}
.xc{left:263.370000px;}
.xa{left:308.370000px;}
.x3{left:317.024986px;}
.x6{left:340.650000px;}
.x7{left:342.525000px;}
.xb{left:462.195000px;}
.x2{left:509.099986px;}
.x11{left:720.299986px;}
.x16{left:810.344986px;}
.x4{left:877.875000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.602667pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.426667pt;}
.ls16{letter-spacing:-0.357333pt;}
.ls8{letter-spacing:-0.325333pt;}
.ls25{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.021333pt;}
.ls1f{letter-spacing:0.069333pt;}
.lsc{letter-spacing:0.117333pt;}
.lse{letter-spacing:0.245333pt;}
.lsa{letter-spacing:0.266667pt;}
.ls19{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.437333pt;}
.ls17{letter-spacing:0.440000pt;}
.ls14{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.lsf{letter-spacing:1.482667pt;}
.ls24{letter-spacing:16.576000pt;}
.ls26{letter-spacing:19.242667pt;}
.ls23{letter-spacing:21.909333pt;}
.ls1b{letter-spacing:25.909333pt;}
.ls1e{letter-spacing:28.576000pt;}
.ls1a{letter-spacing:31.242667pt;}
.ls1d{letter-spacing:45.024000pt;}
.ls1c{letter-spacing:53.024000pt;}
.lsd{letter-spacing:53.669333pt;}
.ls22{letter-spacing:57.610667pt;}
.ls18{letter-spacing:59.690667pt;}
.ls21{letter-spacing:62.944000pt;}
.ls11{letter-spacing:64.277333pt;}
.ls12{letter-spacing:68.277333pt;}
.ls10{letter-spacing:69.610667pt;}
.lsb{letter-spacing:751.957333pt;}
.ls1{letter-spacing:752.090667pt;}
.ws14{word-spacing:-58.666667pt;}
.wsf{word-spacing:-26.453333pt;}
.ws1{word-spacing:-20.906667pt;}
.ws10{word-spacing:-17.066667pt;}
.ws15{word-spacing:-14.933333pt;}
.wse{word-spacing:-14.709333pt;}
.wsd{word-spacing:-14.016000pt;}
.ws7{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.237333pt;}
.ws3{word-spacing:-13.184000pt;}
.ws2{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.789333pt;}
.ws8{word-spacing:-12.352000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.160000pt;}
.ws13{word-spacing:-12.117333pt;}
.ws17{word-spacing:-12.085333pt;}
.ws6{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.850667pt;}
.ws9{word-spacing:-11.733333pt;}
.ws19{word-spacing:-11.456000pt;}
.wsa{word-spacing:-11.408000pt;}
.ws12{word-spacing:-11.376000pt;}
.ws18{word-spacing:-11.130667pt;}
.ws16{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._1f{margin-left:-10.341333pt;}
._e{margin-left:-7.125333pt;}
._8{margin-left:-5.824000pt;}
._7{margin-left:-4.480000pt;}
._1{margin-left:-3.157333pt;}
._2{margin-left:-1.450667pt;}
._5{width:0.890667pt;}
._0{width:1.792000pt;}
._6{width:2.858667pt;}
._9{width:3.829333pt;}
._a{width:80.645333pt;}
._11{width:91.162667pt;}
._4{width:92.266667pt;}
._3{width:449.760000pt;}
._16{width:583.786667pt;}
._14{width:863.653333pt;}
._10{width:946.501333pt;}
._12{width:996.709333pt;}
._1b{width:1080.746667pt;}
._1a{width:1245.040000pt;}
._15{width:1275.648000pt;}
._1c{width:1287.216000pt;}
._13{width:1325.888000pt;}
._b{width:1604.261333pt;}
._17{width:1658.592000pt;}
._f{width:1666.890667pt;}
._18{width:1779.786667pt;}
._19{width:1781.253333pt;}
._1e{width:1788.037333pt;}
._d{width:1821.370667pt;}
._1d{width:1872.000000pt;}
._c{width:1991.306667pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.000000pt;}
.y2b{bottom:4.320000pt;}
.y24{bottom:4.333333pt;}
.y2e{bottom:5.000000pt;}
.y32{bottom:7.666667pt;}
.y37{bottom:8.666667pt;}
.y42{bottom:16.000000pt;}
.y40{bottom:16.026667pt;}
.y4e{bottom:23.653333pt;}
.y35{bottom:23.666667pt;}
.y59{bottom:23.706667pt;}
.y51{bottom:24.000000pt;}
.y1b{bottom:37.666667pt;}
.y4d{bottom:43.320000pt;}
.y4c{bottom:62.653333pt;}
.y1a{bottom:63.700000pt;}
.y4b{bottom:82.360000pt;}
.y13d{bottom:107.700000pt;}
.y18{bottom:109.033333pt;}
.y92{bottom:117.700000pt;}
.yb1{bottom:120.366667pt;}
.y13c{bottom:125.700000pt;}
.y15e{bottom:126.366667pt;}
.y116{bottom:133.373333pt;}
.yf7{bottom:135.706667pt;}
.yb0{bottom:139.706667pt;}
.y17{bottom:144.040000pt;}
.y13b{bottom:144.373333pt;}
.y91{bottom:145.706667pt;}
.y115{bottom:155.360000pt;}
.yf6{bottom:157.706667pt;}
.yaf{bottom:159.040000pt;}
.y15d{bottom:160.373333pt;}
.y13a{bottom:162.373333pt;}
.y114{bottom:173.400000pt;}
.y90{bottom:173.733333pt;}
.y16{bottom:174.066667pt;}
.yf5{bottom:175.733333pt;}
.yae{bottom:178.400000pt;}
.y15c{bottom:179.733333pt;}
.y139{bottom:181.066667pt;}
.y113{bottom:191.066667pt;}
.yf4{bottom:193.400000pt;}
.y138{bottom:199.066667pt;}
.y15{bottom:204.066667pt;}
.y8f{bottom:208.400000pt;}
.y112{bottom:209.066667pt;}
.yad{bottom:210.733333pt;}
.yf3{bottom:211.400000pt;}
.y137{bottom:216.733333pt;}
.y15b{bottom:218.400000pt;}
.y111{bottom:227.066667pt;}
.yf2{bottom:229.400000pt;}
.y14{bottom:234.066667pt;}
.y136{bottom:235.400000pt;}
.y8e{bottom:237.400000pt;}
.y110{bottom:245.733333pt;}
.yac{bottom:247.066667pt;}
.y45{bottom:248.733333pt;}
.y15a{bottom:249.733333pt;}
.y135{bottom:254.066667pt;}
.y62{bottom:255.733333pt;}
.y13{bottom:264.066667pt;}
.y10f{bottom:264.400000pt;}
.yf1{bottom:265.066667pt;}
.y8d{bottom:266.400000pt;}
.y134{bottom:272.106667pt;}
.y44{bottom:279.440000pt;}
.yf0{bottom:283.106667pt;}
.y159{bottom:283.773333pt;}
.y61{bottom:285.773333pt;}
.y133{bottom:290.106667pt;}
.y12{bottom:294.106667pt;}
.y8c{bottom:295.440000pt;}
.yef{bottom:301.106667pt;}
.y158{bottom:303.106667pt;}
.y132{bottom:308.106667pt;}
.y43{bottom:310.106667pt;}
.ye4{bottom:315.440000pt;}
.y60{bottom:315.773333pt;}
.yee{bottom:318.773333pt;}
.y157{bottom:322.440000pt;}
.y11{bottom:324.106667pt;}
.y8b{bottom:324.440000pt;}
.y131{bottom:325.773333pt;}
.ye3{bottom:333.440000pt;}
.yab{bottom:335.106667pt;}
.yed{bottom:336.773333pt;}
.y41{bottom:340.773333pt;}
.y156{bottom:341.773333pt;}
.y5f{bottom:345.773333pt;}
.ye2{bottom:351.440000pt;}
.y8a{bottom:353.773333pt;}
.y10{bottom:354.106667pt;}
.yaa{bottom:354.440000pt;}
.yec{bottom:354.773333pt;}
.y130{bottom:357.106667pt;}
.y5e{bottom:360.440000pt;}
.y155{bottom:361.106667pt;}
.ye1{bottom:369.106667pt;}
.y3f{bottom:371.440000pt;}
.yeb{bottom:372.440000pt;}
.yc9{bottom:373.440000pt;}
.ya9{bottom:373.760000pt;}
.y5d{bottom:380.466667pt;}
.y89{bottom:382.800000pt;}
.yf{bottom:384.133333pt;}
.ye0{bottom:387.133333pt;}
.yea{bottom:390.466667pt;}
.y12f{bottom:391.133333pt;}
.y154{bottom:392.133333pt;}
.ya8{bottom:393.133333pt;}
.y77{bottom:400.133333pt;}
.y5c{bottom:400.800000pt;}
.yc8{bottom:403.466667pt;}
.ydf{bottom:405.133333pt;}
.ye9{bottom:408.466667pt;}
.y10e{bottom:409.133333pt;}
.y12e{bottom:410.466667pt;}
.y88{bottom:411.800000pt;}
.ye{bottom:414.133333pt;}
.y3e{bottom:418.133333pt;}
.y76{bottom:419.466667pt;}
.y5b{bottom:421.133333pt;}
.yc7{bottom:422.800000pt;}
.ya7{bottom:425.466667pt;}
.ye8{bottom:426.466667pt;}
.y10d{bottom:427.133333pt;}
.y12d{bottom:428.466667pt;}
.y153{bottom:428.800000pt;}
.y75{bottom:438.800000pt;}
.y87{bottom:440.800000pt;}
.y5a{bottom:441.133333pt;}
.yd{bottom:444.133333pt;}
.y10c{bottom:445.800000pt;}
.y12c{bottom:446.133333pt;}
.y3d{bottom:448.466667pt;}
.yc6{bottom:452.800000pt;}
.ye7{bottom:457.466667pt;}
.y74{bottom:458.133333pt;}
.yde{bottom:458.800000pt;}
.y58{bottom:461.466667pt;}
.ya6{bottom:461.800000pt;}
.y10b{bottom:463.800000pt;}
.y12b{bottom:464.133333pt;}
.y152{bottom:465.133333pt;}
.yc5{bottom:472.133333pt;}
.yc{bottom:474.133333pt;}
.ydd{bottom:476.800000pt;}
.y73{bottom:477.466667pt;}
.y86{bottom:478.133333pt;}
.ya5{bottom:481.173333pt;}
.y10a{bottom:481.506667pt;}
.y12a{bottom:482.173333pt;}
.y3c{bottom:483.506667pt;}
.y151{bottom:484.506667pt;}
.yc4{bottom:491.506667pt;}
.ye6{bottom:492.173333pt;}
.ydc{bottom:494.506667pt;}
.y72{bottom:496.840000pt;}
.y109{bottom:499.506667pt;}
.y129{bottom:500.173333pt;}
.ya4{bottom:500.506667pt;}
.y57{bottom:501.173333pt;}
.y150{bottom:503.840000pt;}
.yb{bottom:504.173333pt;}
.y85{bottom:507.173333pt;}
.ydb{bottom:512.506667pt;}
.y3b{bottom:513.506667pt;}
.ye5{bottom:515.506667pt;}
.y128{bottom:517.840000pt;}
.y56{bottom:521.506667pt;}
.y14f{bottom:523.173333pt;}
.yc3{bottom:523.840000pt;}
.y71{bottom:526.506667pt;}
.y3a{bottom:528.173333pt;}
.ya3{bottom:530.506667pt;}
.y108{bottom:530.840000pt;}
.ya{bottom:534.173333pt;}
.y127{bottom:535.840000pt;}
.y84{bottom:536.173333pt;}
.y14e{bottom:542.506667pt;}
.y70{bottom:545.840000pt;}
.y39{bottom:548.173333pt;}
.ya2{bottom:549.840000pt;}
.y16c{bottom:553.506667pt;}
.y126{bottom:554.506667pt;}
.y55{bottom:557.840000pt;}
.yc2{bottom:560.173333pt;}
.y14d{bottom:561.840000pt;}
.y9{bottom:564.173333pt;}
.y107{bottom:564.840000pt;}
.y6f{bottom:565.173333pt;}
.yda{bottom:566.173333pt;}
.y38{bottom:568.506667pt;}
.ya1{bottom:569.173333pt;}
.y125{bottom:572.506667pt;}
.y16b{bottom:572.840000pt;}
.y14c{bottom:580.840000pt;}
.y54{bottom:582.506667pt;}
.yd9{bottom:584.173333pt;}
.y6e{bottom:584.506667pt;}
.y36{bottom:588.533333pt;}
.yc1{bottom:590.200000pt;}
.y124{bottom:591.200000pt;}
.y16a{bottom:592.200000pt;}
.y8{bottom:594.200000pt;}
.y83{bottom:594.533333pt;}
.y14b{bottom:600.200000pt;}
.yd8{bottom:602.200000pt;}
.y106{bottom:603.200000pt;}
.y53{bottom:606.866667pt;}
.ya0{bottom:607.866667pt;}
.yc0{bottom:609.533333pt;}
.y123{bottom:609.866667pt;}
.y169{bottom:611.533333pt;}
.y34{bottom:613.200000pt;}
.y6d{bottom:614.533333pt;}
.yd7{bottom:619.866667pt;}
.y105{bottom:621.200000pt;}
.y82{bottom:623.533333pt;}
.y7{bottom:625.200000pt;}
.y9f{bottom:626.866667pt;}
.y122{bottom:627.866667pt;}
.ybf{bottom:628.866667pt;}
.y14a{bottom:632.866667pt;}
.y6c{bottom:633.866667pt;}
.y52{bottom:636.866667pt;}
.yd6{bottom:637.866667pt;}
.y104{bottom:639.200000pt;}
.y168{bottom:643.866667pt;}
.y121{bottom:645.533333pt;}
.ybe{bottom:648.200000pt;}
.y50{bottom:651.533333pt;}
.y81{bottom:652.533333pt;}
.y33{bottom:652.866667pt;}
.y6b{bottom:653.200000pt;}
.yd5{bottom:655.866667pt;}
.y9e{bottom:656.866667pt;}
.y103{bottom:657.200000pt;}
.y120{bottom:663.533333pt;}
.y6{bottom:664.200000pt;}
.y149{bottom:669.866667pt;}
.y31{bottom:673.200000pt;}
.yd4{bottom:673.533333pt;}
.y102{bottom:675.200000pt;}
.y9d{bottom:676.200000pt;}
.y147{bottom:677.866667pt;}
.ybd{bottom:678.200000pt;}
.y167{bottom:680.200000pt;}
.y80{bottom:681.533333pt;}
.y6a{bottom:683.200000pt;}
.y4f{bottom:691.560000pt;}
.yd3{bottom:691.573333pt;}
.y101{bottom:692.893333pt;}
.y148{bottom:693.226667pt;}
.y11f{bottom:694.573333pt;}
.y9c{bottom:695.560000pt;}
.y30{bottom:696.893333pt;}
.ybc{bottom:697.573333pt;}
.y166{bottom:699.560000pt;}
.y5{bottom:702.226667pt;}
.y69{bottom:702.560000pt;}
.y146{bottom:707.893333pt;}
.yd2{bottom:709.573333pt;}
.y100{bottom:711.560000pt;}
.y9b{bottom:714.893333pt;}
.ybb{bottom:716.893333pt;}
.y7f{bottom:718.893333pt;}
.yd1{bottom:727.226667pt;}
.y11e{bottom:728.560000pt;}
.yff{bottom:729.560000pt;}
.y165{bottom:730.893333pt;}
.y4a{bottom:731.240000pt;}
.y68{bottom:732.560000pt;}
.y2f{bottom:732.893333pt;}
.y4{bottom:733.226667pt;}
.y9a{bottom:734.226667pt;}
.yd0{bottom:745.226667pt;}
.y11d{bottom:746.560000pt;}
.yba{bottom:746.893333pt;}
.y2d{bottom:747.560000pt;}
.y7e{bottom:747.893333pt;}
.yfe{bottom:748.226667pt;}
.y67{bottom:751.893333pt;}
.y99{bottom:753.560000pt;}
.ycf{bottom:763.226667pt;}
.y145{bottom:763.893333pt;}
.y11c{bottom:764.560000pt;}
.yb9{bottom:766.226667pt;}
.y2c{bottom:768.226667pt;}
.y66{bottom:771.226667pt;}
.y22{bottom:774.560000pt;}
.yce{bottom:781.226667pt;}
.y144{bottom:781.893333pt;}
.y11b{bottom:782.560000pt;}
.y98{bottom:783.560000pt;}
.y164{bottom:783.893333pt;}
.y7d{bottom:784.893333pt;}
.yb8{bottom:785.560000pt;}
.y2a{bottom:788.573333pt;}
.ycd{bottom:798.933333pt;}
.y143{bottom:799.600000pt;}
.y11a{bottom:800.600000pt;}
.y65{bottom:801.266667pt;}
.y97{bottom:802.933333pt;}
.y163{bottom:803.266667pt;}
.y21{bottom:804.600000pt;}
.yb7{bottom:804.933333pt;}
.y29{bottom:808.600000pt;}
.y7c{bottom:813.933333pt;}
.ycc{bottom:816.933333pt;}
.y142{bottom:817.600000pt;}
.y119{bottom:819.266667pt;}
.y64{bottom:820.600000pt;}
.y96{bottom:822.266667pt;}
.y162{bottom:822.600000pt;}
.y28{bottom:828.933333pt;}
.y49{bottom:829.600000pt;}
.y20{bottom:834.933333pt;}
.y118{bottom:836.933333pt;}
.yfd{bottom:838.600000pt;}
.y7b{bottom:842.933333pt;}
.y27{bottom:849.266667pt;}
.y48{bottom:849.600000pt;}
.y63{bottom:850.600000pt;}
.y161{bottom:853.933333pt;}
.yb6{bottom:854.266667pt;}
.y95{bottom:854.600000pt;}
.y117{bottom:855.600000pt;}
.yfc{bottom:856.600000pt;}
.ycb{bottom:867.266667pt;}
.y26{bottom:869.266667pt;}
.y1f{bottom:870.266667pt;}
.y141{bottom:871.933333pt;}
.y7a{bottom:872.266667pt;}
.yfb{bottom:874.266667pt;}
.y3{bottom:880.933333pt;}
.yb5{bottom:884.266667pt;}
.y47{bottom:886.266667pt;}
.y160{bottom:887.933333pt;}
.y25{bottom:889.600000pt;}
.y140{bottom:889.933333pt;}
.yfa{bottom:892.266667pt;}
.y94{bottom:893.600000pt;}
.yb3{bottom:896.600000pt;}
.yb4{bottom:903.626667pt;}
.y1e{bottom:905.626667pt;}
.yca{bottom:905.960000pt;}
.y15f{bottom:907.293333pt;}
.y13f{bottom:908.626667pt;}
.y79{bottom:909.293333pt;}
.y23{bottom:909.626667pt;}
.yf9{bottom:910.293333pt;}
.y46{bottom:910.960000pt;}
.y2{bottom:915.960000pt;}
.yb2{bottom:926.626667pt;}
.yf8{bottom:928.293333pt;}
.y93{bottom:935.960000pt;}
.y1d{bottom:940.960000pt;}
.y78{bottom:944.626667pt;}
.y13e{bottom:945.293333pt;}
.y1{bottom:945.960000pt;}
.y19{bottom:993.293333pt;}
.h4{height:18.000000pt;}
.h9{height:19.333333pt;}
.ha{height:19.353333pt;}
.h8{height:19.366667pt;}
.hf{height:19.653333pt;}
.h6{height:19.666667pt;}
.hb{height:20.000000pt;}
.hc{height:23.033333pt;}
.he{height:24.000000pt;}
.h11{height:30.000000pt;}
.h10{height:30.033333pt;}
.h1c{height:36.492188pt;}
.hd{height:39.000000pt;}
.h14{height:39.033333pt;}
.h13{height:39.366667pt;}
.h1{height:44.601562pt;}
.h1b{height:47.195312pt;}
.h7{height:48.656250pt;}
.h18{height:54.609375pt;}
.h2{height:56.000000pt;}
.h1e{height:58.351562pt;}
.h1f{height:60.070312pt;}
.h5{height:60.300089pt;}
.h17{height:63.656250pt;}
.h3{height:64.000000pt;}
.h15{height:65.531250pt;}
.h16{height:72.000000pt;}
.h1d{height:76.745567pt;}
.h1a{height:87.709220pt;}
.h12{height:97.686667pt;}
.h19{height:99.937500pt;}
.h0{height:1056.000000pt;}
.w12{width:6.333333pt;}
.w3{width:6.666667pt;}
.w10{width:7.000000pt;}
.w2{width:7.333333pt;}
.w11{width:7.666667pt;}
.w14{width:13.000000pt;}
.w15{width:13.666667pt;}
.w13{width:14.000000pt;}
.w8{width:26.366667pt;}
.wa{width:74.366667pt;}
.wb{width:101.700000pt;}
.wc{width:136.066667pt;}
.we{width:136.733333pt;}
.w4{width:205.440000pt;}
.w6{width:207.106667pt;}
.wd{width:308.800000pt;}
.w7{width:433.173333pt;}
.w5{width:446.506667pt;}
.wf{width:485.533333pt;}
.w9{width:596.573333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.000000pt;}
.x1{left:96.033321pt;}
.xd{left:110.699988pt;}
.xf{left:120.066655pt;}
.x8{left:123.733333pt;}
.xe{left:125.399988pt;}
.x12{left:133.733321pt;}
.x14{left:144.066655pt;}
.x13{left:157.733321pt;}
.x15{left:168.066655pt;}
.x9{left:171.733333pt;}
.x10{left:192.066655pt;}
.xc{left:234.106667pt;}
.xa{left:274.106667pt;}
.x3{left:281.799988pt;}
.x6{left:302.800000pt;}
.x7{left:304.466667pt;}
.xb{left:410.840000pt;}
.x2{left:452.533321pt;}
.x11{left:640.266655pt;}
.x16{left:720.306655pt;}
.x4{left:780.333333pt;}
}




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