
    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_876fe1b0f851bd60fa792a36.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a1ed0cc2a124ab076de1efe7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ebcad019fb25d1b3111b50a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f2d4abe50beb1b30a7efb7f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.283203;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_ee65db4c53e713c04a8c2de4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;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_c3c74e20ea412e07ebaa18ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;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_8a6e17657bc7dec390dff3c0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b2a8116a95bd40f3761bd58e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f8e923b16dfe8ac8b4c5b51d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.767090;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_de99b80cfd9fe5e093a0e271.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d50b84be1040e15cad2e4670.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.996000;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_c627b322d2a7ac9d39792ca0.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:36.000000px;}
.ls13{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.504000px;}
.ls1c{letter-spacing:-0.320400px;}
.ls1{letter-spacing:-0.229800px;}
.lsd{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.205800px;}
.ls2{letter-spacing:-0.172200px;}
.lsa{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.115200px;}
.ls19{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.049680px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.218400px;}
.ls12{letter-spacing:0.256200px;}
.ls4{letter-spacing:0.256320px;}
.ls3{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.lse{letter-spacing:1.728000px;}
.ls10{letter-spacing:16.140000px;}
.ls11{letter-spacing:21.792000px;}
.ls1e{letter-spacing:39.881280px;}
.ls1d{letter-spacing:54.864000px;}
.ls9{letter-spacing:74.309760px;}
.lsf{letter-spacing:847.884000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws16{word-spacing:-72.000000px;}
.ws18{word-spacing:-66.240000px;}
.wsd{word-spacing:-24.408000px;}
.ws1{word-spacing:-18.866040px;}
.ws0{word-spacing:-18.808440px;}
.ws4{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.416000px;}
.ws9{word-spacing:-16.344000px;}
.ws6{word-spacing:-16.272000px;}
.ws7{word-spacing:-16.128000px;}
.wsb{word-spacing:-16.056000px;}
.ws3{word-spacing:-15.768000px;}
.ws17{word-spacing:-15.552000px;}
.wsc{word-spacing:-15.226440px;}
.ws10{word-spacing:-13.599360px;}
.wsf{word-spacing:-13.505760px;}
.ws13{word-spacing:-13.456080px;}
.ws11{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.396560px;}
.ws14{word-spacing:-13.390560px;}
.wse{word-spacing:-13.299960px;}
.ws15{word-spacing:-10.581840px;}
.ws2{word-spacing:0.000000px;}
._17{margin-left:-14.676000px;}
._16{margin-left:-13.380000px;}
._12{margin-left:-11.532000px;}
._18{margin-left:-10.356000px;}
._11{margin-left:-9.132000px;}
._15{margin-left:-7.488960px;}
._13{margin-left:-5.748000px;}
._14{margin-left:-4.344000px;}
._10{margin-left:-2.727600px;}
._3{margin-left:-1.263600px;}
._2{width:1.068960px;}
._d{width:2.911200px;}
._b{width:4.188000px;}
._a{width:5.400000px;}
._9{width:6.909840px;}
._8{width:8.064000px;}
._e{width:9.504000px;}
._1b{width:10.850640px;}
._1e{width:12.370800px;}
._1a{width:13.824000px;}
._19{width:14.904000px;}
._28{width:17.280000px;}
._c{width:18.936000px;}
._1f{width:20.470080px;}
._29{width:21.600000px;}
._26{width:22.752000px;}
._1c{width:24.192000px;}
._1d{width:25.417680px;}
._25{width:26.431200px;}
._24{width:27.648000px;}
._21{width:29.023200px;}
._20{width:30.072000px;}
._22{width:32.040000px;}
._23{width:33.480000px;}
._5{width:125.424000px;}
._0{width:199.704000px;}
._1{width:348.228000px;}
._7{width:729.228000px;}
._4{width:845.117760px;}
._f{width:847.884000px;}
._27{width:849.209760px;}
._6{width:991.272000px;}
.fc5{color:rgb(49,64,87);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(239,119,32);}
.fc2{color:rgb(202,187,72);}
.fc1{color:rgb(214,24,87);}
.fc0{color:rgb(30,43,61);}
.fs4{font-size:43.200000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs5{font-size:90.000000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:131.760000px;}
.fs2{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:2.700000px;}
.ybe{bottom:3.960000px;}
.yd7{bottom:4.140000px;}
.yd8{bottom:4.320000px;}
.y2a{bottom:4.860000px;}
.ye7{bottom:5.580000px;}
.ydb{bottom:5.760000px;}
.yc6{bottom:5.940000px;}
.y66{bottom:6.660000px;}
.yf9{bottom:9.540000px;}
.y5e{bottom:10.800000px;}
.y60{bottom:10.980000px;}
.yc0{bottom:13.140000px;}
.ycf{bottom:14.040000px;}
.yfb{bottom:14.085000px;}
.yc4{bottom:14.220000px;}
.y14{bottom:15.120000px;}
.y35{bottom:15.150000px;}
.y12{bottom:15.300000px;}
.y2c{bottom:15.840000px;}
.y13f{bottom:16.380000px;}
.ybd{bottom:22.140000px;}
.yc9{bottom:22.320000px;}
.yda{bottom:24.120000px;}
.yf2{bottom:24.150000px;}
.yfc{bottom:24.165000px;}
.yc5{bottom:24.300000px;}
.y33{bottom:26.460000px;}
.y28{bottom:26.820000px;}
.y145{bottom:26.850000px;}
.y13a{bottom:26.865000px;}
.y140{bottom:27.000000px;}
.y163{bottom:27.030000px;}
.y13c{bottom:27.360000px;}
.ycb{bottom:31.320000px;}
.yf6{bottom:31.500000px;}
.y148{bottom:37.830000px;}
.ycd{bottom:40.500000px;}
.yd1{bottom:40.680000px;}
.y32{bottom:48.420000px;}
.y29{bottom:48.780000px;}
.y13d{bottom:48.960000px;}
.y162{bottom:48.990000px;}
.y153{bottom:49.320000px;}
.y142{bottom:49.710000px;}
.y39{bottom:51.120000px;}
.yd{bottom:57.240000px;}
.ycc{bottom:58.860000px;}
.y147{bottom:60.690000px;}
.y3{bottom:62.280000px;}
.y161{bottom:70.950000px;}
.y152{bottom:71.280000px;}
.y14f{bottom:71.640000px;}
.y144{bottom:71.670000px;}
.y38{bottom:73.080000px;}
.y146{bottom:82.830000px;}
.y14a{bottom:83.160000px;}
.y160{bottom:92.910000px;}
.y14e{bottom:93.780000px;}
.y143{bottom:93.810000px;}
.y151{bottom:94.140000px;}
.y15f{bottom:115.770000px;}
.y150{bottom:116.100000px;}
.y157{bottom:116.310000px;}
.y14d{bottom:116.640000px;}
.y15e{bottom:137.730000px;}
.y156{bottom:138.270000px;}
.y14c{bottom:138.600000px;}
.y15d{bottom:159.690000px;}
.y155{bottom:160.230000px;}
.y14b{bottom:160.560000px;}
.y165{bottom:181.650000px;}
.y15c{bottom:181.830000px;}
.y154{bottom:186.840000px;}
.y11c{bottom:188.820000px;}
.y90{bottom:196.920000px;}
.yb7{bottom:201.090000px;}
.y164{bottom:203.790000px;}
.y103{bottom:204.510000px;}
.y15b{bottom:204.690000px;}
.y11b{bottom:210.810000px;}
.ye1{bottom:211.890000px;}
.y173{bottom:216.030000px;}
.yb6{bottom:223.050000px;}
.y102{bottom:226.470000px;}
.y15a{bottom:226.650000px;}
.y8f{bottom:227.550000px;}
.y11a{bottom:232.770000px;}
.y172{bottom:237.990000px;}
.yb5{bottom:245.010000px;}
.y101{bottom:245.910000px;}
.y159{bottom:248.610000px;}
.y8e{bottom:249.690000px;}
.y119{bottom:254.730000px;}
.y171{bottom:259.950000px;}
.yb4{bottom:266.970000px;}
.ye0{bottom:269.130000px;}
.y158{bottom:270.615000px;}
.y8d{bottom:271.650000px;}
.y118{bottom:276.690000px;}
.y170{bottom:281.910000px;}
.y100{bottom:286.770000px;}
.yb3{bottom:288.930000px;}
.y8c{bottom:293.610000px;}
.y117{bottom:298.650000px;}
.y16f{bottom:303.870000px;}
.yb2{bottom:310.890000px;}
.ydf{bottom:311.250000px;}
.y8b{bottom:315.570000px;}
.y3c{bottom:319.530000px;}
.y116{bottom:320.610000px;}
.y16e{bottom:325.830000px;}
.yff{bottom:327.450000px;}
.yb1{bottom:332.850000px;}
.yde{bottom:333.210000px;}
.y8a{bottom:337.530000px;}
.y115{bottom:342.570000px;}
.y16d{bottom:347.970000px;}
.ydd{bottom:352.650000px;}
.yb0{bottom:354.810000px;}
.y89{bottom:359.490000px;}
.y114{bottom:364.530000px;}
.yfe{bottom:368.310000px;}
.y16c{bottom:369.930000px;}
.ydc{bottom:373.170000px;}
.y88{bottom:381.450000px;}
.y113{bottom:386.490000px;}
.yfd{bottom:388.830000px;}
.yaf{bottom:391.890000px;}
.y132{bottom:400.170000px;}
.y87{bottom:403.410000px;}
.y112{bottom:408.450000px;}
.yae{bottom:413.850000px;}
.yd9{bottom:414.030000px;}
.y86{bottom:425.370000px;}
.yfa{bottom:429.690000px;}
.y111{bottom:430.410000px;}
.yad{bottom:435.810000px;}
.y37{bottom:439.455000px;}
.y9{bottom:444.675000px;}
.y85{bottom:447.375000px;}
.y110{bottom:452.415000px;}
.yd6{bottom:454.755000px;}
.yac{bottom:457.815000px;}
.y54{bottom:460.335000px;}
.y84{bottom:469.335000px;}
.yf8{bottom:470.595000px;}
.y131{bottom:472.755000px;}
.y10f{bottom:474.555000px;}
.y8{bottom:475.455000px;}
.yd5{bottom:475.635000px;}
.y149{bottom:477.795000px;}
.yab{bottom:479.775000px;}
.y3b{bottom:485.715000px;}
.y83{bottom:491.295000px;}
.y130{bottom:494.715000px;}
.yf7{bottom:496.695000px;}
.y10e{bottom:498.855000px;}
.yaa{bottom:501.735000px;}
.y7{bottom:506.235000px;}
.y53{bottom:511.635000px;}
.y82{bottom:513.255000px;}
.y12f{bottom:516.675000px;}
.yd4{bottom:517.935000px;}
.ya9{bottom:523.695000px;}
.y10d{bottom:529.455000px;}
.y3a{bottom:531.795000px;}
.y17c{bottom:533.235000px;}
.y81{bottom:535.215000px;}
.y6{bottom:537.015000px;}
.yf5{bottom:537.555000px;}
.y12e{bottom:538.635000px;}
.yd3{bottom:539.895000px;}
.y52{bottom:540.975000px;}
.ya8{bottom:545.655000px;}
.y10c{bottom:551.055000px;}
.y80{bottom:557.355000px;}
.yd2{bottom:559.155000px;}
.y12d{bottom:560.595000px;}
.y17b{bottom:566.175000px;}
.y10b{bottom:566.715000px;}
.y51{bottom:570.495000px;}
.y7f{bottom:579.315000px;}
.ya7{bottom:582.735000px;}
.y36{bottom:597.855000px;}
.y5{bottom:598.575000px;}
.y17a{bottom:599.115000px;}
.y50{bottom:600.015000px;}
.y7e{bottom:601.275000px;}
.ya6{bottom:604.695000px;}
.yf4{bottom:612.975000px;}
.y31{bottom:617.295000px;}
.y16b{bottom:619.635000px;}
.y7d{bottom:623.235000px;}
.ya5{bottom:626.655000px;}
.y4f{bottom:629.535000px;}
.y6a{bottom:629.895000px;}
.y179{bottom:632.055000px;}
.yf3{bottom:633.675000px;}
.y10{bottom:634.035000px;}
.y16a{bottom:641.595000px;}
.y7c{bottom:647.535000px;}
.ya4{bottom:648.615000px;}
.y4{bottom:649.875000px;}
.yf1{bottom:654.195000px;}
.yd0{bottom:657.255000px;}
.y141{bottom:658.695000px;}
.y4e{bottom:658.875000px;}
.y34{bottom:662.115000px;}
.y169{bottom:663.555000px;}
.y178{bottom:670.215000px;}
.ya3{bottom:670.575000px;}
.yce{bottom:677.805000px;}
.y12c{bottom:685.545000px;}
.y7b{bottom:688.245000px;}
.y4d{bottom:688.425000px;}
.ya2{bottom:692.565000px;}
.yf0{bottom:695.085000px;}
.y12b{bottom:707.505000px;}
.ya1{bottom:714.525000px;}
.yef{bottom:715.605000px;}
.y4c{bottom:717.945000px;}
.yca{bottom:718.665000px;}
.y30{bottom:726.765000px;}
.y12a{bottom:729.465000px;}
.ya0{bottom:736.485000px;}
.y177{bottom:737.565000px;}
.y2f{bottom:746.025000px;}
.y4b{bottom:747.465000px;}
.y69{bottom:749.985000px;}
.y129{bottom:751.425000px;}
.y7a{bottom:751.785000px;}
.y18{bottom:754.125000px;}
.y5c{bottom:754.485000px;}
.y9f{bottom:758.445000px;}
.y176{bottom:770.505000px;}
.y13e{bottom:772.665000px;}
.y128{bottom:773.385000px;}
.y79{bottom:773.745000px;}
.yee{bottom:775.005000px;}
.y5b{bottom:776.445000px;}
.y4a{bottom:776.805000px;}
.y68{bottom:777.705000px;}
.y9e{bottom:782.745000px;}
.yc8{bottom:794.085000px;}
.yed{bottom:795.525000px;}
.y78{bottom:795.705000px;}
.y17{bottom:798.765000px;}
.y24{bottom:802.005000px;}
.y175{bottom:803.445000px;}
.y67{bottom:805.425000px;}
.y5a{bottom:805.965000px;}
.y49{bottom:806.325000px;}
.y2e{bottom:810.645000px;}
.yec{bottom:816.045000px;}
.y127{bottom:817.485000px;}
.y77{bottom:817.665000px;}
.y13b{bottom:819.825000px;}
.y23{bottom:823.965000px;}
.y9d{bottom:828.465000px;}
.y2d{bottom:830.085000px;}
.yc7{bottom:832.965000px;}
.y65{bottom:833.145000px;}
.y48{bottom:835.845000px;}
.yeb{bottom:836.745000px;}
.y126{bottom:839.445000px;}
.y76{bottom:839.625000px;}
.y174{bottom:841.605000px;}
.y168{bottom:841.785000px;}
.y16{bottom:843.585000px;}
.y22{bottom:845.925000px;}
.y9c{bottom:850.425000px;}
.yc3{bottom:853.485000px;}
.yea{bottom:857.265000px;}
.y64{bottom:861.045000px;}
.y125{bottom:861.405000px;}
.y75{bottom:861.585000px;}
.y47{bottom:865.365000px;}
.y9b{bottom:872.385000px;}
.y2b{bottom:874.905000px;}
.ye9{bottom:877.785000px;}
.y124{bottom:883.365000px;}
.y74{bottom:883.545000px;}
.y21{bottom:885.885000px;}
.y167{bottom:887.325000px;}
.y15{bottom:888.405000px;}
.y139{bottom:888.945000px;}
.y9a{bottom:894.345000px;}
.y46{bottom:894.705000px;}
.y63{bottom:897.225000px;}
.y123{bottom:905.325000px;}
.y73{bottom:905.685000px;}
.y20{bottom:907.845000px;}
.y166{bottom:909.285000px;}
.y59{bottom:914.370000px;}
.yc2{bottom:914.910000px;}
.ye8{bottom:918.690000px;}
.y10a{bottom:920.310000px;}
.y27{bottom:921.030000px;}
.y45{bottom:924.270000px;}
.y122{bottom:927.330000px;}
.y72{bottom:927.690000px;}
.y1f{bottom:929.850000px;}
.y99{bottom:931.290000px;}
.y13{bottom:933.270000px;}
.y62{bottom:933.630000px;}
.yc1{bottom:935.430000px;}
.y138{bottom:938.670000px;}
.ye6{bottom:939.210000px;}
.y109{bottom:942.270000px;}
.y58{bottom:943.890000px;}
.y121{bottom:949.290000px;}
.y71{bottom:949.650000px;}
.y1e{bottom:951.810000px;}
.y98{bottom:953.250000px;}
.y44{bottom:953.790000px;}
.ybf{bottom:956.130000px;}
.y137{bottom:960.630000px;}
.ye5{bottom:961.350000px;}
.y108{bottom:964.230000px;}
.y61{bottom:969.990000px;}
.y120{bottom:971.250000px;}
.y70{bottom:971.610000px;}
.y57{bottom:973.230000px;}
.y3f{bottom:973.590000px;}
.y1d{bottom:973.770000px;}
.y97{bottom:975.210000px;}
.y11{bottom:977.910000px;}
.y136{bottom:982.590000px;}
.y43{bottom:983.130000px;}
.y107{bottom:986.190000px;}
.y26{bottom:989.250000px;}
.y11f{bottom:993.210000px;}
.y6f{bottom:993.570000px;}
.ybc{bottom:995.010000px;}
.y1c{bottom:995.730000px;}
.y96{bottom:997.170000px;}
.ye4{bottom:1000.230000px;}
.y56{bottom:1002.750000px;}
.y135{bottom:1004.550000px;}
.y5f{bottom:1006.170000px;}
.y106{bottom:1008.150000px;}
.y42{bottom:1012.650000px;}
.y11e{bottom:1015.170000px;}
.y6e{bottom:1015.530000px;}
.y1b{bottom:1017.690000px;}
.y95{bottom:1019.310000px;}
.ye3{bottom:1020.750000px;}
.y3e{bottom:1024.710000px;}
.y134{bottom:1026.510000px;}
.y105{bottom:1030.290000px;}
.y55{bottom:1032.270000px;}
.y25{bottom:1034.070000px;}
.ybb{bottom:1037.130000px;}
.y6d{bottom:1037.490000px;}
.y1a{bottom:1039.650000px;}
.y94{bottom:1041.270000px;}
.y41{bottom:1042.170000px;}
.y5d{bottom:1042.530000px;}
.y3d{bottom:1046.850000px;}
.y133{bottom:1050.810000px;}
.y104{bottom:1052.250000px;}
.y11d{bottom:1059.090000px;}
.y6c{bottom:1059.450000px;}
.y19{bottom:1061.790000px;}
.y93{bottom:1063.230000px;}
.y40{bottom:1071.150000px;}
.yba{bottom:1074.210000px;}
.ye2{bottom:1077.990000px;}
.y92{bottom:1085.190000px;}
.yb9{bottom:1096.170000px;}
.y6b{bottom:1106.430000px;}
.y91{bottom:1109.490000px;}
.y2{bottom:1114.890000px;}
.yb8{bottom:1118.130000px;}
.y1{bottom:1145.490000px;}
.yc{bottom:1157.220000px;}
.ye{bottom:1176.300000px;}
.yb{bottom:1178.280000px;}
.ya{bottom:1200.299100px;}
.h27{height:18.180000px;}
.h1d{height:18.360000px;}
.h23{height:18.720000px;}
.h26{height:19.980000px;}
.h9{height:23.760000px;}
.h28{height:23.940000px;}
.h16{height:25.560000px;}
.h14{height:34.020000px;}
.h15{height:34.056000px;}
.h1a{height:36.540000px;}
.h1f{height:36.720000px;}
.h1e{height:38.520000px;}
.h24{height:38.556000px;}
.h22{height:38.700000px;}
.h6{height:42.335156px;}
.hc{height:42.480000px;}
.hd{height:42.516000px;}
.ha{height:42.660000px;}
.h13{height:43.920000px;}
.h10{height:43.956000px;}
.h2c{height:45.000000px;}
.he{height:54.421875px;}
.h21{height:54.900000px;}
.h25{height:55.080000px;}
.h1b{height:59.439023px;}
.h1c{height:61.189805px;}
.hf{height:65.880000px;}
.h2{height:65.884219px;}
.h2a{height:66.960000px;}
.h3{height:71.613281px;}
.h29{height:71.740898px;}
.h20{height:73.260000px;}
.hb{height:73.722656px;}
.h2b{height:74.004654px;}
.h8{height:79.740000px;}
.h5{height:86.255508px;}
.h11{height:87.336000px;}
.h30{height:89.516602px;}
.h7{height:101.884219px;}
.h18{height:107.419922px;}
.h19{height:111.006981px;}
.h2d{height:111.816000px;}
.h17{height:135.428517px;}
.h12{height:136.260000px;}
.h4{height:166.858945px;}
.h2e{height:178.560000px;}
.h2f{height:288.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:44.460000px;}
.w12{width:46.440000px;}
.w22{width:46.620000px;}
.w1e{width:47.340000px;}
.w1a{width:49.320000px;}
.w20{width:95.220000px;}
.w18{width:95.256000px;}
.w1c{width:97.380000px;}
.w14{width:97.596000px;}
.w27{width:103.356000px;}
.w24{width:105.696000px;}
.w2c{width:132.660000px;}
.w29{width:134.460000px;}
.w8{width:156.810000px;}
.we{width:175.350000px;}
.w4{width:197.850000px;}
.w17{width:204.330000px;}
.w13{width:206.490000px;}
.w2d{width:220.755000px;}
.w2a{width:222.915000px;}
.w26{width:228.990000px;}
.w23{width:231.150000px;}
.wb{width:241.950000px;}
.wd{width:245.010000px;}
.w3{width:246.495000px;}
.wa{width:250.635000px;}
.w10{width:252.390000px;}
.wf{width:252.975000px;}
.w21{width:253.515000px;}
.w1d{width:255.675000px;}
.w9{width:265.710000px;}
.w1f{width:268.635000px;}
.w1b{width:270.975000px;}
.w28{width:289.695000px;}
.w25{width:291.495000px;}
.w2e{width:308.415000px;}
.w2b{width:310.215000px;}
.w19{width:322.635000px;}
.w15{width:324.435000px;}
.w6{width:337.575000px;}
.w7{width:338.115000px;}
.w11{width:423.105000px;}
.wc{width:433.725000px;}
.w5{width:472.425000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:6.840000px;}
.x2e{left:8.100000px;}
.x51{left:12.780000px;}
.x2c{left:14.040000px;}
.x46{left:15.300000px;}
.xd{left:18.720000px;}
.x4a{left:19.800000px;}
.x2b{left:23.040000px;}
.x15{left:24.660000px;}
.x3c{left:26.820000px;}
.x43{left:28.260000px;}
.x39{left:30.060000px;}
.x58{left:31.860000px;}
.x34{left:33.660000px;}
.x3f{left:35.460000px;}
.x36{left:36.540000px;}
.x44{left:37.620000px;}
.x13{left:38.700000px;}
.xf{left:41.220000px;}
.x62{left:43.014000px;}
.x67{left:44.454000px;}
.x57{left:45.930000px;}
.x7{left:47.700000px;}
.x66{left:49.494000px;}
.x68{left:50.574000px;}
.x55{left:51.690000px;}
.x11{left:53.460000px;}
.x4f{left:54.720000px;}
.x19{left:57.420000px;}
.x64{left:61.065000px;}
.x38{left:62.280000px;}
.x37{left:63.720000px;}
.x8{left:65.196000px;}
.x3e{left:69.300000px;}
.x59{left:72.540000px;}
.x1e{left:74.370000px;}
.x4e{left:76.905000px;}
.x40{left:78.660000px;}
.x60{left:80.865000px;}
.x16{left:83.694000px;}
.x3b{left:85.500000px;}
.x3a{left:89.280000px;}
.x12{left:90.894000px;}
.x42{left:92.700000px;}
.x5b{left:94.860000px;}
.x5a{left:96.300000px;}
.x5c{left:102.285000px;}
.x24{left:103.674000px;}
.x3d{left:106.920000px;}
.x2{left:108.035987px;}
.x9{left:110.376000px;}
.x41{left:111.420000px;}
.x1f{left:115.194000px;}
.x22{left:116.814000px;}
.x1b{left:118.254000px;}
.x45{left:120.240000px;}
.x29{left:127.115987px;}
.x23{left:129.630000px;}
.x21{left:134.490000px;}
.x1d{left:136.470000px;}
.x27{left:138.270000px;}
.x25{left:142.770000px;}
.x1a{left:144.035987px;}
.x53{left:145.665000px;}
.x28{left:148.530000px;}
.x2d{left:155.910000px;}
.x32{left:156.990000px;}
.x26{left:158.610000px;}
.x47{left:159.690000px;}
.x4b{left:160.770000px;}
.x31{left:162.405000px;}
.x20{left:167.250000px;}
.x5d{left:204.509987px;}
.x5f{left:250.410000px;}
.x63{left:251.490000px;}
.xe{left:269.535000px;}
.x6{left:290.234987px;}
.xb{left:310.395000px;}
.x14{left:354.495000px;}
.x17{left:357.555000px;}
.x2f{left:362.415000px;}
.x33{left:363.675000px;}
.x1c{left:365.115000px;}
.x50{left:387.255000px;}
.x54{left:388.335000px;}
.x1{left:398.234987px;}
.x48{left:430.665000px;}
.x4c{left:431.745000px;}
.x5e{left:442.904987px;}
.xc{left:450.105000px;}
.x30{left:460.005000px;}
.x35{left:461.085000px;}
.x61{left:473.325000px;}
.x65{left:474.405000px;}
.x52{left:492.945000px;}
.x56{left:494.025000px;}
.x49{left:528.045000px;}
.x4d{left:529.305000px;}
.x18{left:535.245000px;}
.x10{left:537.585000px;}
.x3{left:675.356415px;}
.x2a{left:777.239987px;}
.x4{left:785.519987px;}
.x5{left:792.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:32.000000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.448000pt;}
.ls1c{letter-spacing:-0.284800pt;}
.ls1{letter-spacing:-0.204267pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.182933pt;}
.ls2{letter-spacing:-0.153067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.102400pt;}
.ls19{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.044160pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.194133pt;}
.ls12{letter-spacing:0.227733pt;}
.ls4{letter-spacing:0.227840pt;}
.ls3{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.lse{letter-spacing:1.536000pt;}
.ls10{letter-spacing:14.346667pt;}
.ls11{letter-spacing:19.370667pt;}
.ls1e{letter-spacing:35.450027pt;}
.ls1d{letter-spacing:48.768000pt;}
.ls9{letter-spacing:66.053120pt;}
.lsf{letter-spacing:753.674667pt;}
.ws16{word-spacing:-64.000000pt;}
.ws18{word-spacing:-58.880000pt;}
.wsd{word-spacing:-21.696000pt;}
.ws1{word-spacing:-16.769813pt;}
.ws0{word-spacing:-16.718613pt;}
.ws4{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.592000pt;}
.ws9{word-spacing:-14.528000pt;}
.ws6{word-spacing:-14.464000pt;}
.ws7{word-spacing:-14.336000pt;}
.wsb{word-spacing:-14.272000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws17{word-spacing:-13.824000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws10{word-spacing:-12.088320pt;}
.wsf{word-spacing:-12.005120pt;}
.ws13{word-spacing:-11.960960pt;}
.ws11{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.908053pt;}
.ws14{word-spacing:-11.902720pt;}
.wse{word-spacing:-11.822187pt;}
.ws15{word-spacing:-9.406080pt;}
.ws2{word-spacing:0.000000pt;}
._17{margin-left:-13.045333pt;}
._16{margin-left:-11.893333pt;}
._12{margin-left:-10.250667pt;}
._18{margin-left:-9.205333pt;}
._11{margin-left:-8.117333pt;}
._15{margin-left:-6.656853pt;}
._13{margin-left:-5.109333pt;}
._14{margin-left:-3.861333pt;}
._10{margin-left:-2.424533pt;}
._3{margin-left:-1.123200pt;}
._2{width:0.950187pt;}
._d{width:2.587733pt;}
._b{width:3.722667pt;}
._a{width:4.800000pt;}
._9{width:6.142080pt;}
._8{width:7.168000pt;}
._e{width:8.448000pt;}
._1b{width:9.645013pt;}
._1e{width:10.996267pt;}
._1a{width:12.288000pt;}
._19{width:13.248000pt;}
._28{width:15.360000pt;}
._c{width:16.832000pt;}
._1f{width:18.195627pt;}
._29{width:19.200000pt;}
._26{width:20.224000pt;}
._1c{width:21.504000pt;}
._1d{width:22.593493pt;}
._25{width:23.494400pt;}
._24{width:24.576000pt;}
._21{width:25.798400pt;}
._20{width:26.730667pt;}
._22{width:28.480000pt;}
._23{width:29.760000pt;}
._5{width:111.488000pt;}
._0{width:177.514667pt;}
._1{width:309.536000pt;}
._7{width:648.202667pt;}
._4{width:751.215787pt;}
._f{width:753.674667pt;}
._27{width:754.853120pt;}
._6{width:881.130667pt;}
.fs4{font-size:38.400000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs5{font-size:80.000000pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:117.120000pt;}
.fs2{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.400000pt;}
.ybe{bottom:3.520000pt;}
.yd7{bottom:3.680000pt;}
.yd8{bottom:3.840000pt;}
.y2a{bottom:4.320000pt;}
.ye7{bottom:4.960000pt;}
.ydb{bottom:5.120000pt;}
.yc6{bottom:5.280000pt;}
.y66{bottom:5.920000pt;}
.yf9{bottom:8.480000pt;}
.y5e{bottom:9.600000pt;}
.y60{bottom:9.760000pt;}
.yc0{bottom:11.680000pt;}
.ycf{bottom:12.480000pt;}
.yfb{bottom:12.520000pt;}
.yc4{bottom:12.640000pt;}
.y14{bottom:13.440000pt;}
.y35{bottom:13.466667pt;}
.y12{bottom:13.600000pt;}
.y2c{bottom:14.080000pt;}
.y13f{bottom:14.560000pt;}
.ybd{bottom:19.680000pt;}
.yc9{bottom:19.840000pt;}
.yda{bottom:21.440000pt;}
.yf2{bottom:21.466667pt;}
.yfc{bottom:21.480000pt;}
.yc5{bottom:21.600000pt;}
.y33{bottom:23.520000pt;}
.y28{bottom:23.840000pt;}
.y145{bottom:23.866667pt;}
.y13a{bottom:23.880000pt;}
.y140{bottom:24.000000pt;}
.y163{bottom:24.026667pt;}
.y13c{bottom:24.320000pt;}
.ycb{bottom:27.840000pt;}
.yf6{bottom:28.000000pt;}
.y148{bottom:33.626667pt;}
.ycd{bottom:36.000000pt;}
.yd1{bottom:36.160000pt;}
.y32{bottom:43.040000pt;}
.y29{bottom:43.360000pt;}
.y13d{bottom:43.520000pt;}
.y162{bottom:43.546667pt;}
.y153{bottom:43.840000pt;}
.y142{bottom:44.186667pt;}
.y39{bottom:45.440000pt;}
.yd{bottom:50.880000pt;}
.ycc{bottom:52.320000pt;}
.y147{bottom:53.946667pt;}
.y3{bottom:55.360000pt;}
.y161{bottom:63.066667pt;}
.y152{bottom:63.360000pt;}
.y14f{bottom:63.680000pt;}
.y144{bottom:63.706667pt;}
.y38{bottom:64.960000pt;}
.y146{bottom:73.626667pt;}
.y14a{bottom:73.920000pt;}
.y160{bottom:82.586667pt;}
.y14e{bottom:83.360000pt;}
.y143{bottom:83.386667pt;}
.y151{bottom:83.680000pt;}
.y15f{bottom:102.906667pt;}
.y150{bottom:103.200000pt;}
.y157{bottom:103.386667pt;}
.y14d{bottom:103.680000pt;}
.y15e{bottom:122.426667pt;}
.y156{bottom:122.906667pt;}
.y14c{bottom:123.200000pt;}
.y15d{bottom:141.946667pt;}
.y155{bottom:142.426667pt;}
.y14b{bottom:142.720000pt;}
.y165{bottom:161.466667pt;}
.y15c{bottom:161.626667pt;}
.y154{bottom:166.080000pt;}
.y11c{bottom:167.840000pt;}
.y90{bottom:175.040000pt;}
.yb7{bottom:178.746667pt;}
.y164{bottom:181.146667pt;}
.y103{bottom:181.786667pt;}
.y15b{bottom:181.946667pt;}
.y11b{bottom:187.386667pt;}
.ye1{bottom:188.346667pt;}
.y173{bottom:192.026667pt;}
.yb6{bottom:198.266667pt;}
.y102{bottom:201.306667pt;}
.y15a{bottom:201.466667pt;}
.y8f{bottom:202.266667pt;}
.y11a{bottom:206.906667pt;}
.y172{bottom:211.546667pt;}
.yb5{bottom:217.786667pt;}
.y101{bottom:218.586667pt;}
.y159{bottom:220.986667pt;}
.y8e{bottom:221.946667pt;}
.y119{bottom:226.426667pt;}
.y171{bottom:231.066667pt;}
.yb4{bottom:237.306667pt;}
.ye0{bottom:239.226667pt;}
.y158{bottom:240.546667pt;}
.y8d{bottom:241.466667pt;}
.y118{bottom:245.946667pt;}
.y170{bottom:250.586667pt;}
.y100{bottom:254.906667pt;}
.yb3{bottom:256.826667pt;}
.y8c{bottom:260.986667pt;}
.y117{bottom:265.466667pt;}
.y16f{bottom:270.106667pt;}
.yb2{bottom:276.346667pt;}
.ydf{bottom:276.666667pt;}
.y8b{bottom:280.506667pt;}
.y3c{bottom:284.026667pt;}
.y116{bottom:284.986667pt;}
.y16e{bottom:289.626667pt;}
.yff{bottom:291.066667pt;}
.yb1{bottom:295.866667pt;}
.yde{bottom:296.186667pt;}
.y8a{bottom:300.026667pt;}
.y115{bottom:304.506667pt;}
.y16d{bottom:309.306667pt;}
.ydd{bottom:313.466667pt;}
.yb0{bottom:315.386667pt;}
.y89{bottom:319.546667pt;}
.y114{bottom:324.026667pt;}
.yfe{bottom:327.386667pt;}
.y16c{bottom:328.826667pt;}
.ydc{bottom:331.706667pt;}
.y88{bottom:339.066667pt;}
.y113{bottom:343.546667pt;}
.yfd{bottom:345.626667pt;}
.yaf{bottom:348.346667pt;}
.y132{bottom:355.706667pt;}
.y87{bottom:358.586667pt;}
.y112{bottom:363.066667pt;}
.yae{bottom:367.866667pt;}
.yd9{bottom:368.026667pt;}
.y86{bottom:378.106667pt;}
.yfa{bottom:381.946667pt;}
.y111{bottom:382.586667pt;}
.yad{bottom:387.386667pt;}
.y37{bottom:390.626667pt;}
.y9{bottom:395.266667pt;}
.y85{bottom:397.666667pt;}
.y110{bottom:402.146667pt;}
.yd6{bottom:404.226667pt;}
.yac{bottom:406.946667pt;}
.y54{bottom:409.186667pt;}
.y84{bottom:417.186667pt;}
.yf8{bottom:418.306667pt;}
.y131{bottom:420.226667pt;}
.y10f{bottom:421.826667pt;}
.y8{bottom:422.626667pt;}
.yd5{bottom:422.786667pt;}
.y149{bottom:424.706667pt;}
.yab{bottom:426.466667pt;}
.y3b{bottom:431.746667pt;}
.y83{bottom:436.706667pt;}
.y130{bottom:439.746667pt;}
.yf7{bottom:441.506667pt;}
.y10e{bottom:443.426667pt;}
.yaa{bottom:445.986667pt;}
.y7{bottom:449.986667pt;}
.y53{bottom:454.786667pt;}
.y82{bottom:456.226667pt;}
.y12f{bottom:459.266667pt;}
.yd4{bottom:460.386667pt;}
.ya9{bottom:465.506667pt;}
.y10d{bottom:470.626667pt;}
.y3a{bottom:472.706667pt;}
.y17c{bottom:473.986667pt;}
.y81{bottom:475.746667pt;}
.y6{bottom:477.346667pt;}
.yf5{bottom:477.826667pt;}
.y12e{bottom:478.786667pt;}
.yd3{bottom:479.906667pt;}
.y52{bottom:480.866667pt;}
.ya8{bottom:485.026667pt;}
.y10c{bottom:489.826667pt;}
.y80{bottom:495.426667pt;}
.yd2{bottom:497.026667pt;}
.y12d{bottom:498.306667pt;}
.y17b{bottom:503.266667pt;}
.y10b{bottom:503.746667pt;}
.y51{bottom:507.106667pt;}
.y7f{bottom:514.946667pt;}
.ya7{bottom:517.986667pt;}
.y36{bottom:531.426667pt;}
.y5{bottom:532.066667pt;}
.y17a{bottom:532.546667pt;}
.y50{bottom:533.346667pt;}
.y7e{bottom:534.466667pt;}
.ya6{bottom:537.506667pt;}
.yf4{bottom:544.866667pt;}
.y31{bottom:548.706667pt;}
.y16b{bottom:550.786667pt;}
.y7d{bottom:553.986667pt;}
.ya5{bottom:557.026667pt;}
.y4f{bottom:559.586667pt;}
.y6a{bottom:559.906667pt;}
.y179{bottom:561.826667pt;}
.yf3{bottom:563.266667pt;}
.y10{bottom:563.586667pt;}
.y16a{bottom:570.306667pt;}
.y7c{bottom:575.586667pt;}
.ya4{bottom:576.546667pt;}
.y4{bottom:577.666667pt;}
.yf1{bottom:581.506667pt;}
.yd0{bottom:584.226667pt;}
.y141{bottom:585.506667pt;}
.y4e{bottom:585.666667pt;}
.y34{bottom:588.546667pt;}
.y169{bottom:589.826667pt;}
.y178{bottom:595.746667pt;}
.ya3{bottom:596.066667pt;}
.yce{bottom:602.493333pt;}
.y12c{bottom:609.373333pt;}
.y7b{bottom:611.773333pt;}
.y4d{bottom:611.933333pt;}
.ya2{bottom:615.613333pt;}
.yf0{bottom:617.853333pt;}
.y12b{bottom:628.893333pt;}
.ya1{bottom:635.133333pt;}
.yef{bottom:636.093333pt;}
.y4c{bottom:638.173333pt;}
.yca{bottom:638.813333pt;}
.y30{bottom:646.013333pt;}
.y12a{bottom:648.413333pt;}
.ya0{bottom:654.653333pt;}
.y177{bottom:655.613333pt;}
.y2f{bottom:663.133333pt;}
.y4b{bottom:664.413333pt;}
.y69{bottom:666.653333pt;}
.y129{bottom:667.933333pt;}
.y7a{bottom:668.253333pt;}
.y18{bottom:670.333333pt;}
.y5c{bottom:670.653333pt;}
.y9f{bottom:674.173333pt;}
.y176{bottom:684.893333pt;}
.y13e{bottom:686.813333pt;}
.y128{bottom:687.453333pt;}
.y79{bottom:687.773333pt;}
.yee{bottom:688.893333pt;}
.y5b{bottom:690.173333pt;}
.y4a{bottom:690.493333pt;}
.y68{bottom:691.293333pt;}
.y9e{bottom:695.773333pt;}
.yc8{bottom:705.853333pt;}
.yed{bottom:707.133333pt;}
.y78{bottom:707.293333pt;}
.y17{bottom:710.013333pt;}
.y24{bottom:712.893333pt;}
.y175{bottom:714.173333pt;}
.y67{bottom:715.933333pt;}
.y5a{bottom:716.413333pt;}
.y49{bottom:716.733333pt;}
.y2e{bottom:720.573333pt;}
.yec{bottom:725.373333pt;}
.y127{bottom:726.653333pt;}
.y77{bottom:726.813333pt;}
.y13b{bottom:728.733333pt;}
.y23{bottom:732.413333pt;}
.y9d{bottom:736.413333pt;}
.y2d{bottom:737.853333pt;}
.yc7{bottom:740.413333pt;}
.y65{bottom:740.573333pt;}
.y48{bottom:742.973333pt;}
.yeb{bottom:743.773333pt;}
.y126{bottom:746.173333pt;}
.y76{bottom:746.333333pt;}
.y174{bottom:748.093333pt;}
.y168{bottom:748.253333pt;}
.y16{bottom:749.853333pt;}
.y22{bottom:751.933333pt;}
.y9c{bottom:755.933333pt;}
.yc3{bottom:758.653333pt;}
.yea{bottom:762.013333pt;}
.y64{bottom:765.373333pt;}
.y125{bottom:765.693333pt;}
.y75{bottom:765.853333pt;}
.y47{bottom:769.213333pt;}
.y9b{bottom:775.453333pt;}
.y2b{bottom:777.693333pt;}
.ye9{bottom:780.253333pt;}
.y124{bottom:785.213333pt;}
.y74{bottom:785.373333pt;}
.y21{bottom:787.453333pt;}
.y167{bottom:788.733333pt;}
.y15{bottom:789.693333pt;}
.y139{bottom:790.173333pt;}
.y9a{bottom:794.973333pt;}
.y46{bottom:795.293333pt;}
.y63{bottom:797.533333pt;}
.y123{bottom:804.733333pt;}
.y73{bottom:805.053333pt;}
.y20{bottom:806.973333pt;}
.y166{bottom:808.253333pt;}
.y59{bottom:812.773333pt;}
.yc2{bottom:813.253333pt;}
.ye8{bottom:816.613333pt;}
.y10a{bottom:818.053333pt;}
.y27{bottom:818.693333pt;}
.y45{bottom:821.573333pt;}
.y122{bottom:824.293333pt;}
.y72{bottom:824.613333pt;}
.y1f{bottom:826.533333pt;}
.y99{bottom:827.813333pt;}
.y13{bottom:829.573333pt;}
.y62{bottom:829.893333pt;}
.yc1{bottom:831.493333pt;}
.y138{bottom:834.373333pt;}
.ye6{bottom:834.853333pt;}
.y109{bottom:837.573333pt;}
.y58{bottom:839.013333pt;}
.y121{bottom:843.813333pt;}
.y71{bottom:844.133333pt;}
.y1e{bottom:846.053333pt;}
.y98{bottom:847.333333pt;}
.y44{bottom:847.813333pt;}
.ybf{bottom:849.893333pt;}
.y137{bottom:853.893333pt;}
.ye5{bottom:854.533333pt;}
.y108{bottom:857.093333pt;}
.y61{bottom:862.213333pt;}
.y120{bottom:863.333333pt;}
.y70{bottom:863.653333pt;}
.y57{bottom:865.093333pt;}
.y3f{bottom:865.413333pt;}
.y1d{bottom:865.573333pt;}
.y97{bottom:866.853333pt;}
.y11{bottom:869.253333pt;}
.y136{bottom:873.413333pt;}
.y43{bottom:873.893333pt;}
.y107{bottom:876.613333pt;}
.y26{bottom:879.333333pt;}
.y11f{bottom:882.853333pt;}
.y6f{bottom:883.173333pt;}
.ybc{bottom:884.453333pt;}
.y1c{bottom:885.093333pt;}
.y96{bottom:886.373333pt;}
.ye4{bottom:889.093333pt;}
.y56{bottom:891.333333pt;}
.y135{bottom:892.933333pt;}
.y5f{bottom:894.373333pt;}
.y106{bottom:896.133333pt;}
.y42{bottom:900.133333pt;}
.y11e{bottom:902.373333pt;}
.y6e{bottom:902.693333pt;}
.y1b{bottom:904.613333pt;}
.y95{bottom:906.053333pt;}
.ye3{bottom:907.333333pt;}
.y3e{bottom:910.853333pt;}
.y134{bottom:912.453333pt;}
.y105{bottom:915.813333pt;}
.y55{bottom:917.573333pt;}
.y25{bottom:919.173333pt;}
.ybb{bottom:921.893333pt;}
.y6d{bottom:922.213333pt;}
.y1a{bottom:924.133333pt;}
.y94{bottom:925.573333pt;}
.y41{bottom:926.373333pt;}
.y5d{bottom:926.693333pt;}
.y3d{bottom:930.533333pt;}
.y133{bottom:934.053333pt;}
.y104{bottom:935.333333pt;}
.y11d{bottom:941.413333pt;}
.y6c{bottom:941.733333pt;}
.y19{bottom:943.813333pt;}
.y93{bottom:945.093333pt;}
.y40{bottom:952.133333pt;}
.yba{bottom:954.853333pt;}
.ye2{bottom:958.213333pt;}
.y92{bottom:964.613333pt;}
.yb9{bottom:974.373333pt;}
.y6b{bottom:983.493333pt;}
.y91{bottom:986.213333pt;}
.y2{bottom:991.013333pt;}
.yb8{bottom:993.893333pt;}
.y1{bottom:1018.213333pt;}
.yc{bottom:1028.640000pt;}
.ye{bottom:1045.600000pt;}
.yb{bottom:1047.360000pt;}
.ya{bottom:1066.932533pt;}
.h27{height:16.160000pt;}
.h1d{height:16.320000pt;}
.h23{height:16.640000pt;}
.h26{height:17.760000pt;}
.h9{height:21.120000pt;}
.h28{height:21.280000pt;}
.h16{height:22.720000pt;}
.h14{height:30.240000pt;}
.h15{height:30.272000pt;}
.h1a{height:32.480000pt;}
.h1f{height:32.640000pt;}
.h1e{height:34.240000pt;}
.h24{height:34.272000pt;}
.h22{height:34.400000pt;}
.h6{height:37.631250pt;}
.hc{height:37.760000pt;}
.hd{height:37.792000pt;}
.ha{height:37.920000pt;}
.h13{height:39.040000pt;}
.h10{height:39.072000pt;}
.h2c{height:40.000000pt;}
.he{height:48.375000pt;}
.h21{height:48.800000pt;}
.h25{height:48.960000pt;}
.h1b{height:52.834688pt;}
.h1c{height:54.390938pt;}
.hf{height:58.560000pt;}
.h2{height:58.563750pt;}
.h2a{height:59.520000pt;}
.h3{height:63.656250pt;}
.h29{height:63.769687pt;}
.h20{height:65.120000pt;}
.hb{height:65.531250pt;}
.h2b{height:65.781915pt;}
.h8{height:70.880000pt;}
.h5{height:76.671562pt;}
.h11{height:77.632000pt;}
.h30{height:79.570312pt;}
.h7{height:90.563750pt;}
.h18{height:95.484375pt;}
.h19{height:98.672872pt;}
.h2d{height:99.392000pt;}
.h17{height:120.380904pt;}
.h12{height:121.120000pt;}
.h4{height:148.319063pt;}
.h2e{height:158.720000pt;}
.h2f{height:256.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:39.520000pt;}
.w12{width:41.280000pt;}
.w22{width:41.440000pt;}
.w1e{width:42.080000pt;}
.w1a{width:43.840000pt;}
.w20{width:84.640000pt;}
.w18{width:84.672000pt;}
.w1c{width:86.560000pt;}
.w14{width:86.752000pt;}
.w27{width:91.872000pt;}
.w24{width:93.952000pt;}
.w2c{width:117.920000pt;}
.w29{width:119.520000pt;}
.w8{width:139.386667pt;}
.we{width:155.866667pt;}
.w4{width:175.866667pt;}
.w17{width:181.626667pt;}
.w13{width:183.546667pt;}
.w2d{width:196.226667pt;}
.w2a{width:198.146667pt;}
.w26{width:203.546667pt;}
.w23{width:205.466667pt;}
.wb{width:215.066667pt;}
.wd{width:217.786667pt;}
.w3{width:219.106667pt;}
.wa{width:222.786667pt;}
.w10{width:224.346667pt;}
.wf{width:224.866667pt;}
.w21{width:225.346667pt;}
.w1d{width:227.266667pt;}
.w9{width:236.186667pt;}
.w1f{width:238.786667pt;}
.w1b{width:240.866667pt;}
.w28{width:257.506667pt;}
.w25{width:259.106667pt;}
.w2e{width:274.146667pt;}
.w2b{width:275.746667pt;}
.w19{width:286.786667pt;}
.w15{width:288.386667pt;}
.w6{width:300.066667pt;}
.w7{width:300.546667pt;}
.w11{width:376.093333pt;}
.wc{width:385.533333pt;}
.w5{width:419.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:6.080000pt;}
.x2e{left:7.200000pt;}
.x51{left:11.360000pt;}
.x2c{left:12.480000pt;}
.x46{left:13.600000pt;}
.xd{left:16.640000pt;}
.x4a{left:17.600000pt;}
.x2b{left:20.480000pt;}
.x15{left:21.920000pt;}
.x3c{left:23.840000pt;}
.x43{left:25.120000pt;}
.x39{left:26.720000pt;}
.x58{left:28.320000pt;}
.x34{left:29.920000pt;}
.x3f{left:31.520000pt;}
.x36{left:32.480000pt;}
.x44{left:33.440000pt;}
.x13{left:34.400000pt;}
.xf{left:36.640000pt;}
.x62{left:38.234667pt;}
.x67{left:39.514667pt;}
.x57{left:40.826667pt;}
.x7{left:42.400000pt;}
.x66{left:43.994667pt;}
.x68{left:44.954667pt;}
.x55{left:45.946667pt;}
.x11{left:47.520000pt;}
.x4f{left:48.640000pt;}
.x19{left:51.040000pt;}
.x64{left:54.280000pt;}
.x38{left:55.360000pt;}
.x37{left:56.640000pt;}
.x8{left:57.952000pt;}
.x3e{left:61.600000pt;}
.x59{left:64.480000pt;}
.x1e{left:66.106667pt;}
.x4e{left:68.360000pt;}
.x40{left:69.920000pt;}
.x60{left:71.880000pt;}
.x16{left:74.394667pt;}
.x3b{left:76.000000pt;}
.x3a{left:79.360000pt;}
.x12{left:80.794667pt;}
.x42{left:82.400000pt;}
.x5b{left:84.320000pt;}
.x5a{left:85.600000pt;}
.x5c{left:90.920000pt;}
.x24{left:92.154667pt;}
.x3d{left:95.040000pt;}
.x2{left:96.031988pt;}
.x9{left:98.112000pt;}
.x41{left:99.040000pt;}
.x1f{left:102.394667pt;}
.x22{left:103.834667pt;}
.x1b{left:105.114667pt;}
.x45{left:106.880000pt;}
.x29{left:112.991988pt;}
.x23{left:115.226667pt;}
.x21{left:119.546667pt;}
.x1d{left:121.306667pt;}
.x27{left:122.906667pt;}
.x25{left:126.906667pt;}
.x1a{left:128.031988pt;}
.x53{left:129.480000pt;}
.x28{left:132.026667pt;}
.x2d{left:138.586667pt;}
.x32{left:139.546667pt;}
.x26{left:140.986667pt;}
.x47{left:141.946667pt;}
.x4b{left:142.906667pt;}
.x31{left:144.360000pt;}
.x20{left:148.666667pt;}
.x5d{left:181.786655pt;}
.x5f{left:222.586667pt;}
.x63{left:223.546667pt;}
.xe{left:239.586667pt;}
.x6{left:257.986655pt;}
.xb{left:275.906667pt;}
.x14{left:315.106667pt;}
.x17{left:317.826667pt;}
.x2f{left:322.146667pt;}
.x33{left:323.266667pt;}
.x1c{left:324.546667pt;}
.x50{left:344.226667pt;}
.x54{left:345.186667pt;}
.x1{left:353.986655pt;}
.x48{left:382.813333pt;}
.x4c{left:383.773333pt;}
.x5e{left:393.693322pt;}
.xc{left:400.093333pt;}
.x30{left:408.893333pt;}
.x35{left:409.853333pt;}
.x61{left:420.733333pt;}
.x65{left:421.693333pt;}
.x52{left:438.173333pt;}
.x56{left:439.133333pt;}
.x49{left:469.373333pt;}
.x4d{left:470.493333pt;}
.x18{left:475.773333pt;}
.x10{left:477.853333pt;}
.x3{left:600.316813pt;}
.x2a{left:690.879988pt;}
.x4{left:698.239988pt;}
.x5{left:704.639988pt;}
}




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