
    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_c1ad37e7502a8d20df3f1e4d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_05c0327f33f275f32298d4ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_dfc4329e3be7f8b562681e53.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_ef60d4cd34fef2d79e6f13c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_fa43c8d077786c978a7456a9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_472fa5d86938b41f4ea33c2a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_88f8e42f44d7cb8a3e380fb1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_664ae019aa9e6b777f1c5c4b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_e33760fa78cb477143d7b317.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_a3650e0d4f8bacfcce09434c.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_6f8b3896430817ebc4397c58.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854492;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_1c58c091976955db4ff4b4ca.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.172363;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_e1796be27f238bc851de39be.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240256,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls12{letter-spacing:-2.212945px;}
.ls10{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.162000px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.lsd{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.063600px;}
.ls1e{letter-spacing:-0.038880px;}
.ls18{letter-spacing:-0.006120px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.014760px;}
.ls0{letter-spacing:0.027360px;}
.ls1a{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls14{letter-spacing:0.051120px;}
.ls16{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls5{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.086400px;}
.ls1{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.119400px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.lse{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.425520px;}
.ls20{letter-spacing:47.726640px;}
.ls17{letter-spacing:63.566640px;}
.ls1f{letter-spacing:80.846640px;}
.ls1b{letter-spacing:258.599160px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-32.807931px;}
.ws2{word-spacing:-18.453600px;}
.ws5{word-spacing:-14.493600px;}
.ws14{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.277520px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws12{word-spacing:-13.220280px;}
.ws18{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.064400px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.625600px;}
.ws6{word-spacing:-8.553600px;}
.ws17{word-spacing:-0.060120px;}
.wsb{word-spacing:-0.059759px;}
.ws7{word-spacing:0.000000px;}
.wsc{word-spacing:2.153186px;}
.ws4{word-spacing:4.304880px;}
.ws16{word-spacing:199.170360px;}
.ws15{word-spacing:214.053000px;}
.wsd{word-spacing:913.210459px;}
._15{margin-left:-789.158779px;}
._10{margin-left:-329.221903px;}
._f{margin-left:-315.527914px;}
._12{margin-left:-229.181968px;}
._13{margin-left:-226.062728px;}
._14{margin-left:-192.159828px;}
._11{margin-left:-183.771280px;}
._d{margin-left:-3.882601px;}
._3{margin-left:-2.722560px;}
._2{margin-left:-1.064640px;}
._1{width:1.012151px;}
._4{width:2.224200px;}
._5{width:3.274804px;}
._8{width:5.021997px;}
._9{width:6.072000px;}
._0{width:7.465236px;}
._c{width:8.777400px;}
._7{width:9.968280px;}
._6{width:11.122200px;}
._16{width:12.126720px;}
._e{width:14.308560px;}
._17{width:15.313680px;}
._a{width:16.473000px;}
._b{width:17.613407px;}
._1e{width:18.760946px;}
._18{width:23.627160px;}
._1d{width:25.262760px;}
._1c{width:134.007480px;}
._19{width:234.588240px;}
._1a{width:255.149280px;}
._1b{width:275.169240px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs7{font-size:59.759437px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:4.500000px;}
.yd1{bottom:5.760000px;}
.yf6{bottom:6.750000px;}
.y46{bottom:7.157968px;}
.y99{bottom:7.830000px;}
.y9b{bottom:7.920000px;}
.ye8{bottom:8.010000px;}
.yc8{bottom:10.530000px;}
.yca{bottom:11.610000px;}
.ycc{bottom:11.700000px;}
.yc6{bottom:11.730000px;}
.y45{bottom:19.024632px;}
.y48{bottom:19.024666px;}
.yf4{bottom:22.680000px;}
.y115{bottom:25.380000px;}
.y119{bottom:25.470000px;}
.y47{bottom:28.600842px;}
.y9f{bottom:35.190000px;}
.yf2{bottom:45.480000px;}
.yed{bottom:65.010000px;}
.y2{bottom:73.380000px;}
.y2b{bottom:74.190000px;}
.yec{bottom:84.990000px;}
.yf3{bottom:85.980000px;}
.yee{bottom:91.830000px;}
.y1{bottom:100.200000px;}
.yeb{bottom:103.260000px;}
.yef{bottom:118.680000px;}
.y117{bottom:119.820000px;}
.y82{bottom:124.410000px;}
.yad{bottom:129.900000px;}
.y163{bottom:138.540000px;}
.y29{bottom:142.050000px;}
.yf0{bottom:145.530000px;}
.y116{bottom:147.180000px;}
.y138{bottom:154.650000px;}
.y162{bottom:156.090000px;}
.yac{bottom:157.260000px;}
.y28{bottom:159.600000px;}
.y81{bottom:160.860000px;}
.y137{bottom:172.290000px;}
.yf1{bottom:172.380000px;}
.y161{bottom:173.730000px;}
.y114{bottom:174.540000px;}
.y59{bottom:176.610000px;}
.y27{bottom:177.240000px;}
.y102{bottom:179.220000px;}
.yab{bottom:184.620000px;}
.y80{bottom:187.410000px;}
.y136{bottom:189.840000px;}
.y58{bottom:194.160000px;}
.y26{bottom:194.790000px;}
.y160{bottom:200.280000px;}
.y135{bottom:207.390000px;}
.y57{bottom:211.800000px;}
.yaa{bottom:211.890000px;}
.y25{bottom:212.340000px;}
.y15f{bottom:217.830000px;}
.y101{bottom:221.520000px;}
.y7f{bottom:222.960000px;}
.y134{bottom:225.030000px;}
.y56{bottom:229.350000px;}
.y24{bottom:229.980000px;}
.ya9{bottom:239.250000px;}
.y7e{bottom:240.600000px;}
.y113{bottom:240.780000px;}
.y15e{bottom:244.470000px;}
.y55{bottom:246.900000px;}
.y23{bottom:247.530000px;}
.y100{bottom:248.880000px;}
.y7d{bottom:258.150000px;}
.y133{bottom:260.580000px;}
.y15d{bottom:262.020000px;}
.y54{bottom:264.540000px;}
.y22{bottom:265.170000px;}
.ya8{bottom:266.610000px;}
.y112{bottom:267.420000px;}
.y7c{bottom:275.790000px;}
.yff{bottom:276.150000px;}
.y132{bottom:278.130000px;}
.y21{bottom:282.720000px;}
.y15c{bottom:288.660000px;}
.y53{bottom:291.090000px;}
.y7b{bottom:293.340000px;}
.ycf{bottom:293.610000px;}
.ya7{bottom:293.970000px;}
.y131{bottom:295.770000px;}
.y20{bottom:300.270000px;}
.y111{bottom:302.970000px;}
.yfe{bottom:303.510000px;}
.y15b{bottom:306.210000px;}
.yce{bottom:308.550000px;}
.y130{bottom:313.320000px;}
.y1f{bottom:317.910000px;}
.y7a{bottom:319.890000px;}
.ya6{bottom:321.240000px;}
.ye9{bottom:322.230000px;}
.y52{bottom:323.670000px;}
.y15a{bottom:323.760000px;}
.yfd{bottom:330.870000px;}
.y12f{bottom:330.960000px;}
.y110{bottom:335.190000px;}
.y1e{bottom:335.460000px;}
.ye7{bottom:337.170000px;}
.ycd{bottom:339.690000px;}
.y12e{bottom:348.510000px;}
.ya5{bottom:348.600000px;}
.y159{bottom:350.400000px;}
.y79{bottom:352.470000px;}
.y1d{bottom:353.100000px;}
.yfc{bottom:358.230000px;}
.y51{bottom:359.310000px;}
.ye6{bottom:364.620000px;}
.y158{bottom:367.950000px;}
.y1c{bottom:370.650000px;}
.ycb{bottom:370.830000px;}
.y12d{bottom:375.420000px;}
.ya4{bottom:375.960000px;}
.y50{bottom:376.860000px;}
.y157{bottom:385.590000px;}
.y78{bottom:388.110000px;}
.y1b{bottom:388.200000px;}
.ye5{bottom:391.980000px;}
.y4f{bottom:394.410000px;}
.yc9{bottom:401.970000px;}
.ya3{bottom:403.230000px;}
.yfb{bottom:406.920000px;}
.y4e{bottom:412.050000px;}
.y156{bottom:412.140000px;}
.y1a{bottom:415.110000px;}
.ye4{bottom:419.340000px;}
.y77{bottom:423.660000px;}
.y4d{bottom:429.600000px;}
.y155{bottom:429.690000px;}
.ya2{bottom:430.590000px;}
.yc7{bottom:433.110000px;}
.yfa{bottom:433.470000px;}
.y12c{bottom:441.300000px;}
.ye3{bottom:446.610000px;}
.y4c{bottom:456.240000px;}
.y154{bottom:456.330000px;}
.ya1{bottom:457.950000px;}
.y12b{bottom:458.850000px;}
.y76{bottom:459.300000px;}
.yc5{bottom:463.080000px;}
.y19{bottom:463.440000px;}
.yf9{bottom:469.110000px;}
.y153{bottom:473.910000px;}
.ye2{bottom:474.000000px;}
.y75{bottom:476.880000px;}
.y18{bottom:481.380000px;}
.y9e{bottom:485.340000px;}
.y4b{bottom:491.820000px;}
.yc4{bottom:494.250000px;}
.y74{bottom:494.430000px;}
.y12a{bottom:494.520000px;}
.y152{bottom:500.550000px;}
.ye1{bottom:501.360000px;}
.y4a{bottom:509.370000px;}
.y129{bottom:512.070000px;}
.ya0{bottom:512.610000px;}
.y151{bottom:518.100000px;}
.y17{bottom:518.370000px;}
.y73{bottom:521.070000px;}
.yc3{bottom:521.610000px;}
.ye0{bottom:528.720000px;}
.y128{bottom:529.620000px;}
.y16{bottom:535.920000px;}
.y44{bottom:540.974959px;}
.y49{bottom:541.680000px;}
.y150{bottom:544.650000px;}
.y127{bottom:547.260000px;}
.yc2{bottom:548.880000px;}
.y15{bottom:553.560000px;}
.y72{bottom:556.620000px;}
.y9d{bottom:561.300000px;}
.y14f{bottom:562.290000px;}
.y126{bottom:564.810000px;}
.y14{bottom:571.110000px;}
.y71{bottom:574.260000px;}
.yc1{bottom:576.240000px;}
.ydf{bottom:577.500000px;}
.y10f{bottom:579.300000px;}
.y125{bottom:582.450000px;}
.y9c{bottom:587.940000px;}
.y13{bottom:588.750000px;}
.y14e{bottom:588.840000px;}
.y70{bottom:591.810000px;}
.y10e{bottom:594.330000px;}
.y124{bottom:600.000000px;}
.yde{bottom:601.440000px;}
.yc0{bottom:603.600000px;}
.y43{bottom:606.210000px;}
.y12{bottom:606.300000px;}
.y14d{bottom:606.480000px;}
.y6f{bottom:609.360000px;}
.y9a{bottom:620.880000px;}
.y10d{bottom:621.600000px;}
.y42{bottom:623.760000px;}
.y11{bottom:623.850000px;}
.y6e{bottom:627.000000px;}
.ydd{bottom:628.800000px;}
.ybf{bottom:630.960000px;}
.y14c{bottom:633.030000px;}
.y123{bottom:635.550000px;}
.y41{bottom:641.400000px;}
.y10{bottom:641.490000px;}
.y6d{bottom:644.550000px;}
.y98{bottom:648.240000px;}
.y10c{bottom:648.960000px;}
.y122{bottom:653.190000px;}
.ydc{bottom:656.160000px;}
.y40{bottom:658.950000px;}
.yf{bottom:659.040000px;}
.y14b{bottom:659.580000px;}
.y121{bottom:670.740000px;}
.y6c{bottom:671.190000px;}
.y10b{bottom:676.320000px;}
.ye{bottom:676.680000px;}
.y14a{bottom:677.220000px;}
.ybe{bottom:679.650000px;}
.ydb{bottom:683.430000px;}
.y3f{bottom:685.590000px;}
.y120{bottom:688.380000px;}
.yd{bottom:694.230000px;}
.y149{bottom:694.770000px;}
.y97{bottom:696.930000px;}
.y10a{bottom:703.680000px;}
.y11f{bottom:705.930000px;}
.ybd{bottom:706.200000px;}
.y6b{bottom:706.740000px;}
.yda{bottom:710.790000px;}
.yc{bottom:721.140000px;}
.y148{bottom:721.410000px;}
.y96{bottom:723.480000px;}
.y6a{bottom:724.290000px;}
.y109{bottom:730.950000px;}
.yd9{bottom:738.150000px;}
.y3e{bottom:738.690000px;}
.ybc{bottom:738.780000px;}
.y147{bottom:738.960000px;}
.y11e{bottom:741.480000px;}
.y69{bottom:741.930000px;}
.y3d{bottom:756.330000px;}
.y95{bottom:759.390000px;}
.y68{bottom:759.480000px;}
.yd8{bottom:765.510000px;}
.yb{bottom:769.380000px;}
.ybb{bottom:771.810000px;}
.y11d{bottom:773.700000px;}
.y108{bottom:779.640000px;}
.y3c{bottom:782.880000px;}
.y67{bottom:786.030000px;}
.y146{bottom:792.150000px;}
.yd7{bottom:792.780000px;}
.y107{bottom:797.280000px;}
.yba{bottom:799.170000px;}
.ya{bottom:805.200000px;}
.y94{bottom:807.720000px;}
.y145{bottom:809.700000px;}
.y3b{bottom:818.520000px;}
.y66{bottom:821.670000px;}
.y106{bottom:823.830000px;}
.y93{bottom:825.270000px;}
.yb9{bottom:826.440000px;}
.y3a{bottom:836.070000px;}
.y144{bottom:836.340000px;}
.y9{bottom:841.200000px;}
.yd6{bottom:841.470000px;}
.y92{bottom:843.720000px;}
.y39{bottom:853.620000px;}
.yb8{bottom:853.800000px;}
.y143{bottom:853.890000px;}
.y65{bottom:857.220000px;}
.y105{bottom:859.470000px;}
.y91{bottom:861.270000px;}
.yd5{bottom:868.110000px;}
.y38{bottom:871.260000px;}
.yf8{bottom:878.190000px;}
.y90{bottom:878.820000px;}
.y142{bottom:880.800000px;}
.y8{bottom:880.980000px;}
.yb7{bottom:881.160000px;}
.y37{bottom:888.810000px;}
.y64{bottom:892.860000px;}
.y104{bottom:895.020000px;}
.y8f{bottom:897.270000px;}
.y7{bottom:898.980000px;}
.yd4{bottom:900.690000px;}
.y36{bottom:906.450000px;}
.yb6{bottom:908.430000px;}
.yf7{bottom:913.740000px;}
.y8e{bottom:914.820000px;}
.y6{bottom:916.980000px;}
.y103{bottom:927.240000px;}
.y63{bottom:928.410000px;}
.y141{bottom:929.040000px;}
.y35{bottom:933.000000px;}
.y8d{bottom:933.270000px;}
.yb5{bottom:935.790000px;}
.yd3{bottom:936.240000px;}
.yf5{bottom:937.770000px;}
.y62{bottom:945.960000px;}
.y140{bottom:946.680000px;}
.y5{bottom:949.290000px;}
.y8c{bottom:950.820000px;}
.yd0{bottom:951.270000px;}
.yea{bottom:955.890000px;}
.yb4{bottom:963.150000px;}
.y61{bottom:963.600000px;}
.y13f{bottom:964.230000px;}
.y8b{bottom:968.370000px;}
.y34{bottom:968.910000px;}
.y60{bottom:981.150000px;}
.y13e{bottom:981.780000px;}
.y4{bottom:987.630000px;}
.yb3{bottom:990.510000px;}
.y8a{bottom:995.820000px;}
.y13d{bottom:999.420000px;}
.y5f{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y33{bottom:1017.180000px;}
.yb2{bottom:1017.810000px;}
.y11c{bottom:1022.400000px;}
.y13c{bottom:1026.360000px;}
.y89{bottom:1031.490000px;}
.y32{bottom:1034.820000px;}
.y11b{bottom:1037.340000px;}
.y5e{bottom:1043.370000px;}
.yb1{bottom:1045.170000px;}
.y88{bottom:1049.040000px;}
.y31{bottom:1052.370000px;}
.y5d{bottom:1060.920000px;}
.y13b{bottom:1063.350000px;}
.y11a{bottom:1064.700000px;}
.y87{bottom:1066.680000px;}
.y30{bottom:1069.920000px;}
.yb0{bottom:1072.530000px;}
.y5c{bottom:1078.560000px;}
.y86{bottom:1084.230000px;}
.y2f{bottom:1087.560000px;}
.y13a{bottom:1090.260000px;}
.y5b{bottom:1096.110000px;}
.yaf{bottom:1099.890000px;}
.y85{bottom:1102.590000px;}
.y2e{bottom:1105.110000px;}
.y118{bottom:1109.610000px;}
.y5a{bottom:1113.750000px;}
.y84{bottom:1121.040000px;}
.y2d{bottom:1122.750000px;}
.yae{bottom:1127.160000px;}
.y139{bottom:1127.610000px;}
.y83{bottom:1139.400000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.he{height:26.550000px;}
.h11{height:26.580000px;}
.hf{height:26.640000px;}
.h17{height:26.670000px;}
.h18{height:26.730000px;}
.h13{height:29.250000px;}
.h14{height:30.330000px;}
.h15{height:30.420000px;}
.h12{height:30.450000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h9{height:43.199604px;}
.h1d{height:44.100000px;}
.h1e{height:44.190000px;}
.h1b{height:45.442266px;}
.h7{height:50.902383px;}
.h10{height:53.910000px;}
.h5{height:55.779258px;}
.ha{height:58.650620px;}
.h1a{height:59.797090px;}
.hb{height:59.973223px;}
.hc{height:61.793886px;}
.h8{height:62.585859px;}
.hd{height:68.582109px;}
.h4{height:71.019492px;}
.h19{height:193.410000px;}
.h16{height:202.530000px;}
.h1c{height:216.030000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:48.720000px;}
.wa{width:52.200000px;}
.w9{width:67.590000px;}
.w26{width:70.470000px;}
.w1c{width:73.350000px;}
.w6{width:76.140000px;}
.w8{width:84.150000px;}
.w22{width:84.780000px;}
.w20{width:84.810000px;}
.w1e{width:88.020000px;}
.w21{width:90.630000px;}
.w1f{width:93.060000px;}
.wf{width:97.470000px;}
.w16{width:97.500000px;}
.w25{width:101.430000px;}
.w17{width:102.780000px;}
.w7{width:145.470000px;}
.w2a{width:155.880000px;}
.w23{width:159.030000px;}
.w27{width:168.600000px;}
.w5{width:169.200000px;}
.w12{width:171.900000px;}
.we{width:171.930000px;}
.w13{width:171.990000px;}
.w29{width:174.630000px;}
.w24{width:182.910000px;}
.w28{width:183.240000px;}
.wb{width:196.560000px;}
.w3{width:265.646139px;}
.wc{width:308.820000px;}
.w19{width:330.480000px;}
.w10{width:337.260000px;}
.w14{width:344.730000px;}
.w11{width:346.260000px;}
.w1b{width:351.030000px;}
.w1a{width:353.010000px;}
.w18{width:373.620000px;}
.w1d{width:444.270000px;}
.wd{width:506.100000px;}
.w15{width:517.440000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.x8{left:18.080484px;}
.x29{left:33.120000px;}
.x27{left:41.610000px;}
.x26{left:53.010000px;}
.x1{left:68.040000px;}
.x28{left:70.710000px;}
.xc{left:95.039987px;}
.x1b{left:104.490000px;}
.x3d{left:111.239987px;}
.xd{left:122.039987px;}
.x38{left:139.950000px;}
.x2a{left:144.060000px;}
.xe{left:149.040000px;}
.x7{left:156.748388px;}
.x15{left:167.070000px;}
.x1f{left:187.950000px;}
.x2{left:192.719987px;}
.x10{left:198.480000px;}
.x6{left:203.967216px;}
.x16{left:220.080000px;}
.x5{left:241.780425px;}
.x1e{left:258.689987px;}
.x22{left:259.860000px;}
.x30{left:261.570000px;}
.x18{left:285.150000px;}
.xa{left:302.249987px;}
.x39{left:309.270000px;}
.x4{left:313.845000px;}
.x2f{left:315.299987px;}
.x37{left:328.169987px;}
.x1c{left:329.520000px;}
.x19{left:338.070000px;}
.x2d{left:343.290000px;}
.x2b{left:345.270000px;}
.x31{left:350.400000px;}
.x20{left:360.660000px;}
.x11{left:368.400000px;}
.xb{left:385.499987px;}
.x17{left:417.360000px;}
.x35{left:421.050000px;}
.x23{left:432.480000px;}
.x1d{left:442.470000px;}
.x32{left:444.180000px;}
.x12{left:445.350000px;}
.x2c{left:447.960000px;}
.x25{left:450.180000px;}
.x3a{left:493.230000px;}
.x1a{left:510.720000px;}
.x24{left:530.700000px;}
.x21{left:533.400000px;}
.x9{left:579.479987px;}
.x13{left:591.630000px;}
.x36{left:604.680000px;}
.x33{left:621.060000px;}
.x3b{left:668.580000px;}
.x14{left:676.590000px;}
.x34{left:718.889987px;}
.x3c{left:739.319987px;}
.x2e{left:756.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls12{letter-spacing:-1.967062pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.056533pt;}
.ls1e{letter-spacing:-0.034560pt;}
.ls18{letter-spacing:-0.005440pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.013120pt;}
.ls0{letter-spacing:0.024320pt;}
.ls1a{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls14{letter-spacing:0.045440pt;}
.ls16{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls5{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.076800pt;}
.ls1{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.106133pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.lse{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.378240pt;}
.ls20{letter-spacing:42.423680pt;}
.ls17{letter-spacing:56.503680pt;}
.ls1f{letter-spacing:71.863680pt;}
.ls1b{letter-spacing:229.865920pt;}
.wse{word-spacing:-29.162605pt;}
.ws2{word-spacing:-16.403200pt;}
.ws5{word-spacing:-12.883200pt;}
.ws14{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.802240pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws12{word-spacing:-11.751360pt;}
.ws18{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.612800pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.667200pt;}
.ws6{word-spacing:-7.603200pt;}
.ws17{word-spacing:-0.053440pt;}
.wsb{word-spacing:-0.053119pt;}
.ws7{word-spacing:0.000000pt;}
.wsc{word-spacing:1.913943pt;}
.ws4{word-spacing:3.826560pt;}
.ws16{word-spacing:177.040320pt;}
.ws15{word-spacing:190.269333pt;}
.wsd{word-spacing:811.742631pt;}
._15{margin-left:-701.474470pt;}
._10{margin-left:-292.641691pt;}
._f{margin-left:-280.469257pt;}
._12{margin-left:-203.717305pt;}
._13{margin-left:-200.944647pt;}
._14{margin-left:-170.808736pt;}
._11{margin-left:-163.352249pt;}
._d{margin-left:-3.451201pt;}
._3{margin-left:-2.420053pt;}
._2{margin-left:-0.946347pt;}
._1{width:0.899690pt;}
._4{width:1.977066pt;}
._5{width:2.910937pt;}
._8{width:4.463997pt;}
._9{width:5.397333pt;}
._0{width:6.635765pt;}
._c{width:7.802133pt;}
._7{width:8.860694pt;}
._6{width:9.886400pt;}
._16{width:10.779307pt;}
._e{width:12.718720pt;}
._17{width:13.612160pt;}
._a{width:14.642667pt;}
._b{width:15.656362pt;}
._1e{width:16.676397pt;}
._18{width:21.001920pt;}
._1d{width:22.455787pt;}
._1c{width:119.117760pt;}
._19{width:208.522880pt;}
._1a{width:226.799360pt;}
._1b{width:244.594880pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs7{font-size:53.119500pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:4.000000pt;}
.yd1{bottom:5.120000pt;}
.yf6{bottom:6.000000pt;}
.y46{bottom:6.362639pt;}
.y99{bottom:6.960000pt;}
.y9b{bottom:7.040000pt;}
.ye8{bottom:7.120000pt;}
.yc8{bottom:9.360000pt;}
.yca{bottom:10.320000pt;}
.ycc{bottom:10.400000pt;}
.yc6{bottom:10.426667pt;}
.y45{bottom:16.910784pt;}
.y48{bottom:16.910814pt;}
.yf4{bottom:20.160000pt;}
.y115{bottom:22.560000pt;}
.y119{bottom:22.640000pt;}
.y47{bottom:25.422970pt;}
.y9f{bottom:31.280000pt;}
.yf2{bottom:40.426667pt;}
.yed{bottom:57.786667pt;}
.y2{bottom:65.226667pt;}
.y2b{bottom:65.946667pt;}
.yec{bottom:75.546667pt;}
.yf3{bottom:76.426667pt;}
.yee{bottom:81.626667pt;}
.y1{bottom:89.066667pt;}
.yeb{bottom:91.786667pt;}
.yef{bottom:105.493333pt;}
.y117{bottom:106.506667pt;}
.y82{bottom:110.586667pt;}
.yad{bottom:115.466667pt;}
.y163{bottom:123.146667pt;}
.y29{bottom:126.266667pt;}
.yf0{bottom:129.360000pt;}
.y116{bottom:130.826667pt;}
.y138{bottom:137.466667pt;}
.y162{bottom:138.746667pt;}
.yac{bottom:139.786667pt;}
.y28{bottom:141.866667pt;}
.y81{bottom:142.986667pt;}
.y137{bottom:153.146667pt;}
.yf1{bottom:153.226667pt;}
.y161{bottom:154.426667pt;}
.y114{bottom:155.146667pt;}
.y59{bottom:156.986667pt;}
.y27{bottom:157.546667pt;}
.y102{bottom:159.306667pt;}
.yab{bottom:164.106667pt;}
.y80{bottom:166.586667pt;}
.y136{bottom:168.746667pt;}
.y58{bottom:172.586667pt;}
.y26{bottom:173.146667pt;}
.y160{bottom:178.026667pt;}
.y135{bottom:184.346667pt;}
.y57{bottom:188.266667pt;}
.yaa{bottom:188.346667pt;}
.y25{bottom:188.746667pt;}
.y15f{bottom:193.626667pt;}
.y101{bottom:196.906667pt;}
.y7f{bottom:198.186667pt;}
.y134{bottom:200.026667pt;}
.y56{bottom:203.866667pt;}
.y24{bottom:204.426667pt;}
.ya9{bottom:212.666667pt;}
.y7e{bottom:213.866667pt;}
.y113{bottom:214.026667pt;}
.y15e{bottom:217.306667pt;}
.y55{bottom:219.466667pt;}
.y23{bottom:220.026667pt;}
.y100{bottom:221.226667pt;}
.y7d{bottom:229.466667pt;}
.y133{bottom:231.626667pt;}
.y15d{bottom:232.906667pt;}
.y54{bottom:235.146667pt;}
.y22{bottom:235.706667pt;}
.ya8{bottom:236.986667pt;}
.y112{bottom:237.706667pt;}
.y7c{bottom:245.146667pt;}
.yff{bottom:245.466667pt;}
.y132{bottom:247.226667pt;}
.y21{bottom:251.306667pt;}
.y15c{bottom:256.586667pt;}
.y53{bottom:258.746667pt;}
.y7b{bottom:260.746667pt;}
.ycf{bottom:260.986667pt;}
.ya7{bottom:261.306667pt;}
.y131{bottom:262.906667pt;}
.y20{bottom:266.906667pt;}
.y111{bottom:269.306667pt;}
.yfe{bottom:269.786667pt;}
.y15b{bottom:272.186667pt;}
.yce{bottom:274.266667pt;}
.y130{bottom:278.506667pt;}
.y1f{bottom:282.586667pt;}
.y7a{bottom:284.346667pt;}
.ya6{bottom:285.546667pt;}
.ye9{bottom:286.426667pt;}
.y52{bottom:287.706667pt;}
.y15a{bottom:287.786667pt;}
.yfd{bottom:294.106667pt;}
.y12f{bottom:294.186667pt;}
.y110{bottom:297.946667pt;}
.y1e{bottom:298.186667pt;}
.ye7{bottom:299.706667pt;}
.ycd{bottom:301.946667pt;}
.y12e{bottom:309.786667pt;}
.ya5{bottom:309.866667pt;}
.y159{bottom:311.466667pt;}
.y79{bottom:313.306667pt;}
.y1d{bottom:313.866667pt;}
.yfc{bottom:318.426667pt;}
.y51{bottom:319.386667pt;}
.ye6{bottom:324.106667pt;}
.y158{bottom:327.066667pt;}
.y1c{bottom:329.466667pt;}
.ycb{bottom:329.626667pt;}
.y12d{bottom:333.706667pt;}
.ya4{bottom:334.186667pt;}
.y50{bottom:334.986667pt;}
.y157{bottom:342.746667pt;}
.y78{bottom:344.986667pt;}
.y1b{bottom:345.066667pt;}
.ye5{bottom:348.426667pt;}
.y4f{bottom:350.586667pt;}
.yc9{bottom:357.306667pt;}
.ya3{bottom:358.426667pt;}
.yfb{bottom:361.706667pt;}
.y4e{bottom:366.266667pt;}
.y156{bottom:366.346667pt;}
.y1a{bottom:368.986667pt;}
.ye4{bottom:372.746667pt;}
.y77{bottom:376.586667pt;}
.y4d{bottom:381.866667pt;}
.y155{bottom:381.946667pt;}
.ya2{bottom:382.746667pt;}
.yc7{bottom:384.986667pt;}
.yfa{bottom:385.306667pt;}
.y12c{bottom:392.266667pt;}
.ye3{bottom:396.986667pt;}
.y4c{bottom:405.546667pt;}
.y154{bottom:405.626667pt;}
.ya1{bottom:407.066667pt;}
.y12b{bottom:407.866667pt;}
.y76{bottom:408.266667pt;}
.yc5{bottom:411.626667pt;}
.y19{bottom:411.946667pt;}
.yf9{bottom:416.986667pt;}
.y153{bottom:421.253333pt;}
.ye2{bottom:421.333333pt;}
.y75{bottom:423.893333pt;}
.y18{bottom:427.893333pt;}
.y9e{bottom:431.413333pt;}
.y4b{bottom:437.173333pt;}
.yc4{bottom:439.333333pt;}
.y74{bottom:439.493333pt;}
.y12a{bottom:439.573333pt;}
.y152{bottom:444.933333pt;}
.ye1{bottom:445.653333pt;}
.y4a{bottom:452.773333pt;}
.y129{bottom:455.173333pt;}
.ya0{bottom:455.653333pt;}
.y151{bottom:460.533333pt;}
.y17{bottom:460.773333pt;}
.y73{bottom:463.173333pt;}
.yc3{bottom:463.653333pt;}
.ye0{bottom:469.973333pt;}
.y128{bottom:470.773333pt;}
.y16{bottom:476.373333pt;}
.y44{bottom:480.866630pt;}
.y49{bottom:481.493333pt;}
.y150{bottom:484.133333pt;}
.y127{bottom:486.453333pt;}
.yc2{bottom:487.893333pt;}
.y15{bottom:492.053333pt;}
.y72{bottom:494.773333pt;}
.y9d{bottom:498.933333pt;}
.y14f{bottom:499.813333pt;}
.y126{bottom:502.053333pt;}
.y14{bottom:507.653333pt;}
.y71{bottom:510.453333pt;}
.yc1{bottom:512.213333pt;}
.ydf{bottom:513.333333pt;}
.y10f{bottom:514.933333pt;}
.y125{bottom:517.733333pt;}
.y9c{bottom:522.613333pt;}
.y13{bottom:523.333333pt;}
.y14e{bottom:523.413333pt;}
.y70{bottom:526.053333pt;}
.y10e{bottom:528.293333pt;}
.y124{bottom:533.333333pt;}
.yde{bottom:534.613333pt;}
.yc0{bottom:536.533333pt;}
.y43{bottom:538.853333pt;}
.y12{bottom:538.933333pt;}
.y14d{bottom:539.093333pt;}
.y6f{bottom:541.653333pt;}
.y9a{bottom:551.893333pt;}
.y10d{bottom:552.533333pt;}
.y42{bottom:554.453333pt;}
.y11{bottom:554.533333pt;}
.y6e{bottom:557.333333pt;}
.ydd{bottom:558.933333pt;}
.ybf{bottom:560.853333pt;}
.y14c{bottom:562.693333pt;}
.y123{bottom:564.933333pt;}
.y41{bottom:570.133333pt;}
.y10{bottom:570.213333pt;}
.y6d{bottom:572.933333pt;}
.y98{bottom:576.213333pt;}
.y10c{bottom:576.853333pt;}
.y122{bottom:580.613333pt;}
.ydc{bottom:583.253333pt;}
.y40{bottom:585.733333pt;}
.yf{bottom:585.813333pt;}
.y14b{bottom:586.293333pt;}
.y121{bottom:596.213333pt;}
.y6c{bottom:596.613333pt;}
.y10b{bottom:601.173333pt;}
.ye{bottom:601.493333pt;}
.y14a{bottom:601.973333pt;}
.ybe{bottom:604.133333pt;}
.ydb{bottom:607.493333pt;}
.y3f{bottom:609.413333pt;}
.y120{bottom:611.893333pt;}
.yd{bottom:617.093333pt;}
.y149{bottom:617.573333pt;}
.y97{bottom:619.493333pt;}
.y10a{bottom:625.493333pt;}
.y11f{bottom:627.493333pt;}
.ybd{bottom:627.733333pt;}
.y6b{bottom:628.213333pt;}
.yda{bottom:631.813333pt;}
.yc{bottom:641.013333pt;}
.y148{bottom:641.253333pt;}
.y96{bottom:643.093333pt;}
.y6a{bottom:643.813333pt;}
.y109{bottom:649.733333pt;}
.yd9{bottom:656.133333pt;}
.y3e{bottom:656.613333pt;}
.ybc{bottom:656.693333pt;}
.y147{bottom:656.853333pt;}
.y11e{bottom:659.093333pt;}
.y69{bottom:659.493333pt;}
.y3d{bottom:672.293333pt;}
.y95{bottom:675.013333pt;}
.y68{bottom:675.093333pt;}
.yd8{bottom:680.453333pt;}
.yb{bottom:683.893333pt;}
.ybb{bottom:686.053333pt;}
.y11d{bottom:687.733333pt;}
.y108{bottom:693.013333pt;}
.y3c{bottom:695.893333pt;}
.y67{bottom:698.693333pt;}
.y146{bottom:704.133333pt;}
.yd7{bottom:704.693333pt;}
.y107{bottom:708.693333pt;}
.yba{bottom:710.373333pt;}
.ya{bottom:715.733333pt;}
.y94{bottom:717.973333pt;}
.y145{bottom:719.733333pt;}
.y3b{bottom:727.573333pt;}
.y66{bottom:730.373333pt;}
.y106{bottom:732.293333pt;}
.y93{bottom:733.573333pt;}
.yb9{bottom:734.613333pt;}
.y3a{bottom:743.173333pt;}
.y144{bottom:743.413333pt;}
.y9{bottom:747.733333pt;}
.yd6{bottom:747.973333pt;}
.y92{bottom:749.973333pt;}
.y39{bottom:758.773333pt;}
.yb8{bottom:758.933333pt;}
.y143{bottom:759.013333pt;}
.y65{bottom:761.973333pt;}
.y105{bottom:763.973333pt;}
.y91{bottom:765.573333pt;}
.yd5{bottom:771.653333pt;}
.y38{bottom:774.453333pt;}
.yf8{bottom:780.613333pt;}
.y90{bottom:781.173333pt;}
.y142{bottom:782.933333pt;}
.y8{bottom:783.093333pt;}
.yb7{bottom:783.253333pt;}
.y37{bottom:790.053333pt;}
.y64{bottom:793.653333pt;}
.y104{bottom:795.573333pt;}
.y8f{bottom:797.573333pt;}
.y7{bottom:799.093333pt;}
.yd4{bottom:800.613333pt;}
.y36{bottom:805.733333pt;}
.yb6{bottom:807.493333pt;}
.yf7{bottom:812.213333pt;}
.y8e{bottom:813.173333pt;}
.y6{bottom:815.093333pt;}
.y103{bottom:824.213333pt;}
.y63{bottom:825.253333pt;}
.y141{bottom:825.813333pt;}
.y35{bottom:829.333333pt;}
.y8d{bottom:829.573333pt;}
.yb5{bottom:831.813333pt;}
.yd3{bottom:832.213333pt;}
.yf5{bottom:833.573333pt;}
.y62{bottom:840.853333pt;}
.y140{bottom:841.493333pt;}
.y5{bottom:843.813333pt;}
.y8c{bottom:845.173333pt;}
.yd0{bottom:845.573333pt;}
.yea{bottom:849.680000pt;}
.yb4{bottom:856.133333pt;}
.y61{bottom:856.533333pt;}
.y13f{bottom:857.093333pt;}
.y8b{bottom:860.773333pt;}
.y34{bottom:861.253333pt;}
.y60{bottom:872.133333pt;}
.y13e{bottom:872.693333pt;}
.y4{bottom:877.893333pt;}
.yb3{bottom:880.453333pt;}
.y8a{bottom:885.173333pt;}
.y13d{bottom:888.373333pt;}
.y5f{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y33{bottom:904.160000pt;}
.yb2{bottom:904.720000pt;}
.y11c{bottom:908.800000pt;}
.y13c{bottom:912.320000pt;}
.y89{bottom:916.880000pt;}
.y32{bottom:919.840000pt;}
.y11b{bottom:922.080000pt;}
.y5e{bottom:927.440000pt;}
.yb1{bottom:929.040000pt;}
.y88{bottom:932.480000pt;}
.y31{bottom:935.440000pt;}
.y5d{bottom:943.040000pt;}
.y13b{bottom:945.200000pt;}
.y11a{bottom:946.400000pt;}
.y87{bottom:948.160000pt;}
.y30{bottom:951.040000pt;}
.yb0{bottom:953.360000pt;}
.y5c{bottom:958.720000pt;}
.y86{bottom:963.760000pt;}
.y2f{bottom:966.720000pt;}
.y13a{bottom:969.120000pt;}
.y5b{bottom:974.320000pt;}
.yaf{bottom:977.680000pt;}
.y85{bottom:980.080000pt;}
.y2e{bottom:982.320000pt;}
.y118{bottom:986.320000pt;}
.y5a{bottom:990.000000pt;}
.y84{bottom:996.480000pt;}
.y2d{bottom:998.000000pt;}
.yae{bottom:1001.920000pt;}
.y139{bottom:1002.320000pt;}
.y83{bottom:1012.800000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h11{height:23.626667pt;}
.hf{height:23.680000pt;}
.h17{height:23.706667pt;}
.h18{height:23.760000pt;}
.h13{height:26.000000pt;}
.h14{height:26.960000pt;}
.h15{height:27.040000pt;}
.h12{height:27.066667pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h9{height:38.399648pt;}
.h1d{height:39.200000pt;}
.h1e{height:39.280000pt;}
.h1b{height:40.393125pt;}
.h7{height:45.246562pt;}
.h10{height:47.920000pt;}
.h5{height:49.581562pt;}
.ha{height:52.133884pt;}
.h1a{height:53.152969pt;}
.hb{height:53.309531pt;}
.hc{height:54.927899pt;}
.h8{height:55.631875pt;}
.hd{height:60.961875pt;}
.h4{height:63.128437pt;}
.h19{height:171.920000pt;}
.h16{height:180.026667pt;}
.h1c{height:192.026667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:43.306667pt;}
.wa{width:46.400000pt;}
.w9{width:60.080000pt;}
.w26{width:62.640000pt;}
.w1c{width:65.200000pt;}
.w6{width:67.680000pt;}
.w8{width:74.800000pt;}
.w22{width:75.360000pt;}
.w20{width:75.386667pt;}
.w1e{width:78.240000pt;}
.w21{width:80.560000pt;}
.w1f{width:82.720000pt;}
.wf{width:86.640000pt;}
.w16{width:86.666667pt;}
.w25{width:90.160000pt;}
.w17{width:91.360000pt;}
.w7{width:129.306667pt;}
.w2a{width:138.560000pt;}
.w23{width:141.360000pt;}
.w27{width:149.866667pt;}
.w5{width:150.400000pt;}
.w12{width:152.800000pt;}
.we{width:152.826667pt;}
.w13{width:152.880000pt;}
.w29{width:155.226667pt;}
.w24{width:162.586667pt;}
.w28{width:162.880000pt;}
.wb{width:174.720000pt;}
.w3{width:236.129901pt;}
.wc{width:274.506667pt;}
.w19{width:293.760000pt;}
.w10{width:299.786667pt;}
.w14{width:306.426667pt;}
.w11{width:307.786667pt;}
.w1b{width:312.026667pt;}
.w1a{width:313.786667pt;}
.w18{width:332.106667pt;}
.w1d{width:394.906667pt;}
.wd{width:449.866667pt;}
.w15{width:459.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.x8{left:16.071541pt;}
.x29{left:29.440000pt;}
.x27{left:36.986667pt;}
.x26{left:47.120000pt;}
.x1{left:60.480000pt;}
.x28{left:62.853333pt;}
.xc{left:84.479988pt;}
.x1b{left:92.880000pt;}
.x3d{left:98.879988pt;}
.xd{left:108.479988pt;}
.x38{left:124.400000pt;}
.x2a{left:128.053333pt;}
.xe{left:132.480000pt;}
.x7{left:139.331901pt;}
.x15{left:148.506667pt;}
.x1f{left:167.066667pt;}
.x2{left:171.306655pt;}
.x10{left:176.426667pt;}
.x6{left:181.304192pt;}
.x16{left:195.626667pt;}
.x5{left:214.915933pt;}
.x1e{left:229.946655pt;}
.x22{left:230.986667pt;}
.x30{left:232.506667pt;}
.x18{left:253.466667pt;}
.xa{left:268.666655pt;}
.x39{left:274.906667pt;}
.x4{left:278.973333pt;}
.x2f{left:280.266655pt;}
.x37{left:291.706655pt;}
.x1c{left:292.906667pt;}
.x19{left:300.506667pt;}
.x2d{left:305.146667pt;}
.x2b{left:306.906667pt;}
.x31{left:311.466667pt;}
.x20{left:320.586667pt;}
.x11{left:327.466667pt;}
.xb{left:342.666655pt;}
.x17{left:370.986667pt;}
.x35{left:374.266667pt;}
.x23{left:384.426667pt;}
.x1d{left:393.306667pt;}
.x32{left:394.826667pt;}
.x12{left:395.866667pt;}
.x2c{left:398.186667pt;}
.x25{left:400.160000pt;}
.x3a{left:438.426667pt;}
.x1a{left:453.973333pt;}
.x24{left:471.733333pt;}
.x21{left:474.133333pt;}
.x9{left:515.093322pt;}
.x13{left:525.893333pt;}
.x36{left:537.493333pt;}
.x33{left:552.053333pt;}
.x3b{left:594.293333pt;}
.x14{left:601.413333pt;}
.x34{left:639.013322pt;}
.x3c{left:657.173322pt;}
.x2e{left:672.053322pt;}
.x3{left:711.413322pt;}
}




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