
    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_92f3eba7b521411ebba3915d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.136230;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_519b0e6602aa0fb30ee14739.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_06f46dc50e8fd31ae6658454.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6560121cd80bb26f9818b89d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0da1b33ba1211cc52bc194d7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_b953d5427c83e3823e6599f9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1d08be3e14d430010cd29c44.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_ccfc83dfabe4ea7dafa6068b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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_3105280dadb351764d3a2d03.woff')format("woff");}.ff9{font-family:ff9;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_81fbb836dcb0b3e2cc440eb5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.201172;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-69.120000px;}
.v5{vertical-align:-66.960000px;}
.v2{vertical-align:-48.240000px;}
.v7{vertical-align:-35.280000px;}
.v6{vertical-align:-19.440000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v4{vertical-align:57.300000px;}
.ls1a{letter-spacing:-1.260000px;}
.ls18{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.413400px;}
.ls11{letter-spacing:-0.360000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls2b{letter-spacing:-0.291600px;}
.ls2e{letter-spacing:-0.112200px;}
.ls9{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.161400px;}
.ls5{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.206400px;}
.ls21{letter-spacing:0.206640px;}
.ls17{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls2d{letter-spacing:0.314400px;}
.ls3{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.460080px;}
.ls29{letter-spacing:0.460200px;}
.ls22{letter-spacing:0.588960px;}
.ls3a{letter-spacing:0.590400px;}
.ls2a{letter-spacing:0.612000px;}
.lse{letter-spacing:0.666000px;}
.ls23{letter-spacing:0.773280px;}
.lsb{letter-spacing:0.822000px;}
.ls4{letter-spacing:0.900000px;}
.ls30{letter-spacing:1.620000px;}
.ls16{letter-spacing:2.340000px;}
.ls2{letter-spacing:3.060000px;}
.ls33{letter-spacing:3.780000px;}
.ls1e{letter-spacing:5.940000px;}
.ls7{letter-spacing:6.660000px;}
.ls15{letter-spacing:7.380000px;}
.ls35{letter-spacing:9.540000px;}
.ls6{letter-spacing:11.700000px;}
.ls12{letter-spacing:12.420000px;}
.ls1d{letter-spacing:13.140000px;}
.ls32{letter-spacing:15.300000px;}
.ls1f{letter-spacing:16.020000px;}
.ls37{letter-spacing:16.200000px;}
.ls1b{letter-spacing:16.740000px;}
.ls1c{letter-spacing:17.436000px;}
.ls2f{letter-spacing:17.460000px;}
.ls31{letter-spacing:18.360000px;}
.ls34{letter-spacing:21.060000px;}
.ls14{letter-spacing:21.780000px;}
.ls39{letter-spacing:27.540000px;}
.ls38{letter-spacing:28.260000px;}
.ls27{letter-spacing:29.700000px;}
.ls28{letter-spacing:30.420000px;}
.ls24{letter-spacing:103.860000px;}
.ls20{letter-spacing:116.820000px;}
.ls36{letter-spacing:375.300000px;}
.ls1{letter-spacing:873.840000px;}
.ls0{letter-spacing:942.960000px;}
.ls25{letter-spacing:2182.260000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-15.762000px;}
.ws7{word-spacing:-15.606000px;}
.ws10{word-spacing:-15.552000px;}
.wsf{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.101400px;}
.ws6{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.640000px;}
.wsa{word-spacing:-14.580000px;}
.ws9{word-spacing:-14.526600px;}
.ws11{word-spacing:-14.479800px;}
.wse{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:39.525840px;}
.ws12{word-spacing:187.545840px;}
.ws13{word-spacing:452.205840px;}
.ws16{word-spacing:466.365840px;}
._20{margin-left:-4.063680px;}
._13{margin-left:-2.928240px;}
._4{margin-left:-1.553760px;}
._0{width:1.015920px;}
._2{width:2.151360px;}
._3{width:3.257040px;}
._5{width:4.455600px;}
._7{width:5.736960px;}
._8{width:7.560480px;}
._16{width:8.694240px;}
._b{width:10.218960px;}
._c{width:11.653200px;}
._d{width:12.837360px;}
._26{width:13.924080px;}
._17{width:16.254720px;}
._19{width:17.868240px;}
._18{width:19.780560px;}
._1f{width:20.856240px;}
._f{width:21.991680px;}
._10{width:22.992960px;}
._14{width:24.038160px;}
._15{width:25.398000px;}
._9{width:26.772480px;}
._a{width:28.027440px;}
._1d{width:29.342160px;}
._1e{width:30.477600px;}
._1c{width:31.613040px;}
._27{width:33.047280px;}
._24{width:34.840080px;}
._2a{width:38.880000px;}
._25{width:43.546080px;}
._22{width:45.357840px;}
._1b{width:48.106800px;}
._1a{width:49.188960px;}
._6{width:56.951280px;}
._23{width:60.955200px;}
._11{width:95.257440px;}
._12{width:96.474000px;}
._28{width:116.412480px;}
._29{width:117.727200px;}
._21{width:122.926320px;}
._2b{width:247.887840px;}
._2c{width:862.716000px;}
._e{width:1732.050240px;}
._1{width:1733.318160px;}
.fca{color:rgb(153,115,0);}
.fc8{color:rgb(158,72,14);}
.fc6{color:rgb(112,173,71);}
.fc7{color:rgb(37,94,145);}
.fc4{color:rgb(255,192,0);}
.fc5{color:rgb(68,114,196);}
.fc1{color:rgb(91,155,213);}
.fc9{color:rgb(99,99,99);}
.fc3{color:rgb(165,165,165);}
.fc2{color:rgb(237,125,49);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs1{font-size:38.880000px;}
.fs0{font-size:59.760000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:3.600000px;}
.y5a{bottom:20.880000px;}
.y85{bottom:20.910000px;}
.y58{bottom:21.240000px;}
.y6f{bottom:22.680000px;}
.y9d{bottom:23.430000px;}
.yf7{bottom:27.645000px;}
.yb0{bottom:37.005000px;}
.y6e{bottom:41.040000px;}
.y9c{bottom:41.835000px;}
.yf6{bottom:46.005000px;}
.yb2{bottom:48.990000px;}
.y73{bottom:54.510000px;}
.yaf{bottom:55.365000px;}
.yb1{bottom:67.350000px;}
.ya1{bottom:70.890000px;}
.y72{bottom:72.870000px;}
.yb5{bottom:80.535000px;}
.yfa{bottom:81.690000px;}
.ya0{bottom:89.250000px;}
.yef{bottom:96.120000px;}
.y96{bottom:99.900000px;}
.yea{bottom:102.780000px;}
.y3e{bottom:105.120000px;}
.y95{bottom:117.180000px;}
.ye9{bottom:119.160000px;}
.y3d{bottom:122.400000px;}
.y7a{bottom:126.750000px;}
.y94{bottom:134.280000px;}
.ye8{bottom:135.540000px;}
.y3c{bottom:139.680000px;}
.y79{bottom:145.110000px;}
.ya8{bottom:145.830000px;}
.yf5{bottom:146.910000px;}
.y93{bottom:147.960000px;}
.ya9{bottom:148.320000px;}
.yae{bottom:151.170000px;}
.ye7{bottom:151.560000px;}
.yee{bottom:151.920000px;}
.y3b{bottom:156.960000px;}
.ya7{bottom:164.190000px;}
.yf4{bottom:165.270000px;}
.ye6{bottom:168.330000px;}
.yad{bottom:169.530000px;}
.yb4{bottom:169.770000px;}
.yf3{bottom:172.905000px;}
.y3a{bottom:174.270000px;}
.ye5{bottom:184.710000px;}
.yb3{bottom:188.130000px;}
.y39{bottom:191.370000px;}
.yf9{bottom:191.910000px;}
.yac{bottom:193.755000px;}
.y75{bottom:195.915000px;}
.yab{bottom:197.790000px;}
.yf2{bottom:200.085000px;}
.ye4{bottom:201.090000px;}
.y68{bottom:206.490000px;}
.y55{bottom:208.290000px;}
.y38{bottom:208.650000px;}
.yf8{bottom:210.315000px;}
.y74{bottom:214.275000px;}
.yaa{bottom:216.150000px;}
.ye3{bottom:217.470000px;}
.yf1{bottom:218.445000px;}
.y6d{bottom:219.525000px;}
.y67{bottom:223.590000px;}
.y54{bottom:225.570000px;}
.y37{bottom:225.930000px;}
.ya3{bottom:232.530000px;}
.ye2{bottom:233.850000px;}
.y66{bottom:237.270000px;}
.y6c{bottom:237.885000px;}
.y69{bottom:237.960000px;}
.y36{bottom:243.210000px;}
.y71{bottom:249.090000px;}
.ye1{bottom:250.230000px;}
.ya2{bottom:250.890000px;}
.y9b{bottom:251.895000px;}
.y35{bottom:260.490000px;}
.ye0{bottom:266.610000px;}
.y70{bottom:267.480000px;}
.y9a{bottom:270.255000px;}
.y78{bottom:272.445000px;}
.y6b{bottom:272.700000px;}
.y34{bottom:277.770000px;}
.ydf{bottom:282.990000px;}
.y77{bottom:290.805000px;}
.y6a{bottom:291.060000px;}
.y9f{bottom:293.295000px;}
.y33{bottom:294.510000px;}
.y51{bottom:294.870000px;}
.yde{bottom:299.370000px;}
.y76{bottom:309.165000px;}
.y9e{bottom:311.655000px;}
.y32{bottom:312.150000px;}
.y99{bottom:314.250000px;}
.ydd{bottom:315.750000px;}
.ya6{bottom:319.065000px;}
.y31{bottom:329.430000px;}
.ydc{bottom:332.130000px;}
.y98{bottom:332.610000px;}
.ya5{bottom:337.425000px;}
.y30{bottom:346.710000px;}
.ydb{bottom:348.510000px;}
.ya4{bottom:355.785000px;}
.y2f{bottom:363.990000px;}
.yda{bottom:364.890000px;}
.y2e{bottom:381.090000px;}
.yd9{bottom:381.270000px;}
.y92{bottom:384.510000px;}
.yd8{bottom:397.650000px;}
.y2d{bottom:398.370000px;}
.y91{bottom:401.790000px;}
.yd7{bottom:414.075000px;}
.y2c{bottom:415.695000px;}
.y90{bottom:419.115000px;}
.yd6{bottom:430.455000px;}
.y2b{bottom:432.975000px;}
.y8f{bottom:436.395000px;}
.yd5{bottom:446.835000px;}
.y2a{bottom:450.255000px;}
.y8e{bottom:453.495000px;}
.yd4{bottom:463.215000px;}
.y29{bottom:467.535000px;}
.y8d{bottom:470.775000px;}
.yd3{bottom:479.595000px;}
.y53{bottom:484.275000px;}
.y28{bottom:484.635000px;}
.y8c{bottom:488.055000px;}
.yd2{bottom:496.155000px;}
.y27{bottom:501.915000px;}
.y8b{bottom:505.335000px;}
.yd1{bottom:512.535000px;}
.y26{bottom:519.195000px;}
.y8a{bottom:522.615000px;}
.yd0{bottom:528.915000px;}
.y25{bottom:536.475000px;}
.y89{bottom:539.715000px;}
.ycf{bottom:545.295000px;}
.y24{bottom:553.755000px;}
.y88{bottom:556.995000px;}
.yce{bottom:561.675000px;}
.y64{bottom:567.255000px;}
.y23{bottom:570.675000px;}
.y50{bottom:571.035000px;}
.ycd{bottom:578.055000px;}
.y63{bottom:584.535000px;}
.y22{bottom:588.135000px;}
.y87{bottom:588.675000px;}
.ycc{bottom:594.435000px;}
.y62{bottom:601.635000px;}
.y21{bottom:605.415000px;}
.y86{bottom:606.675000px;}
.ycb{bottom:610.815000px;}
.y61{bottom:618.915000px;}
.y20{bottom:622.695000px;}
.y83{bottom:624.675000px;}
.yca{bottom:627.195000px;}
.y65{bottom:636.195000px;}
.y1f{bottom:639.975000px;}
.y84{bottom:642.675000px;}
.yc9{bottom:643.575000px;}
.y60{bottom:653.505000px;}
.y1e{bottom:657.285000px;}
.yc8{bottom:659.985000px;}
.y5f{bottom:670.785000px;}
.y1d{bottom:674.025000px;}
.y4f{bottom:674.385000px;}
.yc7{bottom:676.365000px;}
.y82{bottom:681.585000px;}
.y5e{bottom:687.885000px;}
.y1c{bottom:691.665000px;}
.yed{bottom:692.385000px;}
.yc6{bottom:692.745000px;}
.y5d{bottom:702.285000px;}
.y1b{bottom:708.945000px;}
.yc5{bottom:709.125000px;}
.y81{bottom:716.145000px;}
.y5c{bottom:720.285000px;}
.yc4{bottom:725.505000px;}
.y1a{bottom:725.865000px;}
.y4e{bottom:726.225000px;}
.y80{bottom:733.245000px;}
.y57{bottom:738.285000px;}
.yc3{bottom:741.885000px;}
.y19{bottom:743.505000px;}
.y7f{bottom:750.525000px;}
.y59{bottom:756.285000px;}
.yc2{bottom:758.265000px;}
.y18{bottom:760.785000px;}
.y7e{bottom:767.805000px;}
.yc1{bottom:774.645000px;}
.y17{bottom:777.525000px;}
.y4d{bottom:777.885000px;}
.y7d{bottom:785.085000px;}
.yc0{bottom:791.025000px;}
.y16{bottom:795.165000px;}
.y7c{bottom:802.365000px;}
.ybf{bottom:807.045000px;}
.yec{bottom:807.405000px;}
.y15{bottom:812.445000px;}
.y7b{bottom:816.045000px;}
.y97{bottom:816.120000px;}
.ybe{bottom:823.785000px;}
.y4c{bottom:829.725000px;}
.ybd{bottom:840.165000px;}
.y14{bottom:846.645000px;}
.y4b{bottom:847.005000px;}
.ybc{bottom:856.545000px;}
.y13{bottom:863.925000px;}
.y4a{bottom:864.285000px;}
.yeb{bottom:872.565000px;}
.ybb{bottom:872.925000px;}
.y12{bottom:881.025000px;}
.y49{bottom:881.385000px;}
.yba{bottom:889.305000px;}
.y11{bottom:898.350000px;}
.y48{bottom:898.710000px;}
.yb9{bottom:905.730000px;}
.y10{bottom:915.630000px;}
.y47{bottom:915.990000px;}
.yb8{bottom:922.290000px;}
.yf{bottom:933.270000px;}
.yb7{bottom:939.570000px;}
.ye{bottom:950.550000px;}
.yb6{bottom:953.250000px;}
.yf0{bottom:953.460000px;}
.yd{bottom:967.470000px;}
.y52{bottom:967.830000px;}
.y46{bottom:984.570000px;}
.yc{bottom:984.930000px;}
.y56{bottom:1001.850000px;}
.yb{bottom:1002.210000px;}
.ya{bottom:1019.130000px;}
.y45{bottom:1019.490000px;}
.y9{bottom:1036.770000px;}
.y44{bottom:1053.690000px;}
.y8{bottom:1054.050000px;}
.y7{bottom:1070.790000px;}
.y43{bottom:1071.150000px;}
.y6{bottom:1088.430000px;}
.y5{bottom:1105.710000px;}
.y42{bottom:1122.990000px;}
.y4{bottom:1139.910000px;}
.y41{bottom:1140.270000px;}
.y3{bottom:1157.220000px;}
.y40{bottom:1157.580000px;}
.y2{bottom:1174.320000px;}
.y3f{bottom:1174.680000px;}
.y1{bottom:1195.380000px;}
.h13{height:5.805000px;}
.hb{height:17.280000px;}
.ha{height:34.560000px;}
.hf{height:34.596000px;}
.h8{height:51.677227px;}
.h9{height:52.560000px;}
.he{height:52.596000px;}
.h7{height:52.669336px;}
.h4{height:58.621992px;}
.h6{height:58.651172px;}
.h2{height:59.439023px;}
.h5{height:60.063750px;}
.h3{height:60.226875px;}
.hd{height:61.189805px;}
.h12{height:118.489805px;}
.h11{height:232.740000px;}
.h14{height:234.900000px;}
.hc{height:325.800000px;}
.h10{height:372.240000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:25.920000px;}
.wc{width:25.956000px;}
.w9{width:26.100000px;}
.w3{width:33.660000px;}
.w10{width:37.260000px;}
.w6{width:47.160000px;}
.wd{width:47.340000px;}
.w7{width:47.376000px;}
.we{width:47.520000px;}
.w13{width:52.200000px;}
.w15{width:52.380000px;}
.w14{width:52.416000px;}
.wb{width:55.800000px;}
.w16{width:61.776000px;}
.w8{width:64.260000px;}
.w4{width:250.410000px;}
.w11{width:260.490000px;}
.w12{width:379.695000px;}
.w5{width:393.375000px;}
.w18{width:474.480000px;}
.w19{width:486.720000px;}
.wf{width:537.120000px;}
.w17{width:591.480000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:4.785000px;}
.x30{left:7.740000px;}
.x1e{left:9.540000px;}
.x32{left:11.520000px;}
.x2f{left:12.960000px;}
.x33{left:15.120000px;}
.x4f{left:17.280000px;}
.x24{left:19.800000px;}
.x31{left:21.060000px;}
.x2b{left:24.120000px;}
.x3e{left:25.815000px;}
.x42{left:27.105000px;}
.x27{left:28.260000px;}
.x43{left:30.885000px;}
.x41{left:32.865000px;}
.x55{left:37.254000px;}
.x63{left:41.610000px;}
.x44{left:43.485000px;}
.x3f{left:46.875000px;}
.x61{left:48.030000px;}
.x20{left:49.134000px;}
.x5f{left:52.770000px;}
.x64{left:54.210000px;}
.x3d{left:56.910000px;}
.x71{left:67.065000px;}
.x62{left:69.090000px;}
.x6f{left:76.065000px;}
.x6e{left:77.325000px;}
.x60{left:80.850000px;}
.x77{left:85.395000px;}
.x4d{left:95.970000px;}
.x1{left:106.415987px;}
.x22{left:111.270000px;}
.x45{left:119.670000px;}
.x79{left:120.885000px;}
.x78{left:122.145000px;}
.x58{left:126.215987px;}
.xf{left:131.255987px;}
.x70{left:132.630000px;}
.x2{left:134.855987px;}
.x1a{left:136.115987px;}
.x1f{left:141.516000px;}
.xe{left:144.035987px;}
.x4b{left:145.116000px;}
.x46{left:148.110000px;}
.x5a{left:150.660000px;}
.x4e{left:163.650000px;}
.x23{left:170.490000px;}
.x37{left:177.480000px;}
.x7c{left:182.370000px;}
.x4a{left:194.069987px;}
.x7a{left:198.105000px;}
.x7b{left:200.625000px;}
.x72{left:203.040000px;}
.x67{left:209.160000px;}
.x6{left:220.889987px;}
.x1d{left:252.929987px;}
.x3{left:254.729987px;}
.x34{left:278.489987px;}
.x74{left:286.125000px;}
.x73{left:287.385000px;}
.x47{left:288.795000px;}
.x69{left:290.700000px;}
.x68{left:291.960000px;}
.x65{left:313.635000px;}
.x48{left:325.155000px;}
.x66{left:349.995000px;}
.x13{left:357.194987px;}
.x75{left:361.335000px;}
.x15{left:362.954987px;}
.x36{left:383.294987px;}
.x21{left:392.655000px;}
.x76{left:394.275000px;}
.x6d{left:397.725000px;}
.x6c{left:398.985000px;}
.x17{left:401.654987px;}
.x8{left:402.914987px;}
.x6b{left:405.180000px;}
.x4c{left:406.335000px;}
.x6a{left:410.220000px;}
.x9{left:411.374987px;}
.x38{left:420.450000px;}
.x57{left:425.414987px;}
.xb{left:434.234987px;}
.x5b{left:438.945000px;}
.x25{left:440.535000px;}
.x39{left:444.390000px;}
.x59{left:446.474987px;}
.x3c{left:451.905000px;}
.x11{left:454.574987px;}
.x1b{left:457.274987px;}
.xd{left:458.354987px;}
.x4{left:461.414987px;}
.x5c{left:462.885000px;}
.x3a{left:464.865000px;}
.x10{left:465.914987px;}
.x3b{left:484.125000px;}
.x1c{left:487.004987px;}
.x26{left:488.625000px;}
.x50{left:512.385000px;}
.x5d{left:530.025000px;}
.x18{left:537.944987px;}
.x5e{left:549.285000px;}
.x28{left:553.605000px;}
.x51{left:565.305000px;}
.x29{left:580.425000px;}
.x2a{left:607.065000px;}
.x52{left:618.405000px;}
.x5{left:640.544987px;}
.x16{left:651.704987px;}
.x2c{left:663.765000px;}
.x53{left:680.910000px;}
.xc{left:682.529987px;}
.x56{left:683.789987px;}
.x12{left:685.049987px;}
.x2d{left:690.450000px;}
.x14{left:692.249987px;}
.x7{left:695.849987px;}
.x35{left:715.469987px;}
.xa{left:718.349987px;}
.x54{left:733.830000px;}
.x2e{left:738.510000px;}
.x49{left:742.289987px;}
.x19{left:786.749987px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v5{vertical-align:-59.520000pt;}
.v2{vertical-align:-42.880000pt;}
.v7{vertical-align:-31.360000pt;}
.v6{vertical-align:-17.280000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v4{vertical-align:50.933333pt;}
.ls1a{letter-spacing:-1.120000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.367467pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls2b{letter-spacing:-0.259200pt;}
.ls2e{letter-spacing:-0.099733pt;}
.ls9{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.143467pt;}
.ls5{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.183467pt;}
.ls21{letter-spacing:0.183680pt;}
.ls17{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls2d{letter-spacing:0.279467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.408960pt;}
.ls29{letter-spacing:0.409067pt;}
.ls22{letter-spacing:0.523520pt;}
.ls3a{letter-spacing:0.524800pt;}
.ls2a{letter-spacing:0.544000pt;}
.lse{letter-spacing:0.592000pt;}
.ls23{letter-spacing:0.687360pt;}
.lsb{letter-spacing:0.730667pt;}
.ls4{letter-spacing:0.800000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls2{letter-spacing:2.720000pt;}
.ls33{letter-spacing:3.360000pt;}
.ls1e{letter-spacing:5.280000pt;}
.ls7{letter-spacing:5.920000pt;}
.ls15{letter-spacing:6.560000pt;}
.ls35{letter-spacing:8.480000pt;}
.ls6{letter-spacing:10.400000pt;}
.ls12{letter-spacing:11.040000pt;}
.ls1d{letter-spacing:11.680000pt;}
.ls32{letter-spacing:13.600000pt;}
.ls1f{letter-spacing:14.240000pt;}
.ls37{letter-spacing:14.400000pt;}
.ls1b{letter-spacing:14.880000pt;}
.ls1c{letter-spacing:15.498667pt;}
.ls2f{letter-spacing:15.520000pt;}
.ls31{letter-spacing:16.320000pt;}
.ls34{letter-spacing:18.720000pt;}
.ls14{letter-spacing:19.360000pt;}
.ls39{letter-spacing:24.480000pt;}
.ls38{letter-spacing:25.120000pt;}
.ls27{letter-spacing:26.400000pt;}
.ls28{letter-spacing:27.040000pt;}
.ls24{letter-spacing:92.320000pt;}
.ls20{letter-spacing:103.840000pt;}
.ls36{letter-spacing:333.600000pt;}
.ls1{letter-spacing:776.746667pt;}
.ls0{letter-spacing:838.186667pt;}
.ls25{letter-spacing:1939.786667pt;}
.ws4{word-spacing:-14.010667pt;}
.ws7{word-spacing:-13.872000pt;}
.ws10{word-spacing:-13.824000pt;}
.wsf{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.423467pt;}
.ws6{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.013333pt;}
.wsa{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.912533pt;}
.ws11{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:35.134080pt;}
.ws12{word-spacing:166.707413pt;}
.ws13{word-spacing:401.960747pt;}
.ws16{word-spacing:414.547413pt;}
._20{margin-left:-3.612160pt;}
._13{margin-left:-2.602880pt;}
._4{margin-left:-1.381120pt;}
._0{width:0.903040pt;}
._2{width:1.912320pt;}
._3{width:2.895147pt;}
._5{width:3.960533pt;}
._7{width:5.099520pt;}
._8{width:6.720427pt;}
._16{width:7.728213pt;}
._b{width:9.083520pt;}
._c{width:10.358400pt;}
._d{width:11.410987pt;}
._26{width:12.376960pt;}
._17{width:14.448640pt;}
._19{width:15.882880pt;}
._18{width:17.582720pt;}
._1f{width:18.538880pt;}
._f{width:19.548160pt;}
._10{width:20.438187pt;}
._14{width:21.367253pt;}
._15{width:22.576000pt;}
._9{width:23.797760pt;}
._a{width:24.913280pt;}
._1d{width:26.081920pt;}
._1e{width:27.091200pt;}
._1c{width:28.100480pt;}
._27{width:29.375360pt;}
._24{width:30.968960pt;}
._2a{width:34.560000pt;}
._25{width:38.707627pt;}
._22{width:40.318080pt;}
._1b{width:42.761600pt;}
._1a{width:43.723520pt;}
._6{width:50.623360pt;}
._23{width:54.182400pt;}
._11{width:84.673280pt;}
._12{width:85.754667pt;}
._28{width:103.477760pt;}
._29{width:104.646400pt;}
._21{width:109.267840pt;}
._2b{width:220.344747pt;}
._2c{width:766.858667pt;}
._e{width:1539.600213pt;}
._1{width:1540.727253pt;}
.fs2{font-size:5.120000pt;}
.fs1{font-size:34.560000pt;}
.fs0{font-size:53.120000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:3.200000pt;}
.y5a{bottom:18.560000pt;}
.y85{bottom:18.586667pt;}
.y58{bottom:18.880000pt;}
.y6f{bottom:20.160000pt;}
.y9d{bottom:20.826667pt;}
.yf7{bottom:24.573333pt;}
.yb0{bottom:32.893333pt;}
.y6e{bottom:36.480000pt;}
.y9c{bottom:37.186667pt;}
.yf6{bottom:40.893333pt;}
.yb2{bottom:43.546667pt;}
.y73{bottom:48.453333pt;}
.yaf{bottom:49.213333pt;}
.yb1{bottom:59.866667pt;}
.ya1{bottom:63.013333pt;}
.y72{bottom:64.773333pt;}
.yb5{bottom:71.586667pt;}
.yfa{bottom:72.613333pt;}
.ya0{bottom:79.333333pt;}
.yef{bottom:85.440000pt;}
.y96{bottom:88.800000pt;}
.yea{bottom:91.360000pt;}
.y3e{bottom:93.440000pt;}
.y95{bottom:104.160000pt;}
.ye9{bottom:105.920000pt;}
.y3d{bottom:108.800000pt;}
.y7a{bottom:112.666667pt;}
.y94{bottom:119.360000pt;}
.ye8{bottom:120.480000pt;}
.y3c{bottom:124.160000pt;}
.y79{bottom:128.986667pt;}
.ya8{bottom:129.626667pt;}
.yf5{bottom:130.586667pt;}
.y93{bottom:131.520000pt;}
.ya9{bottom:131.840000pt;}
.yae{bottom:134.373333pt;}
.ye7{bottom:134.720000pt;}
.yee{bottom:135.040000pt;}
.y3b{bottom:139.520000pt;}
.ya7{bottom:145.946667pt;}
.yf4{bottom:146.906667pt;}
.ye6{bottom:149.626667pt;}
.yad{bottom:150.693333pt;}
.yb4{bottom:150.906667pt;}
.yf3{bottom:153.693333pt;}
.y3a{bottom:154.906667pt;}
.ye5{bottom:164.186667pt;}
.yb3{bottom:167.226667pt;}
.y39{bottom:170.106667pt;}
.yf9{bottom:170.586667pt;}
.yac{bottom:172.226667pt;}
.y75{bottom:174.146667pt;}
.yab{bottom:175.813333pt;}
.yf2{bottom:177.853333pt;}
.ye4{bottom:178.746667pt;}
.y68{bottom:183.546667pt;}
.y55{bottom:185.146667pt;}
.y38{bottom:185.466667pt;}
.yf8{bottom:186.946667pt;}
.y74{bottom:190.466667pt;}
.yaa{bottom:192.133333pt;}
.ye3{bottom:193.306667pt;}
.yf1{bottom:194.173333pt;}
.y6d{bottom:195.133333pt;}
.y67{bottom:198.746667pt;}
.y54{bottom:200.506667pt;}
.y37{bottom:200.826667pt;}
.ya3{bottom:206.693333pt;}
.ye2{bottom:207.866667pt;}
.y66{bottom:210.906667pt;}
.y6c{bottom:211.453333pt;}
.y69{bottom:211.520000pt;}
.y36{bottom:216.186667pt;}
.y71{bottom:221.413333pt;}
.ye1{bottom:222.426667pt;}
.ya2{bottom:223.013333pt;}
.y9b{bottom:223.906667pt;}
.y35{bottom:231.546667pt;}
.ye0{bottom:236.986667pt;}
.y70{bottom:237.760000pt;}
.y9a{bottom:240.226667pt;}
.y78{bottom:242.173333pt;}
.y6b{bottom:242.400000pt;}
.y34{bottom:246.906667pt;}
.ydf{bottom:251.546667pt;}
.y77{bottom:258.493333pt;}
.y6a{bottom:258.720000pt;}
.y9f{bottom:260.706667pt;}
.y33{bottom:261.786667pt;}
.y51{bottom:262.106667pt;}
.yde{bottom:266.106667pt;}
.y76{bottom:274.813333pt;}
.y9e{bottom:277.026667pt;}
.y32{bottom:277.466667pt;}
.y99{bottom:279.333333pt;}
.ydd{bottom:280.666667pt;}
.ya6{bottom:283.613333pt;}
.y31{bottom:292.826667pt;}
.ydc{bottom:295.226667pt;}
.y98{bottom:295.653333pt;}
.ya5{bottom:299.933333pt;}
.y30{bottom:308.186667pt;}
.ydb{bottom:309.786667pt;}
.ya4{bottom:316.253333pt;}
.y2f{bottom:323.546667pt;}
.yda{bottom:324.346667pt;}
.y2e{bottom:338.746667pt;}
.yd9{bottom:338.906667pt;}
.y92{bottom:341.786667pt;}
.yd8{bottom:353.466667pt;}
.y2d{bottom:354.106667pt;}
.y91{bottom:357.146667pt;}
.yd7{bottom:368.066667pt;}
.y2c{bottom:369.506667pt;}
.y90{bottom:372.546667pt;}
.yd6{bottom:382.626667pt;}
.y2b{bottom:384.866667pt;}
.y8f{bottom:387.906667pt;}
.yd5{bottom:397.186667pt;}
.y2a{bottom:400.226667pt;}
.y8e{bottom:403.106667pt;}
.yd4{bottom:411.746667pt;}
.y29{bottom:415.586667pt;}
.y8d{bottom:418.466667pt;}
.yd3{bottom:426.306667pt;}
.y53{bottom:430.466667pt;}
.y28{bottom:430.786667pt;}
.y8c{bottom:433.826667pt;}
.yd2{bottom:441.026667pt;}
.y27{bottom:446.146667pt;}
.y8b{bottom:449.186667pt;}
.yd1{bottom:455.586667pt;}
.y26{bottom:461.506667pt;}
.y8a{bottom:464.546667pt;}
.yd0{bottom:470.146667pt;}
.y25{bottom:476.866667pt;}
.y89{bottom:479.746667pt;}
.ycf{bottom:484.706667pt;}
.y24{bottom:492.226667pt;}
.y88{bottom:495.106667pt;}
.yce{bottom:499.266667pt;}
.y64{bottom:504.226667pt;}
.y23{bottom:507.266667pt;}
.y50{bottom:507.586667pt;}
.ycd{bottom:513.826667pt;}
.y63{bottom:519.586667pt;}
.y22{bottom:522.786667pt;}
.y87{bottom:523.266667pt;}
.ycc{bottom:528.386667pt;}
.y62{bottom:534.786667pt;}
.y21{bottom:538.146667pt;}
.y86{bottom:539.266667pt;}
.ycb{bottom:542.946667pt;}
.y61{bottom:550.146667pt;}
.y20{bottom:553.506667pt;}
.y83{bottom:555.266667pt;}
.yca{bottom:557.506667pt;}
.y65{bottom:565.506667pt;}
.y1f{bottom:568.866667pt;}
.y84{bottom:571.266667pt;}
.yc9{bottom:572.066667pt;}
.y60{bottom:580.893333pt;}
.y1e{bottom:584.253333pt;}
.yc8{bottom:586.653333pt;}
.y5f{bottom:596.253333pt;}
.y1d{bottom:599.133333pt;}
.y4f{bottom:599.453333pt;}
.yc7{bottom:601.213333pt;}
.y82{bottom:605.853333pt;}
.y5e{bottom:611.453333pt;}
.y1c{bottom:614.813333pt;}
.yed{bottom:615.453333pt;}
.yc6{bottom:615.773333pt;}
.y5d{bottom:624.253333pt;}
.y1b{bottom:630.173333pt;}
.yc5{bottom:630.333333pt;}
.y81{bottom:636.573333pt;}
.y5c{bottom:640.253333pt;}
.yc4{bottom:644.893333pt;}
.y1a{bottom:645.213333pt;}
.y4e{bottom:645.533333pt;}
.y80{bottom:651.773333pt;}
.y57{bottom:656.253333pt;}
.yc3{bottom:659.453333pt;}
.y19{bottom:660.893333pt;}
.y7f{bottom:667.133333pt;}
.y59{bottom:672.253333pt;}
.yc2{bottom:674.013333pt;}
.y18{bottom:676.253333pt;}
.y7e{bottom:682.493333pt;}
.yc1{bottom:688.573333pt;}
.y17{bottom:691.133333pt;}
.y4d{bottom:691.453333pt;}
.y7d{bottom:697.853333pt;}
.yc0{bottom:703.133333pt;}
.y16{bottom:706.813333pt;}
.y7c{bottom:713.213333pt;}
.ybf{bottom:717.373333pt;}
.yec{bottom:717.693333pt;}
.y15{bottom:722.173333pt;}
.y7b{bottom:725.373333pt;}
.y97{bottom:725.440000pt;}
.ybe{bottom:732.253333pt;}
.y4c{bottom:737.533333pt;}
.ybd{bottom:746.813333pt;}
.y14{bottom:752.573333pt;}
.y4b{bottom:752.893333pt;}
.ybc{bottom:761.373333pt;}
.y13{bottom:767.933333pt;}
.y4a{bottom:768.253333pt;}
.yeb{bottom:775.613333pt;}
.ybb{bottom:775.933333pt;}
.y12{bottom:783.133333pt;}
.y49{bottom:783.453333pt;}
.yba{bottom:790.493333pt;}
.y11{bottom:798.533333pt;}
.y48{bottom:798.853333pt;}
.yb9{bottom:805.093333pt;}
.y10{bottom:813.893333pt;}
.y47{bottom:814.213333pt;}
.yb8{bottom:819.813333pt;}
.yf{bottom:829.573333pt;}
.yb7{bottom:835.173333pt;}
.ye{bottom:844.933333pt;}
.yb6{bottom:847.333333pt;}
.yf0{bottom:847.520000pt;}
.yd{bottom:859.973333pt;}
.y52{bottom:860.293333pt;}
.y46{bottom:875.173333pt;}
.yc{bottom:875.493333pt;}
.y56{bottom:890.533333pt;}
.yb{bottom:890.853333pt;}
.ya{bottom:905.893333pt;}
.y45{bottom:906.213333pt;}
.y9{bottom:921.573333pt;}
.y44{bottom:936.613333pt;}
.y8{bottom:936.933333pt;}
.y7{bottom:951.813333pt;}
.y43{bottom:952.133333pt;}
.y6{bottom:967.493333pt;}
.y5{bottom:982.853333pt;}
.y42{bottom:998.213333pt;}
.y4{bottom:1013.253333pt;}
.y41{bottom:1013.573333pt;}
.y3{bottom:1028.640000pt;}
.y40{bottom:1028.960000pt;}
.y2{bottom:1043.840000pt;}
.y3f{bottom:1044.160000pt;}
.y1{bottom:1062.560000pt;}
.h13{height:5.160000pt;}
.hb{height:15.360000pt;}
.ha{height:30.720000pt;}
.hf{height:30.752000pt;}
.h8{height:45.935313pt;}
.h9{height:46.720000pt;}
.he{height:46.752000pt;}
.h7{height:46.817187pt;}
.h4{height:52.108438pt;}
.h6{height:52.134375pt;}
.h2{height:52.834688pt;}
.h5{height:53.390000pt;}
.h3{height:53.535000pt;}
.hd{height:54.390938pt;}
.h12{height:105.324271pt;}
.h11{height:206.880000pt;}
.h14{height:208.800000pt;}
.hc{height:289.600000pt;}
.h10{height:330.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:23.040000pt;}
.wc{width:23.072000pt;}
.w9{width:23.200000pt;}
.w3{width:29.920000pt;}
.w10{width:33.120000pt;}
.w6{width:41.920000pt;}
.wd{width:42.080000pt;}
.w7{width:42.112000pt;}
.we{width:42.240000pt;}
.w13{width:46.400000pt;}
.w15{width:46.560000pt;}
.w14{width:46.592000pt;}
.wb{width:49.600000pt;}
.w16{width:54.912000pt;}
.w8{width:57.120000pt;}
.w4{width:222.586667pt;}
.w11{width:231.546667pt;}
.w12{width:337.506667pt;}
.w5{width:349.666667pt;}
.w18{width:421.760000pt;}
.w19{width:432.640000pt;}
.wf{width:477.440000pt;}
.w17{width:525.760000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:4.253333pt;}
.x30{left:6.880000pt;}
.x1e{left:8.480000pt;}
.x32{left:10.240000pt;}
.x2f{left:11.520000pt;}
.x33{left:13.440000pt;}
.x4f{left:15.360000pt;}
.x24{left:17.600000pt;}
.x31{left:18.720000pt;}
.x2b{left:21.440000pt;}
.x3e{left:22.946667pt;}
.x42{left:24.093333pt;}
.x27{left:25.120000pt;}
.x43{left:27.453333pt;}
.x41{left:29.213333pt;}
.x55{left:33.114667pt;}
.x63{left:36.986667pt;}
.x44{left:38.653333pt;}
.x3f{left:41.666667pt;}
.x61{left:42.693333pt;}
.x20{left:43.674667pt;}
.x5f{left:46.906667pt;}
.x64{left:48.186667pt;}
.x3d{left:50.586667pt;}
.x71{left:59.613333pt;}
.x62{left:61.413333pt;}
.x6f{left:67.613333pt;}
.x6e{left:68.733333pt;}
.x60{left:71.866667pt;}
.x77{left:75.906667pt;}
.x4d{left:85.306667pt;}
.x1{left:94.591988pt;}
.x22{left:98.906667pt;}
.x45{left:106.373333pt;}
.x79{left:107.453333pt;}
.x78{left:108.573333pt;}
.x58{left:112.191988pt;}
.xf{left:116.671988pt;}
.x70{left:117.893333pt;}
.x2{left:119.871988pt;}
.x1a{left:120.991988pt;}
.x1f{left:125.792000pt;}
.xe{left:128.031988pt;}
.x4b{left:128.992000pt;}
.x46{left:131.653333pt;}
.x5a{left:133.920000pt;}
.x4e{left:145.466667pt;}
.x23{left:151.546667pt;}
.x37{left:157.760000pt;}
.x7c{left:162.106667pt;}
.x4a{left:172.506655pt;}
.x7a{left:176.093333pt;}
.x7b{left:178.333333pt;}
.x72{left:180.480000pt;}
.x67{left:185.920000pt;}
.x6{left:196.346655pt;}
.x1d{left:224.826655pt;}
.x3{left:226.426655pt;}
.x34{left:247.546655pt;}
.x74{left:254.333333pt;}
.x73{left:255.453333pt;}
.x47{left:256.706667pt;}
.x69{left:258.400000pt;}
.x68{left:259.520000pt;}
.x65{left:278.786667pt;}
.x48{left:289.026667pt;}
.x66{left:311.106667pt;}
.x13{left:317.506655pt;}
.x75{left:321.186667pt;}
.x15{left:322.626655pt;}
.x36{left:340.706655pt;}
.x21{left:349.026667pt;}
.x76{left:350.466667pt;}
.x6d{left:353.533333pt;}
.x6c{left:354.653333pt;}
.x17{left:357.026655pt;}
.x8{left:358.146655pt;}
.x6b{left:360.160000pt;}
.x4c{left:361.186667pt;}
.x6a{left:364.640000pt;}
.x9{left:365.666655pt;}
.x38{left:373.733333pt;}
.x57{left:378.146655pt;}
.xb{left:385.986655pt;}
.x5b{left:390.173333pt;}
.x25{left:391.586667pt;}
.x39{left:395.013333pt;}
.x59{left:396.866655pt;}
.x3c{left:401.693333pt;}
.x11{left:404.066655pt;}
.x1b{left:406.466655pt;}
.xd{left:407.426655pt;}
.x4{left:410.146655pt;}
.x5c{left:411.453333pt;}
.x3a{left:413.213333pt;}
.x10{left:414.146655pt;}
.x3b{left:430.333333pt;}
.x1c{left:432.893322pt;}
.x26{left:434.333333pt;}
.x50{left:455.453333pt;}
.x5d{left:471.133333pt;}
.x18{left:478.173322pt;}
.x5e{left:488.253333pt;}
.x28{left:492.093333pt;}
.x51{left:502.493333pt;}
.x29{left:515.933333pt;}
.x2a{left:539.613333pt;}
.x52{left:549.693333pt;}
.x5{left:569.373322pt;}
.x16{left:579.293322pt;}
.x2c{left:590.013333pt;}
.x53{left:605.253333pt;}
.xc{left:606.693322pt;}
.x56{left:607.813322pt;}
.x12{left:608.933322pt;}
.x2d{left:613.733333pt;}
.x14{left:615.333322pt;}
.x7{left:618.533322pt;}
.x35{left:635.973322pt;}
.xa{left:638.533322pt;}
.x54{left:652.293333pt;}
.x2e{left:656.453333pt;}
.x49{left:659.813322pt;}
.x19{left:699.333322pt;}
}




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