
    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_50f98d823a025e40d8cabc7f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7e1d2c852d83671f83a853bc.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9e35589d36c5fd2116f0dab9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2c96f6d8681cd2fcb4ea33cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_26ecd9aa594cf42dbe645c86.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.981934;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m4{transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261100,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1a{letter-spacing:-1.158000px;}
.ls1e{letter-spacing:-0.960000px;}
.ls11{letter-spacing:-0.570000px;}
.ls19{letter-spacing:-0.546000px;}
.ls8{letter-spacing:-0.463800px;}
.ls9{letter-spacing:-0.303000px;}
.ls25{letter-spacing:-0.298200px;}
.ls28{letter-spacing:-0.240600px;}
.ls7{letter-spacing:-0.132600px;}
.ls2c{letter-spacing:-0.115800px;}
.ls2d{letter-spacing:-0.107400px;}
.ls2e{letter-spacing:-0.078600px;}
.ls29{letter-spacing:-0.064800px;}
.lse{letter-spacing:-0.058320px;}
.ls16{letter-spacing:-0.055440px;}
.lsa{letter-spacing:-0.020160px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.038880px;}
.ls2b{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.ls1{letter-spacing:0.074880px;}
.lsd{letter-spacing:0.075000px;}
.ls15{letter-spacing:0.112200px;}
.ls17{letter-spacing:0.126600px;}
.ls26{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.150000px;}
.ls2{letter-spacing:0.174000px;}
.lsf{letter-spacing:0.174240px;}
.ls13{letter-spacing:0.186600px;}
.ls2f{letter-spacing:0.357000px;}
.ls33{letter-spacing:0.393600px;}
.ls2a{letter-spacing:0.421800px;}
.ls1c{letter-spacing:0.479400px;}
.ls31{letter-spacing:0.479520px;}
.ls27{letter-spacing:0.606000px;}
.ls1d{letter-spacing:0.660000px;}
.ls30{letter-spacing:0.780000px;}
.lsc{letter-spacing:0.792000px;}
.ls1f{letter-spacing:0.894240px;}
.ls12{letter-spacing:1.008000px;}
.ls4{letter-spacing:1.614240px;}
.ls1b{letter-spacing:2.046000px;}
.ls14{letter-spacing:2.100000px;}
.ls22{letter-spacing:2.334240px;}
.ls23{letter-spacing:3.774240px;}
.ls20{letter-spacing:4.494240px;}
.ls3{letter-spacing:5.214240px;}
.ls21{letter-spacing:8.814240px;}
.ls32{letter-spacing:12.186720px;}
.ls24{letter-spacing:18.174240px;}
.ls18{letter-spacing:42.426720px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws0{word-spacing:-19.077120px;}
.wsc{word-spacing:-15.605760px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws2{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.297760px;}
.wsb{word-spacing:-13.692360px;}
.wsf{word-spacing:-13.646160px;}
.wse{word-spacing:-13.617960px;}
.ws8{word-spacing:-13.580760px;}
.ws6{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.450320px;}
.ws9{word-spacing:-13.447440px;}
.ws10{word-spacing:-13.440960px;}
.ws12{word-spacing:-13.427160px;}
.ws11{word-spacing:-13.398360px;}
.ws4{word-spacing:-9.437760px;}
.ws5{word-spacing:-8.786880px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-533.278560px;}
._1e{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._12{margin-left:-292.350240px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._17{margin-left:-247.991040px;}
._b{margin-left:-240.510240px;}
._16{margin-left:-222.594000px;}
._21{margin-left:-214.738560px;}
._f{margin-left:-202.866240px;}
._18{margin-left:-200.514720px;}
._20{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._25{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._10{margin-left:-160.046400px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._24{margin-left:-145.392000px;}
._c{margin-left:-134.192160px;}
._1f{margin-left:-133.011360px;}
._11{margin-left:-115.342560px;}
._23{margin-left:-109.266240px;}
._1c{margin-left:-102.349440px;}
._7{margin-left:-91.124880px;}
._1b{margin-left:-86.399760px;}
._1a{margin-left:-83.520000px;}
._13{margin-left:-81.171360px;}
._15{margin-left:-66.703680px;}
._22{margin-left:-53.422560px;}
._14{margin-left:-49.303920px;}
._19{margin-left:-32.468640px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._28{width:1.297920px;}
._2a{width:2.656080px;}
._29{width:3.694080px;}
._2c{width:4.983360px;}
._2b{width:6.394320px;}
._30{width:7.546560px;}
._2d{width:8.835840px;}
._27{width:9.863280px;}
._2e{width:11.115360px;}
._32{width:12.284400px;}
._31{width:14.700960px;}
._35{width:15.716880px;}
._34{width:17.449920px;}
._36{width:18.482400px;}
._2f{width:19.900080px;}
._33{width:26.968560px;}
.fc3{color:rgb(31,55,99);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.960000px;}
.y81{bottom:3.996000px;}
.y90{bottom:4.005000px;}
.ycf{bottom:22.140000px;}
.y7e{bottom:22.320000px;}
.y6{bottom:59.940000px;}
.y83{bottom:85.860000px;}
.y120{bottom:93.420000px;}
.yf8{bottom:95.400000px;}
.yef{bottom:100.440000px;}
.ya4{bottom:100.980000px;}
.y31{bottom:101.340000px;}
.y113{bottom:104.400000px;}
.y82{bottom:105.840000px;}
.y64{bottom:107.460000px;}
.yc8{bottom:108.540000px;}
.y11f{bottom:113.400000px;}
.yf7{bottom:116.460000px;}
.ya3{bottom:122.040000px;}
.y30{bottom:122.400000px;}
.y112{bottom:125.460000px;}
.y80{bottom:125.820000px;}
.y63{bottom:128.556000px;}
.yc7{bottom:129.636000px;}
.yee{bottom:130.536000px;}
.y11e{bottom:134.496000px;}
.ya2{bottom:137.196000px;}
.yf6{bottom:137.556000px;}
.y2f{bottom:143.496000px;}
.y7f{bottom:145.656000px;}
.y111{bottom:146.556000px;}
.y62{bottom:149.616000px;}
.yc6{bottom:150.690000px;}
.yed{bottom:151.590000px;}
.y11d{bottom:155.550000px;}
.yf5{bottom:158.610000px;}
.y2e{bottom:164.550000px;}
.y7c{bottom:165.630000px;}
.ya1{bottom:166.710000px;}
.y110{bottom:167.610000px;}
.y61{bottom:170.670000px;}
.yc5{bottom:171.750000px;}
.yec{bottom:172.650000px;}
.y11c{bottom:176.610000px;}
.yf4{bottom:179.670000px;}
.y2d{bottom:185.610000px;}
.yc4{bottom:186.870000px;}
.y10f{bottom:188.670000px;}
.y60{bottom:191.730000px;}
.yeb{bottom:193.710000px;}
.ya0{bottom:196.050000px;}
.y11b{bottom:197.670000px;}
.yf3{bottom:200.730000px;}
.yc3{bottom:205.950000px;}
.y2c{bottom:206.670000px;}
.y7b{bottom:209.730000px;}
.y5f{bottom:212.790000px;}
.yea{bottom:214.770000px;}
.y11a{bottom:218.730000px;}
.yf2{bottom:221.790000px;}
.yc2{bottom:224.850000px;}
.y9f{bottom:225.390000px;}
.y2b{bottom:227.730000px;}
.y7a{bottom:230.790000px;}
.y5e{bottom:233.850000px;}
.ye9{bottom:235.830000px;}
.y119{bottom:239.790000px;}
.yf1{bottom:242.850000px;}
.yc1{bottom:243.930000px;}
.y2a{bottom:248.790000px;}
.y79{bottom:251.850000px;}
.y9e{bottom:254.910000px;}
.ye8{bottom:256.890000px;}
.y118{bottom:260.850000px;}
.yc0{bottom:263.010000px;}
.y5d{bottom:263.910000px;}
.y29{bottom:269.850000px;}
.y78{bottom:272.910000px;}
.ye7{bottom:277.950000px;}
.y117{bottom:281.910000px;}
.ybf{bottom:282.090000px;}
.y5c{bottom:284.970000px;}
.y28{bottom:290.910000px;}
.y77{bottom:293.970000px;}
.y9d{bottom:298.830000px;}
.y116{bottom:302.970000px;}
.y5b{bottom:306.030000px;}
.ybe{bottom:307.830000px;}
.y27{bottom:311.970000px;}
.y76{bottom:315.030000px;}
.y9c{bottom:319.890000px;}
.y115{bottom:324.030000px;}
.y5a{bottom:327.090000px;}
.ybd{bottom:328.890000px;}
.y26{bottom:333.030000px;}
.y75{bottom:336.090000px;}
.y9b{bottom:340.950000px;}
.y114{bottom:345.090000px;}
.y59{bottom:348.150000px;}
.ybc{bottom:349.950000px;}
.y25{bottom:354.090000px;}
.y74{bottom:357.150000px;}
.y9a{bottom:362.010000px;}
.y10e{bottom:366.150000px;}
.y58{bottom:369.210000px;}
.ybb{bottom:371.010000px;}
.y24{bottom:375.150000px;}
.y73{bottom:378.210000px;}
.y99{bottom:383.115000px;}
.y10d{bottom:387.255000px;}
.y57{bottom:390.315000px;}
.yba{bottom:392.115000px;}
.y23{bottom:396.255000px;}
.y72{bottom:399.315000px;}
.y98{bottom:404.175000px;}
.y10c{bottom:408.315000px;}
.y56{bottom:411.375000px;}
.yb9{bottom:413.175000px;}
.y22{bottom:417.315000px;}
.y71{bottom:420.375000px;}
.y97{bottom:425.235000px;}
.y10b{bottom:429.375000px;}
.y55{bottom:432.435000px;}
.yb8{bottom:434.235000px;}
.y21{bottom:438.375000px;}
.y70{bottom:441.435000px;}
.y96{bottom:442.515000px;}
.ye6{bottom:446.295000px;}
.yb7{bottom:449.355000px;}
.y10a{bottom:450.435000px;}
.y54{bottom:453.495000px;}
.y20{bottom:459.435000px;}
.y6f{bottom:462.495000px;}
.ye5{bottom:467.355000px;}
.yb6{bottom:469.155000px;}
.y109{bottom:471.495000px;}
.y53{bottom:474.555000px;}
.y1f{bottom:480.495000px;}
.y6e{bottom:483.555000px;}
.ye4{bottom:488.415000px;}
.y108{bottom:492.555000px;}
.yb5{bottom:495.435000px;}
.y52{bottom:495.615000px;}
.y1e{bottom:501.555000px;}
.y6d{bottom:504.615000px;}
.y107{bottom:513.615000px;}
.yb4{bottom:516.495000px;}
.y51{bottom:516.675000px;}
.ye3{bottom:518.475000px;}
.y1d{bottom:522.615000px;}
.y6c{bottom:525.675000px;}
.y106{bottom:534.675000px;}
.yb3{bottom:537.555000px;}
.ye2{bottom:539.535000px;}
.y1c{bottom:543.675000px;}
.y50{bottom:546.735000px;}
.y105{bottom:555.735000px;}
.yb2{bottom:558.615000px;}
.ye1{bottom:560.595000px;}
.y1b{bottom:564.735000px;}
.y4f{bottom:567.795000px;}
.y104{bottom:576.795000px;}
.yb1{bottom:579.675000px;}
.ye0{bottom:581.655000px;}
.y1a{bottom:585.795000px;}
.y4e{bottom:588.855000px;}
.y103{bottom:597.855000px;}
.yb0{bottom:600.735000px;}
.ydf{bottom:602.715000px;}
.y19{bottom:606.855000px;}
.y4d{bottom:609.915000px;}
.y102{bottom:618.915000px;}
.yaf{bottom:621.795000px;}
.yde{bottom:623.775000px;}
.y18{bottom:627.915000px;}
.y4c{bottom:630.975000px;}
.y101{bottom:640.005000px;}
.yae{bottom:642.885000px;}
.ydd{bottom:644.865000px;}
.y17{bottom:651.345000px;}
.y4b{bottom:652.065000px;}
.y100{bottom:661.065000px;}
.yad{bottom:663.945000px;}
.ydc{bottom:665.925000px;}
.y4a{bottom:673.125000px;}
.y16{bottom:681.225000px;}
.yff{bottom:682.125000px;}
.yac{bottom:685.005000px;}
.ydb{bottom:686.985000px;}
.y49{bottom:694.185000px;}
.y15{bottom:702.285000px;}
.yfe{bottom:703.185000px;}
.yab{bottom:706.065000px;}
.yda{bottom:708.045000px;}
.y48{bottom:715.245000px;}
.y14{bottom:723.345000px;}
.yfd{bottom:724.245000px;}
.yaa{bottom:727.125000px;}
.yd9{bottom:729.105000px;}
.y47{bottom:736.305000px;}
.ya9{bottom:742.245000px;}
.y13{bottom:744.405000px;}
.yfc{bottom:745.305000px;}
.yd8{bottom:750.165000px;}
.y46{bottom:757.185000px;}
.ya8{bottom:761.325000px;}
.y12{bottom:765.465000px;}
.yfb{bottom:766.185000px;}
.yd7{bottom:771.225000px;}
.y45{bottom:778.245000px;}
.ya7{bottom:780.405000px;}
.y95{bottom:782.205000px;}
.y11{bottom:786.525000px;}
.yfa{bottom:787.245000px;}
.yd6{bottom:792.285000px;}
.y44{bottom:799.305000px;}
.ya6{bottom:799.485000px;}
.y94{bottom:803.265000px;}
.y10{bottom:807.585000px;}
.yf9{bottom:808.305000px;}
.yd5{bottom:813.345000px;}
.ya5{bottom:818.565000px;}
.y43{bottom:820.365000px;}
.y93{bottom:824.325000px;}
.yd4{bottom:828.465000px;}
.yf{bottom:828.645000px;}
.yf0{bottom:829.365000px;}
.y6b{bottom:841.425000px;}
.y92{bottom:845.385000px;}
.yd3{bottom:847.545000px;}
.ye{bottom:849.705000px;}
.y42{bottom:850.425000px;}
.y91{bottom:860.505000px;}
.y6a{bottom:862.485000px;}
.yd2{bottom:866.625000px;}
.yd{bottom:870.765000px;}
.y41{bottom:871.485000px;}
.y8f{bottom:880.485000px;}
.y69{bottom:883.545000px;}
.yd1{bottom:885.750000px;}
.y40{bottom:892.590000px;}
.yc{bottom:894.030000px;}
.y8e{bottom:900.330000px;}
.y68{bottom:904.650000px;}
.yd0{bottom:904.830000px;}
.y3f{bottom:913.650000px;}
.yb{bottom:920.310000px;}
.yce{bottom:923.910000px;}
.y67{bottom:925.710000px;}
.y3e{bottom:934.710000px;}
.ya{bottom:937.050000px;}
.y8d{bottom:940.290000px;}
.y66{bottom:946.770000px;}
.y3d{bottom:955.770000px;}
.y9{bottom:959.370000px;}
.y8c{bottom:960.270000px;}
.y65{bottom:967.830000px;}
.y3c{bottom:976.830000px;}
.y8b{bottom:980.250000px;}
.y8{bottom:984.570000px;}
.ycd{bottom:988.890000px;}
.y3b{bottom:997.890000px;}
.y8a{bottom:1000.230000px;}
.ycc{bottom:1009.950000px;}
.y7{bottom:1018.230000px;}
.y3a{bottom:1018.950000px;}
.y89{bottom:1020.030000px;}
.ycb{bottom:1031.010000px;}
.y39{bottom:1040.010000px;}
.yca{bottom:1052.070000px;}
.y5{bottom:1058.370000px;}
.y88{bottom:1059.990000px;}
.y38{bottom:1061.070000px;}
.yc9{bottom:1073.130000px;}
.y87{bottom:1079.970000px;}
.y37{bottom:1082.130000px;}
.y4{bottom:1090.590000px;}
.y86{bottom:1099.950000px;}
.y36{bottom:1103.190000px;}
.y85{bottom:1119.930000px;}
.y3{bottom:1122.810000px;}
.y35{bottom:1124.250000px;}
.y84{bottom:1139.760000px;}
.y34{bottom:1145.340000px;}
.y2{bottom:1154.880000px;}
.y33{bottom:1173.240000px;}
.y1{bottom:1188.900000px;}
.y32{bottom:1193.400000px;}
.h14{height:18.180000px;}
.h11{height:18.360000px;}
.h15{height:18.396000px;}
.h13{height:18.900000px;}
.hd{height:19.080000px;}
.hc{height:19.116000px;}
.hb{height:19.260000px;}
.h10{height:28.620000px;}
.hf{height:28.800000px;}
.he{height:36.540000px;}
.ha{height:36.720000px;}
.h7{height:38.671172px;}
.h12{height:48.029766px;}
.h9{height:48.088125px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w17{width:80.136000px;}
.w16{width:109.080000px;}
.wa{width:117.360000px;}
.w9{width:117.936000px;}
.w11{width:119.556000px;}
.w6{width:122.076000px;}
.w5{width:124.956000px;}
.w7{width:126.036000px;}
.wb{width:131.076000px;}
.w3{width:134.676000px;}
.wc{width:134.856000px;}
.w4{width:139.680000px;}
.we{width:173.550000px;}
.wf{width:191.010000px;}
.w10{width:213.690000px;}
.w12{width:215.490000px;}
.w14{width:232.095000px;}
.w8{width:236.415000px;}
.wd{width:260.490000px;}
.w15{width:390.135000px;}
.w13{width:442.335000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xd{left:7.560000px;}
.x1f{left:26.999987px;}
.x6{left:53.999987px;}
.x33{left:61.559987px;}
.x26{left:69.659987px;}
.x14{left:76.500000px;}
.x7{left:80.999987px;}
.x22{left:96.156000px;}
.x38{left:108.035987px;}
.x20{left:109.116000px;}
.xc{left:121.536000px;}
.x19{left:133.416000px;}
.x2a{left:147.815987px;}
.x27{left:157.349987px;}
.x5{left:164.729987px;}
.x1c{left:171.570000px;}
.x32{left:173.189987px;}
.x34{left:175.349987px;}
.x37{left:180.029987px;}
.x2b{left:183.989987px;}
.x2d{left:215.129987px;}
.x30{left:251.669987px;}
.xe{left:256.935000px;}
.x13{left:271.694987px;}
.x2c{left:274.034987px;}
.x28{left:284.294987px;}
.x3{left:286.814987px;}
.x29{left:303.734987px;}
.x15{left:313.635000px;}
.x35{left:347.654987px;}
.x2{left:350.714987px;}
.x31{left:351.974987px;}
.x1d{left:386.175000px;}
.x1a{left:394.635000px;}
.xf{left:397.335000px;}
.x9{left:414.254987px;}
.x4{left:419.294987px;}
.x8{left:420.914987px;}
.xa{left:426.164987px;}
.x16{left:432.285000px;}
.x36{left:453.704987px;}
.x1{left:479.444987px;}
.xb{left:485.384987px;}
.x23{left:487.005000px;}
.x2e{left:497.804987px;}
.x1e{left:506.445000px;}
.x10{left:523.005000px;}
.x17{left:550.365000px;}
.x21{left:552.165000px;}
.x1b{left:568.905000px;}
.x2f{left:591.224987px;}
.x24{left:607.470000px;}
.x11{left:645.990000px;}
.x18{left:682.170000px;}
.x25{left:717.270000px;}
.x12{left:780.839987px;}
.x39{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1a{letter-spacing:-1.029333pt;}
.ls1e{letter-spacing:-0.853333pt;}
.ls11{letter-spacing:-0.506667pt;}
.ls19{letter-spacing:-0.485333pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls9{letter-spacing:-0.269333pt;}
.ls25{letter-spacing:-0.265067pt;}
.ls28{letter-spacing:-0.213867pt;}
.ls7{letter-spacing:-0.117867pt;}
.ls2c{letter-spacing:-0.102933pt;}
.ls2d{letter-spacing:-0.095467pt;}
.ls2e{letter-spacing:-0.069867pt;}
.ls29{letter-spacing:-0.057600pt;}
.lse{letter-spacing:-0.051840pt;}
.ls16{letter-spacing:-0.049280pt;}
.lsa{letter-spacing:-0.017920pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.034560pt;}
.ls2b{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.ls1{letter-spacing:0.066560pt;}
.lsd{letter-spacing:0.066667pt;}
.ls15{letter-spacing:0.099733pt;}
.ls17{letter-spacing:0.112533pt;}
.ls26{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133333pt;}
.ls2{letter-spacing:0.154667pt;}
.lsf{letter-spacing:0.154880pt;}
.ls13{letter-spacing:0.165867pt;}
.ls2f{letter-spacing:0.317333pt;}
.ls33{letter-spacing:0.349867pt;}
.ls2a{letter-spacing:0.374933pt;}
.ls1c{letter-spacing:0.426133pt;}
.ls31{letter-spacing:0.426240pt;}
.ls27{letter-spacing:0.538667pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls30{letter-spacing:0.693333pt;}
.lsc{letter-spacing:0.704000pt;}
.ls1f{letter-spacing:0.794880pt;}
.ls12{letter-spacing:0.896000pt;}
.ls4{letter-spacing:1.434880pt;}
.ls1b{letter-spacing:1.818667pt;}
.ls14{letter-spacing:1.866667pt;}
.ls22{letter-spacing:2.074880pt;}
.ls23{letter-spacing:3.354880pt;}
.ls20{letter-spacing:3.994880pt;}
.ls3{letter-spacing:4.634880pt;}
.ls21{letter-spacing:7.834880pt;}
.ls32{letter-spacing:10.832640pt;}
.ls24{letter-spacing:16.154880pt;}
.ls18{letter-spacing:37.712640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws0{word-spacing:-16.957440pt;}
.wsc{word-spacing:-13.871787pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws2{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.709120pt;}
.wsb{word-spacing:-12.170987pt;}
.wsf{word-spacing:-12.129920pt;}
.wse{word-spacing:-12.104853pt;}
.ws8{word-spacing:-12.071787pt;}
.ws6{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.955840pt;}
.ws9{word-spacing:-11.953280pt;}
.ws10{word-spacing:-11.947520pt;}
.ws12{word-spacing:-11.935253pt;}
.ws11{word-spacing:-11.909653pt;}
.ws4{word-spacing:-8.389120pt;}
.ws5{word-spacing:-7.810560pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-474.025387pt;}
._1e{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._12{margin-left:-259.866880pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._17{margin-left:-220.436480pt;}
._b{margin-left:-213.786880pt;}
._16{margin-left:-197.861333pt;}
._21{margin-left:-190.878720pt;}
._f{margin-left:-180.325547pt;}
._18{margin-left:-178.235307pt;}
._20{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._25{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._10{margin-left:-142.263467pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._24{margin-left:-129.237333pt;}
._c{margin-left:-119.281920pt;}
._1f{margin-left:-118.232320pt;}
._11{margin-left:-102.526720pt;}
._23{margin-left:-97.125547pt;}
._1c{margin-left:-90.977280pt;}
._7{margin-left:-80.999893pt;}
._1b{margin-left:-76.799787pt;}
._1a{margin-left:-74.240000pt;}
._13{margin-left:-72.152320pt;}
._15{margin-left:-59.292160pt;}
._22{margin-left:-47.486720pt;}
._14{margin-left:-43.825707pt;}
._19{margin-left:-28.861013pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._28{width:1.153707pt;}
._2a{width:2.360960pt;}
._29{width:3.283627pt;}
._2c{width:4.429653pt;}
._2b{width:5.683840pt;}
._30{width:6.708053pt;}
._2d{width:7.854080pt;}
._27{width:8.767360pt;}
._2e{width:9.880320pt;}
._32{width:10.919467pt;}
._31{width:13.067520pt;}
._35{width:13.970560pt;}
._34{width:15.511040pt;}
._36{width:16.428800pt;}
._2f{width:17.688960pt;}
._33{width:23.972053pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:3.520000pt;}
.y81{bottom:3.552000pt;}
.y90{bottom:3.560000pt;}
.ycf{bottom:19.680000pt;}
.y7e{bottom:19.840000pt;}
.y6{bottom:53.280000pt;}
.y83{bottom:76.320000pt;}
.y120{bottom:83.040000pt;}
.yf8{bottom:84.800000pt;}
.yef{bottom:89.280000pt;}
.ya4{bottom:89.760000pt;}
.y31{bottom:90.080000pt;}
.y113{bottom:92.800000pt;}
.y82{bottom:94.080000pt;}
.y64{bottom:95.520000pt;}
.yc8{bottom:96.480000pt;}
.y11f{bottom:100.800000pt;}
.yf7{bottom:103.520000pt;}
.ya3{bottom:108.480000pt;}
.y30{bottom:108.800000pt;}
.y112{bottom:111.520000pt;}
.y80{bottom:111.840000pt;}
.y63{bottom:114.272000pt;}
.yc7{bottom:115.232000pt;}
.yee{bottom:116.032000pt;}
.y11e{bottom:119.552000pt;}
.ya2{bottom:121.952000pt;}
.yf6{bottom:122.272000pt;}
.y2f{bottom:127.552000pt;}
.y7f{bottom:129.472000pt;}
.y111{bottom:130.272000pt;}
.y62{bottom:132.992000pt;}
.yc6{bottom:133.946667pt;}
.yed{bottom:134.746667pt;}
.y11d{bottom:138.266667pt;}
.yf5{bottom:140.986667pt;}
.y2e{bottom:146.266667pt;}
.y7c{bottom:147.226667pt;}
.ya1{bottom:148.186667pt;}
.y110{bottom:148.986667pt;}
.y61{bottom:151.706667pt;}
.yc5{bottom:152.666667pt;}
.yec{bottom:153.466667pt;}
.y11c{bottom:156.986667pt;}
.yf4{bottom:159.706667pt;}
.y2d{bottom:164.986667pt;}
.yc4{bottom:166.106667pt;}
.y10f{bottom:167.706667pt;}
.y60{bottom:170.426667pt;}
.yeb{bottom:172.186667pt;}
.ya0{bottom:174.266667pt;}
.y11b{bottom:175.706667pt;}
.yf3{bottom:178.426667pt;}
.yc3{bottom:183.066667pt;}
.y2c{bottom:183.706667pt;}
.y7b{bottom:186.426667pt;}
.y5f{bottom:189.146667pt;}
.yea{bottom:190.906667pt;}
.y11a{bottom:194.426667pt;}
.yf2{bottom:197.146667pt;}
.yc2{bottom:199.866667pt;}
.y9f{bottom:200.346667pt;}
.y2b{bottom:202.426667pt;}
.y7a{bottom:205.146667pt;}
.y5e{bottom:207.866667pt;}
.ye9{bottom:209.626667pt;}
.y119{bottom:213.146667pt;}
.yf1{bottom:215.866667pt;}
.yc1{bottom:216.826667pt;}
.y2a{bottom:221.146667pt;}
.y79{bottom:223.866667pt;}
.y9e{bottom:226.586667pt;}
.ye8{bottom:228.346667pt;}
.y118{bottom:231.866667pt;}
.yc0{bottom:233.786667pt;}
.y5d{bottom:234.586667pt;}
.y29{bottom:239.866667pt;}
.y78{bottom:242.586667pt;}
.ye7{bottom:247.066667pt;}
.y117{bottom:250.586667pt;}
.ybf{bottom:250.746667pt;}
.y5c{bottom:253.306667pt;}
.y28{bottom:258.586667pt;}
.y77{bottom:261.306667pt;}
.y9d{bottom:265.626667pt;}
.y116{bottom:269.306667pt;}
.y5b{bottom:272.026667pt;}
.ybe{bottom:273.626667pt;}
.y27{bottom:277.306667pt;}
.y76{bottom:280.026667pt;}
.y9c{bottom:284.346667pt;}
.y115{bottom:288.026667pt;}
.y5a{bottom:290.746667pt;}
.ybd{bottom:292.346667pt;}
.y26{bottom:296.026667pt;}
.y75{bottom:298.746667pt;}
.y9b{bottom:303.066667pt;}
.y114{bottom:306.746667pt;}
.y59{bottom:309.466667pt;}
.ybc{bottom:311.066667pt;}
.y25{bottom:314.746667pt;}
.y74{bottom:317.466667pt;}
.y9a{bottom:321.786667pt;}
.y10e{bottom:325.466667pt;}
.y58{bottom:328.186667pt;}
.ybb{bottom:329.786667pt;}
.y24{bottom:333.466667pt;}
.y73{bottom:336.186667pt;}
.y99{bottom:340.546667pt;}
.y10d{bottom:344.226667pt;}
.y57{bottom:346.946667pt;}
.yba{bottom:348.546667pt;}
.y23{bottom:352.226667pt;}
.y72{bottom:354.946667pt;}
.y98{bottom:359.266667pt;}
.y10c{bottom:362.946667pt;}
.y56{bottom:365.666667pt;}
.yb9{bottom:367.266667pt;}
.y22{bottom:370.946667pt;}
.y71{bottom:373.666667pt;}
.y97{bottom:377.986667pt;}
.y10b{bottom:381.666667pt;}
.y55{bottom:384.386667pt;}
.yb8{bottom:385.986667pt;}
.y21{bottom:389.666667pt;}
.y70{bottom:392.386667pt;}
.y96{bottom:393.346667pt;}
.ye6{bottom:396.706667pt;}
.yb7{bottom:399.426667pt;}
.y10a{bottom:400.386667pt;}
.y54{bottom:403.106667pt;}
.y20{bottom:408.386667pt;}
.y6f{bottom:411.106667pt;}
.ye5{bottom:415.426667pt;}
.yb6{bottom:417.026667pt;}
.y109{bottom:419.106667pt;}
.y53{bottom:421.826667pt;}
.y1f{bottom:427.106667pt;}
.y6e{bottom:429.826667pt;}
.ye4{bottom:434.146667pt;}
.y108{bottom:437.826667pt;}
.yb5{bottom:440.386667pt;}
.y52{bottom:440.546667pt;}
.y1e{bottom:445.826667pt;}
.y6d{bottom:448.546667pt;}
.y107{bottom:456.546667pt;}
.yb4{bottom:459.106667pt;}
.y51{bottom:459.266667pt;}
.ye3{bottom:460.866667pt;}
.y1d{bottom:464.546667pt;}
.y6c{bottom:467.266667pt;}
.y106{bottom:475.266667pt;}
.yb3{bottom:477.826667pt;}
.ye2{bottom:479.586667pt;}
.y1c{bottom:483.266667pt;}
.y50{bottom:485.986667pt;}
.y105{bottom:493.986667pt;}
.yb2{bottom:496.546667pt;}
.ye1{bottom:498.306667pt;}
.y1b{bottom:501.986667pt;}
.y4f{bottom:504.706667pt;}
.y104{bottom:512.706667pt;}
.yb1{bottom:515.266667pt;}
.ye0{bottom:517.026667pt;}
.y1a{bottom:520.706667pt;}
.y4e{bottom:523.426667pt;}
.y103{bottom:531.426667pt;}
.yb0{bottom:533.986667pt;}
.ydf{bottom:535.746667pt;}
.y19{bottom:539.426667pt;}
.y4d{bottom:542.146667pt;}
.y102{bottom:550.146667pt;}
.yaf{bottom:552.706667pt;}
.yde{bottom:554.466667pt;}
.y18{bottom:558.146667pt;}
.y4c{bottom:560.866667pt;}
.y101{bottom:568.893333pt;}
.yae{bottom:571.453333pt;}
.ydd{bottom:573.213333pt;}
.y17{bottom:578.973333pt;}
.y4b{bottom:579.613333pt;}
.y100{bottom:587.613333pt;}
.yad{bottom:590.173333pt;}
.ydc{bottom:591.933333pt;}
.y4a{bottom:598.333333pt;}
.y16{bottom:605.533333pt;}
.yff{bottom:606.333333pt;}
.yac{bottom:608.893333pt;}
.ydb{bottom:610.653333pt;}
.y49{bottom:617.053333pt;}
.y15{bottom:624.253333pt;}
.yfe{bottom:625.053333pt;}
.yab{bottom:627.613333pt;}
.yda{bottom:629.373333pt;}
.y48{bottom:635.773333pt;}
.y14{bottom:642.973333pt;}
.yfd{bottom:643.773333pt;}
.yaa{bottom:646.333333pt;}
.yd9{bottom:648.093333pt;}
.y47{bottom:654.493333pt;}
.ya9{bottom:659.773333pt;}
.y13{bottom:661.693333pt;}
.yfc{bottom:662.493333pt;}
.yd8{bottom:666.813333pt;}
.y46{bottom:673.053333pt;}
.ya8{bottom:676.733333pt;}
.y12{bottom:680.413333pt;}
.yfb{bottom:681.053333pt;}
.yd7{bottom:685.533333pt;}
.y45{bottom:691.773333pt;}
.ya7{bottom:693.693333pt;}
.y95{bottom:695.293333pt;}
.y11{bottom:699.133333pt;}
.yfa{bottom:699.773333pt;}
.yd6{bottom:704.253333pt;}
.y44{bottom:710.493333pt;}
.ya6{bottom:710.653333pt;}
.y94{bottom:714.013333pt;}
.y10{bottom:717.853333pt;}
.yf9{bottom:718.493333pt;}
.yd5{bottom:722.973333pt;}
.ya5{bottom:727.613333pt;}
.y43{bottom:729.213333pt;}
.y93{bottom:732.733333pt;}
.yd4{bottom:736.413333pt;}
.yf{bottom:736.573333pt;}
.yf0{bottom:737.213333pt;}
.y6b{bottom:747.933333pt;}
.y92{bottom:751.453333pt;}
.yd3{bottom:753.373333pt;}
.ye{bottom:755.293333pt;}
.y42{bottom:755.933333pt;}
.y91{bottom:764.893333pt;}
.y6a{bottom:766.653333pt;}
.yd2{bottom:770.333333pt;}
.yd{bottom:774.013333pt;}
.y41{bottom:774.653333pt;}
.y8f{bottom:782.653333pt;}
.y69{bottom:785.373333pt;}
.yd1{bottom:787.333333pt;}
.y40{bottom:793.413333pt;}
.yc{bottom:794.693333pt;}
.y8e{bottom:800.293333pt;}
.y68{bottom:804.133333pt;}
.yd0{bottom:804.293333pt;}
.y3f{bottom:812.133333pt;}
.yb{bottom:818.053333pt;}
.yce{bottom:821.253333pt;}
.y67{bottom:822.853333pt;}
.y3e{bottom:830.853333pt;}
.ya{bottom:832.933333pt;}
.y8d{bottom:835.813333pt;}
.y66{bottom:841.573333pt;}
.y3d{bottom:849.573333pt;}
.y9{bottom:852.773333pt;}
.y8c{bottom:853.573333pt;}
.y65{bottom:860.293333pt;}
.y3c{bottom:868.293333pt;}
.y8b{bottom:871.333333pt;}
.y8{bottom:875.173333pt;}
.ycd{bottom:879.013333pt;}
.y3b{bottom:887.013333pt;}
.y8a{bottom:889.093333pt;}
.ycc{bottom:897.733333pt;}
.y7{bottom:905.093333pt;}
.y3a{bottom:905.733333pt;}
.y89{bottom:906.693333pt;}
.ycb{bottom:916.453333pt;}
.y39{bottom:924.453333pt;}
.yca{bottom:935.173333pt;}
.y5{bottom:940.773333pt;}
.y88{bottom:942.213333pt;}
.y38{bottom:943.173333pt;}
.yc9{bottom:953.893333pt;}
.y87{bottom:959.973333pt;}
.y37{bottom:961.893333pt;}
.y4{bottom:969.413333pt;}
.y86{bottom:977.733333pt;}
.y36{bottom:980.613333pt;}
.y85{bottom:995.493333pt;}
.y3{bottom:998.053333pt;}
.y35{bottom:999.333333pt;}
.y84{bottom:1013.120000pt;}
.y34{bottom:1018.080000pt;}
.y2{bottom:1026.560000pt;}
.y33{bottom:1042.880000pt;}
.y1{bottom:1056.800000pt;}
.y32{bottom:1060.800000pt;}
.h14{height:16.160000pt;}
.h11{height:16.320000pt;}
.h15{height:16.352000pt;}
.h13{height:16.800000pt;}
.hd{height:16.960000pt;}
.hc{height:16.992000pt;}
.hb{height:17.120000pt;}
.h10{height:25.440000pt;}
.hf{height:25.600000pt;}
.he{height:32.480000pt;}
.ha{height:32.640000pt;}
.h7{height:34.374375pt;}
.h12{height:42.693125pt;}
.h9{height:42.745000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w17{width:71.232000pt;}
.w16{width:96.960000pt;}
.wa{width:104.320000pt;}
.w9{width:104.832000pt;}
.w11{width:106.272000pt;}
.w6{width:108.512000pt;}
.w5{width:111.072000pt;}
.w7{width:112.032000pt;}
.wb{width:116.512000pt;}
.w3{width:119.712000pt;}
.wc{width:119.872000pt;}
.w4{width:124.160000pt;}
.we{width:154.266667pt;}
.wf{width:169.786667pt;}
.w10{width:189.946667pt;}
.w12{width:191.546667pt;}
.w14{width:206.306667pt;}
.w8{width:210.146667pt;}
.wd{width:231.546667pt;}
.w15{width:346.786667pt;}
.w13{width:393.186667pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xd{left:6.720000pt;}
.x1f{left:23.999988pt;}
.x6{left:47.999988pt;}
.x33{left:54.719988pt;}
.x26{left:61.919988pt;}
.x14{left:68.000000pt;}
.x7{left:71.999988pt;}
.x22{left:85.472000pt;}
.x38{left:96.031988pt;}
.x20{left:96.992000pt;}
.xc{left:108.032000pt;}
.x19{left:118.592000pt;}
.x2a{left:131.391988pt;}
.x27{left:139.866655pt;}
.x5{left:146.426655pt;}
.x1c{left:152.506667pt;}
.x32{left:153.946655pt;}
.x34{left:155.866655pt;}
.x37{left:160.026655pt;}
.x2b{left:163.546655pt;}
.x2d{left:191.226655pt;}
.x30{left:223.706655pt;}
.xe{left:228.386667pt;}
.x13{left:241.506655pt;}
.x2c{left:243.586655pt;}
.x28{left:252.706655pt;}
.x3{left:254.946655pt;}
.x29{left:269.986655pt;}
.x15{left:278.786667pt;}
.x35{left:309.026655pt;}
.x2{left:311.746655pt;}
.x31{left:312.866655pt;}
.x1d{left:343.266667pt;}
.x1a{left:350.786667pt;}
.xf{left:353.186667pt;}
.x9{left:368.226655pt;}
.x4{left:372.706655pt;}
.x8{left:374.146655pt;}
.xa{left:378.813321pt;}
.x16{left:384.253333pt;}
.x36{left:403.293321pt;}
.x1{left:426.173321pt;}
.xb{left:431.453321pt;}
.x23{left:432.893333pt;}
.x2e{left:442.493321pt;}
.x1e{left:450.173333pt;}
.x10{left:464.893333pt;}
.x17{left:489.213333pt;}
.x21{left:490.813333pt;}
.x1b{left:505.693333pt;}
.x2f{left:525.533322pt;}
.x24{left:539.973333pt;}
.x11{left:574.213333pt;}
.x18{left:606.373333pt;}
.x25{left:637.573333pt;}
.x12{left:694.079988pt;}
.x39{left:746.079988pt;}
}




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