
    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_63f7d6a569cc18ef187d3f47.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956543;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_a707495d07531de9de464ff0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9b8f755c22ecea1d8f4d33c6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.208008;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_882f2199ad10b495c746567f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_9050e5d3b0b743edbfcef2e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.208008;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_b9a1680634a82392aa73ff2e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_c653df574c1b3d55cda84ce0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8421aec0b4600a2302c0f913.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.772949;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_78f069051d530174cdddbf9b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.909180;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_3231169132672130e6b9cf50.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_6ec6eb87bbde789724fa7df4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_74107de9166000209ee0db6a.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.vc{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v6{vertical-align:13.680000px;}
.v2{vertical-align:15.120000px;}
.v7{vertical-align:18.347792px;}
.va{vertical-align:25.200000px;}
.vb{vertical-align:30.240000px;}
.v9{vertical-align:35.280000px;}
.v8{vertical-align:62.029755px;}
.ls5{letter-spacing:-0.648000px;}
.ls8{letter-spacing:-0.618000px;}
.ls2b{letter-spacing:-0.532800px;}
.ls31{letter-spacing:-0.531600px;}
.ls30{letter-spacing:-0.415200px;}
.ls6{letter-spacing:-0.370200px;}
.ls7{letter-spacing:-0.326400px;}
.ls2a{letter-spacing:-0.187200px;}
.ls27{letter-spacing:-0.165600px;}
.ls1f{letter-spacing:-0.157800px;}
.ls20{letter-spacing:-0.148800px;}
.ls21{letter-spacing:-0.143400px;}
.ls2e{letter-spacing:-0.103800px;}
.ls24{letter-spacing:-0.052560px;}
.lse{letter-spacing:-0.036000px;}
.ls22{letter-spacing:-0.026640px;}
.ls9{letter-spacing:-0.010800px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls2c{letter-spacing:0.136800px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.211680px;}
.ls29{letter-spacing:0.211800px;}
.ls1c{letter-spacing:0.257760px;}
.ls23{letter-spacing:0.263400px;}
.ls1e{letter-spacing:0.263520px;}
.ls28{letter-spacing:0.323400px;}
.ls1{letter-spacing:0.351360px;}
.ls2f{letter-spacing:0.357000px;}
.ls34{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385800px;}
.lsd{letter-spacing:0.666720px;}
.ls32{letter-spacing:0.709200px;}
.ls0{letter-spacing:0.720000px;}
.ls16{letter-spacing:2.507040px;}
.lsf{letter-spacing:8.267040px;}
.ls17{letter-spacing:10.069200px;}
.ls13{letter-spacing:17.279280px;}
.ls12{letter-spacing:19.067040px;}
.ls1d{letter-spacing:23.149440px;}
.ls15{letter-spacing:27.438240px;}
.ls14{letter-spacing:35.627040px;}
.ls10{letter-spacing:36.830160px;}
.ls35{letter-spacing:47.466720px;}
.ls19{letter-spacing:64.026720px;}
.ls33{letter-spacing:81.306720px;}
.ls11{letter-spacing:106.067520px;}
.ls25{letter-spacing:134.652960px;}
.ls26{letter-spacing:189.372960px;}
.ls2d{letter-spacing:203.032800px;}
.ls1a{letter-spacing:311.258804px;}
.ls18{letter-spacing:330.792240px;}
.ls1b{letter-spacing:624.559976px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws13{word-spacing:-54.880393px;}
.ws11{word-spacing:-32.808240px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.ws1b{word-spacing:-13.504200px;}
.ws18{word-spacing:-13.359000px;}
.ws4{word-spacing:-13.160400px;}
.ws9{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws1e{word-spacing:-13.136400px;}
.ws10{word-spacing:-13.120560px;}
.wsa{word-spacing:-13.111200px;}
.ws14{word-spacing:-13.094640px;}
.ws1a{word-spacing:-13.043400px;}
.wsf{word-spacing:-13.003800px;}
.wse{word-spacing:-12.998400px;}
.wsc{word-spacing:-12.989400px;}
.ws19{word-spacing:-10.749600px;}
.ws1c{word-spacing:-10.197600px;}
.ws1d{word-spacing:-10.081200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws15{word-spacing:-8.553600px;}
.ws12{word-spacing:-0.099964px;}
.wsd{word-spacing:-0.059760px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:2.552040px;}
.ws16{word-spacing:3.956760px;}
.ws17{word-spacing:4.132080px;}
._d{margin-left:-293.664801px;}
._10{margin-left:-132.495845px;}
._e{margin-left:-9.196714px;}
._f{margin-left:-6.597643px;}
._13{margin-left:-3.905280px;}
._8{margin-left:-2.715480px;}
._0{margin-left:-1.159200px;}
._1{width:1.400880px;}
._4{width:2.551200px;}
._5{width:3.681600px;}
._9{width:5.677200px;}
._7{width:7.529999px;}
._3{width:9.350699px;}
._2{width:10.698564px;}
._c{width:12.071520px;}
._6{width:14.581201px;}
._a{width:15.776401px;}
._11{width:19.530000px;}
._14{width:25.855440px;}
._12{width:35.306102px;}
._b{width:48.410400px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:36.000000px;}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fsc{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:58.261015px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs8{font-size:99.964287px;}
.fsa{font-size:149.843459px;}
.ycd{bottom:-13.500000px;}
.yca{bottom:-13.320000px;}
.y0{bottom:0.000000px;}
.y68{bottom:5.633958px;}
.y43{bottom:7.740000px;}
.ybc{bottom:7.785000px;}
.yaf{bottom:7.914000px;}
.y4a{bottom:7.920000px;}
.y9e{bottom:7.950000px;}
.y46{bottom:8.280000px;}
.y45{bottom:8.460000px;}
.y51{bottom:8.640000px;}
.y6a{bottom:10.220906px;}
.y4c{bottom:12.240000px;}
.y4f{bottom:12.420000px;}
.y9a{bottom:13.140000px;}
.y98{bottom:18.360000px;}
.y6c{bottom:23.732766px;}
.y42{bottom:25.380000px;}
.y67{bottom:29.515619px;}
.y49{bottom:29.880000px;}
.y48{bottom:30.060000px;}
.y97{bottom:40.500000px;}
.y69{bottom:45.023058px;}
.y6b{bottom:54.844436px;}
.y2{bottom:73.296000px;}
.y28{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.yb0{bottom:118.116000px;}
.y72{bottom:124.596000px;}
.y134{bottom:129.096000px;}
.y71{bottom:142.956000px;}
.yae{bottom:145.476000px;}
.y133{bottom:146.736000px;}
.ydf{bottom:148.716000px;}
.y3e{bottom:152.130000px;}
.y26{bottom:156.630000px;}
.y70{bottom:158.070000px;}
.y10c{bottom:160.410000px;}
.yde{bottom:160.770000px;}
.y132{bottom:164.190000px;}
.y6f{bottom:165.630000px;}
.y3d{bottom:169.770000px;}
.yad{bottom:172.830000px;}
.y25{bottom:174.090000px;}
.y10b{bottom:178.050000px;}
.y8f{bottom:184.890000px;}
.y3c{bottom:187.410000px;}
.ydd{bottom:188.130000px;}
.y131{bottom:190.830000px;}
.yac{bottom:200.190000px;}
.y6e{bottom:203.250000px;}
.y130{bottom:208.470000px;}
.y24{bottom:209.730000px;}
.y10a{bottom:213.510000px;}
.y3b{bottom:213.870000px;}
.ydc{bottom:215.490000px;}
.y8e{bottom:220.530000px;}
.y12f{bottom:225.930000px;}
.y23{bottom:227.370000px;}
.yab{bottom:227.550000px;}
.y109{bottom:231.150000px;}
.y6d{bottom:235.470000px;}
.y66{bottom:235.530000px;}
.ydb{bottom:242.850000px;}
.y22{bottom:245.010000px;}
.y108{bottom:248.790000px;}
.y3a{bottom:249.510000px;}
.y8d{bottom:252.570000px;}
.yaa{bottom:254.910000px;}
.y21{bottom:262.470000px;}
.y107{bottom:266.430000px;}
.yda{bottom:270.210000px;}
.y39{bottom:281.730000px;}
.ya9{bottom:282.270000px;}
.y106{bottom:283.890000px;}
.y12e{bottom:287.850000px;}
.yd9{bottom:297.570000px;}
.y20{bottom:298.110000px;}
.y105{bottom:301.530000px;}
.ya8{bottom:309.495000px;}
.y12d{bottom:314.355000px;}
.y1f{bottom:315.795000px;}
.yc8{bottom:316.155000px;}
.y104{bottom:319.215000px;}
.yd8{bottom:324.975000px;}
.y65{bottom:328.035000px;}
.y1e{bottom:333.255000px;}
.yc7{bottom:333.795000px;}
.y103{bottom:336.675000px;}
.ya7{bottom:336.855000px;}
.y12c{bottom:340.995000px;}
.yc6{bottom:351.435000px;}
.y102{bottom:354.315000px;}
.y12b{bottom:358.635000px;}
.y1d{bottom:360.075000px;}
.y64{bottom:363.495000px;}
.ya6{bottom:364.215000px;}
.yc5{bottom:368.895000px;}
.yd7{bottom:373.575000px;}
.y63{bottom:381.135000px;}
.y12a{bottom:385.095000px;}
.yc4{bottom:386.535000px;}
.y101{bottom:389.775000px;}
.ya5{bottom:391.575000px;}
.y129{bottom:402.735000px;}
.y100{bottom:407.415000px;}
.y62{bottom:407.775000px;}
.y1c{bottom:408.675000px;}
.yd6{bottom:409.215000px;}
.yc3{bottom:413.175000px;}
.ya4{bottom:418.935000px;}
.yff{bottom:425.055000px;}
.yd5{bottom:426.855000px;}
.y128{bottom:429.195000px;}
.yfe{bottom:442.695000px;}
.y61{bottom:443.235000px;}
.yd4{bottom:444.495000px;}
.y1b{bottom:445.755000px;}
.ya3{bottom:446.295000px;}
.y127{bottom:446.835000px;}
.yc2{bottom:448.635000px;}
.y60{bottom:461.595000px;}
.yd3{bottom:461.955000px;}
.y1a{bottom:463.395000px;}
.y126{bottom:473.475000px;}
.ya2{bottom:473.655000px;}
.yfd{bottom:478.155000px;}
.y5f{bottom:480.135000px;}
.yc1{bottom:480.855000px;}
.y19{bottom:481.035000px;}
.yd2{bottom:488.595000px;}
.y125{bottom:491.115000px;}
.yfc{bottom:495.795000px;}
.y18{bottom:498.675000px;}
.ya1{bottom:501.015000px;}
.yfb{bottom:513.435000px;}
.y17{bottom:516.135000px;}
.y5e{bottom:516.495000px;}
.y124{bottom:517.575000px;}
.y8c{bottom:523.875000px;}
.yd1{bottom:524.055000px;}
.ya0{bottom:528.195000px;}
.y16{bottom:533.775000px;}
.y123{bottom:535.215000px;}
.yfa{bottom:540.255000px;}
.y8b{bottom:541.515000px;}
.y5d{bottom:548.895000px;}
.y15{bottom:551.415000px;}
.y122{bottom:552.855000px;}
.y9f{bottom:555.555000px;}
.yd0{bottom:556.275000px;}
.y8a{bottom:559.155000px;}
.y5b{bottom:561.135000px;}
.y14{bottom:568.875000px;}
.y5c{bottom:576.255000px;}
.y89{bottom:576.615000px;}
.y121{bottom:579.315000px;}
.y9d{bottom:582.915000px;}
.y13{bottom:586.545000px;}
.yf9{bottom:588.525000px;}
.y120{bottom:596.985000px;}
.y5a{bottom:601.845000px;}
.y88{bottom:603.285000px;}
.y12{bottom:604.185000px;}
.y58{bottom:605.265000px;}
.yf8{bottom:606.165000px;}
.y9c{bottom:610.305000px;}
.y59{bottom:611.025000px;}
.y11{bottom:621.645000px;}
.y57{bottom:622.905000px;}
.y11f{bottom:623.625000px;}
.yf7{bottom:623.805000px;}
.y9b{bottom:637.665000px;}
.y87{bottom:639.105000px;}
.y10{bottom:639.285000px;}
.y56{bottom:640.545000px;}
.y11e{bottom:641.265000px;}
.yf6{bottom:641.445000px;}
.yf{bottom:656.925000px;}
.yf5{bottom:658.905000px;}
.y96{bottom:665.025000px;}
.y11d{bottom:667.725000px;}
.y55{bottom:676.005000px;}
.ye{bottom:683.745000px;}
.y11c{bottom:685.365000px;}
.y86{bottom:687.525000px;}
.y99{bottom:692.385000px;}
.y54{bottom:693.645000px;}
.yf4{bottom:694.545000px;}
.y85{bottom:705.165000px;}
.y53{bottom:711.285000px;}
.y11b{bottom:711.825000px;}
.yf3{bottom:712.185000px;}
.y84{bottom:722.625000px;}
.yd{bottom:731.985000px;}
.y52{bottom:737.745000px;}
.y11a{bottom:738.465000px;}
.y95{bottom:746.385000px;}
.yf2{bottom:747.645000px;}
.yc0{bottom:751.965000px;}
.y83{bottom:758.265000px;}
.y119{bottom:765.105000px;}
.yf1{bottom:765.285000px;}
.yc{bottom:767.805000px;}
.y50{bottom:770.685000px;}
.y82{bottom:775.905000px;}
.y94{bottom:781.845000px;}
.y38{bottom:782.385000px;}
.yf0{bottom:782.925000px;}
.ybf{bottom:787.065000px;}
.yc9{bottom:787.785000px;}
.ycc{bottom:789.045000px;}
.ycb{bottom:789.405000px;}
.y118{bottom:791.745000px;}
.y4e{bottom:798.765000px;}
.ybe{bottom:799.125000px;}
.y93{bottom:799.485000px;}
.y37{bottom:800.025000px;}
.yef{bottom:800.565000px;}
.yb{bottom:803.805000px;}
.y80{bottom:811.365000px;}
.y81{bottom:811.905000px;}
.y92{bottom:817.125000px;}
.y36{bottom:817.665000px;}
.yee{bottom:818.025000px;}
.y117{bottom:818.205000px;}
.ybd{bottom:826.485000px;}
.y35{bottom:835.305000px;}
.yed{bottom:835.665000px;}
.y116{bottom:835.845000px;}
.ya{bottom:843.585000px;}
.y7f{bottom:847.005000px;}
.y4d{bottom:848.265000px;}
.ycf{bottom:849.885000px;}
.y34{bottom:852.765000px;}
.yec{bottom:853.305000px;}
.ybb{bottom:853.845000px;}
.y9{bottom:861.630000px;}
.y115{bottom:862.530000px;}
.y33{bottom:870.450000px;}
.y7e{bottom:873.510000px;}
.y8{bottom:875.850000px;}
.y4b{bottom:876.390000px;}
.y91{bottom:879.270000px;}
.y114{bottom:880.170000px;}
.yba{bottom:881.070000px;}
.yce{bottom:882.150000px;}
.yeb{bottom:888.810000px;}
.y32{bottom:896.910000px;}
.y7{bottom:897.630000px;}
.yea{bottom:906.450000px;}
.y113{bottom:906.630000px;}
.yb9{bottom:908.430000px;}
.y7d{bottom:909.150000px;}
.y90{bottom:911.490000px;}
.ye9{bottom:924.090000px;}
.y112{bottom:924.270000px;}
.y47{bottom:925.710000px;}
.y6{bottom:930.030000px;}
.y31{bottom:932.730000px;}
.yb8{bottom:935.790000px;}
.ye8{bottom:941.550000px;}
.y7b{bottom:944.790000px;}
.y7c{bottom:945.330000px;}
.y5{bottom:949.290000px;}
.y111{bottom:951.090000px;}
.yb7{bottom:963.150000px;}
.y44{bottom:975.210000px;}
.ye7{bottom:977.190000px;}
.y7a{bottom:980.430000px;}
.y30{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y139{bottom:990.150000px;}
.yb6{bottom:990.510000px;}
.ye6{bottom:994.830000px;}
.y2f{bottom:998.790000px;}
.y110{bottom:999.330000px;}
.y41{bottom:1003.290000px;}
.y138{bottom:1007.790000px;}
.y3{bottom:1012.290000px;}
.ye5{bottom:1012.470000px;}
.y79{bottom:1015.890000px;}
.yb5{bottom:1017.870000px;}
.y137{bottom:1025.430000px;}
.y10f{bottom:1026.330000px;}
.y78{bottom:1033.530000px;}
.y2e{bottom:1034.430000px;}
.yb4{bottom:1045.230000px;}
.ye4{bottom:1047.930000px;}
.y77{bottom:1051.170000px;}
.y136{bottom:1051.890000px;}
.y2d{bottom:1052.070000px;}
.y10e{bottom:1063.410000px;}
.ye3{bottom:1065.570000px;}
.y76{bottom:1068.810000px;}
.y2c{bottom:1069.530000px;}
.yb3{bottom:1072.410000px;}
.ye2{bottom:1083.210000px;}
.y75{bottom:1086.270000px;}
.y2b{bottom:1087.170000px;}
.y10d{bottom:1090.230000px;}
.y135{bottom:1096.170000px;}
.yb2{bottom:1099.770000px;}
.ye1{bottom:1100.670000px;}
.y74{bottom:1103.910000px;}
.y40{bottom:1105.170000px;}
.y2a{bottom:1122.630000px;}
.y3f{bottom:1122.810000px;}
.yb1{bottom:1127.130000px;}
.ye0{bottom:1127.490000px;}
.y73{bottom:1139.400000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.h2e{height:0.720015px;}
.h2d{height:0.899925px;}
.h2c{height:0.900015px;}
.h27{height:26.460000px;}
.h2a{height:26.496000px;}
.h28{height:26.640000px;}
.h29{height:26.676000px;}
.h10{height:27.180000px;}
.h13{height:27.216000px;}
.h14{height:27.360000px;}
.h26{height:31.860000px;}
.h2{height:32.566289px;}
.h8{height:36.698203px;}
.h6{height:36.878203px;}
.h21{height:43.155254px;}
.he{height:44.100000px;}
.h3{height:44.894883px;}
.h2b{height:47.745352px;}
.h12{height:48.600000px;}
.h11{height:48.780000px;}
.hf{height:50.597578px;}
.h17{height:51.792187px;}
.h7{height:51.998203px;}
.ha{height:56.084062px;}
.h1f{height:57.151552px;}
.h2f{height:57.636562px;}
.h9{height:59.147227px;}
.h25{height:59.220000px;}
.hb{height:60.960938px;}
.h19{height:61.423863px;}
.hd{height:62.211094px;}
.h5{height:65.560781px;}
.hc{height:68.956875px;}
.h1a{height:71.097385px;}
.h18{height:72.827227px;}
.h22{height:74.045812px;}
.h15{height:74.116406px;}
.h16{height:76.276406px;}
.h4{height:83.376211px;}
.h23{height:87.072187px;}
.h1d{height:98.060670px;}
.h1b{height:98.109481px;}
.h24{height:104.356406px;}
.h20{height:110.992445px;}
.h1c{height:116.408462px;}
.h1e{height:119.181308px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w13{width:21.600000px;}
.w14{width:21.636000px;}
.w10{width:32.040000px;}
.wd{width:32.580000px;}
.wb{width:32.760000px;}
.wc{width:32.796000px;}
.w11{width:51.660000px;}
.w6{width:93.060000px;}
.w16{width:96.120000px;}
.w15{width:96.300000px;}
.w3{width:96.336000px;}
.w7{width:105.696000px;}
.w12{width:117.036000px;}
.wf{width:117.576000px;}
.w4{width:153.570000px;}
.w8{width:197.100217px;}
.wa{width:200.010000px;}
.we{width:212.070000px;}
.w5{width:304.095000px;}
.w9{width:414.975000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:4.450679px;}
.x6{left:7.740000px;}
.x30{left:10.800000px;}
.x18{left:49.740508px;}
.x17{left:63.628996px;}
.x1{left:68.040000px;}
.x15{left:72.580367px;}
.x12{left:79.181363px;}
.xf{left:95.075987px;}
.x13{left:96.104796px;}
.x36{left:107.496000px;}
.x16{left:108.723146px;}
.x3d{left:111.275987px;}
.x1a{left:126.575987px;}
.x23{left:138.816000px;}
.xb{left:162.569987px;}
.x7{left:165.810000px;}
.x11{left:183.649895px;}
.x2{left:202.709987px;}
.x37{left:204.510000px;}
.x2e{left:212.789987px;}
.x33{left:214.049987px;}
.x20{left:252.209987px;}
.x22{left:255.089987px;}
.x2f{left:287.355000px;}
.x35{left:295.454987px;}
.x38{left:301.755000px;}
.x8{left:320.115000px;}
.x10{left:348.014959px;}
.x2a{left:351.255000px;}
.xc{left:369.074987px;}
.x5{left:382.394987px;}
.x1d{left:393.014987px;}
.x39{left:398.595000px;}
.x1b{left:403.634987px;}
.xe{left:433.514987px;}
.x31{left:441.435000px;}
.x1e{left:444.524987px;}
.x1c{left:447.764987px;}
.xd{left:461.624987px;}
.x2b{left:469.185000px;}
.x3a{left:495.645000px;}
.x2c{left:502.125000px;}
.x19{left:545.144987px;}
.x24{left:554.505000px;}
.x25{left:587.985000px;}
.x3b{left:592.485000px;}
.x26{left:621.465000px;}
.x9{left:624.930000px;}
.x27{left:654.990000px;}
.x32{left:667.229987px;}
.x34{left:669.389987px;}
.x1f{left:679.469987px;}
.x28{left:688.470000px;}
.x3c{left:689.550000px;}
.x2d{left:696.389987px;}
.xa{left:718.890000px;}
.x29{left:721.770000px;}
.x21{left:724.469987px;}
.x4{left:788.729987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.vc{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v6{vertical-align:12.160000pt;}
.v2{vertical-align:13.440000pt;}
.v7{vertical-align:16.309148pt;}
.va{vertical-align:22.400000pt;}
.vb{vertical-align:26.880000pt;}
.v9{vertical-align:31.360000pt;}
.v8{vertical-align:55.137560pt;}
.ls5{letter-spacing:-0.576000pt;}
.ls8{letter-spacing:-0.549333pt;}
.ls2b{letter-spacing:-0.473600pt;}
.ls31{letter-spacing:-0.472533pt;}
.ls30{letter-spacing:-0.369067pt;}
.ls6{letter-spacing:-0.329067pt;}
.ls7{letter-spacing:-0.290133pt;}
.ls2a{letter-spacing:-0.166400pt;}
.ls27{letter-spacing:-0.147200pt;}
.ls1f{letter-spacing:-0.140267pt;}
.ls20{letter-spacing:-0.132267pt;}
.ls21{letter-spacing:-0.127467pt;}
.ls2e{letter-spacing:-0.092267pt;}
.ls24{letter-spacing:-0.046720pt;}
.lse{letter-spacing:-0.032000pt;}
.ls22{letter-spacing:-0.023680pt;}
.ls9{letter-spacing:-0.009600pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls2c{letter-spacing:0.121600pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.188160pt;}
.ls29{letter-spacing:0.188267pt;}
.ls1c{letter-spacing:0.229120pt;}
.ls23{letter-spacing:0.234133pt;}
.ls1e{letter-spacing:0.234240pt;}
.ls28{letter-spacing:0.287467pt;}
.ls1{letter-spacing:0.312320pt;}
.ls2f{letter-spacing:0.317333pt;}
.ls34{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342933pt;}
.lsd{letter-spacing:0.592640pt;}
.ls32{letter-spacing:0.630400pt;}
.ls0{letter-spacing:0.640000pt;}
.ls16{letter-spacing:2.228480pt;}
.lsf{letter-spacing:7.348480pt;}
.ls17{letter-spacing:8.950400pt;}
.ls13{letter-spacing:15.359360pt;}
.ls12{letter-spacing:16.948480pt;}
.ls1d{letter-spacing:20.577280pt;}
.ls15{letter-spacing:24.389547pt;}
.ls14{letter-spacing:31.668480pt;}
.ls10{letter-spacing:32.737920pt;}
.ls35{letter-spacing:42.192640pt;}
.ls19{letter-spacing:56.912640pt;}
.ls33{letter-spacing:72.272640pt;}
.ls11{letter-spacing:94.282240pt;}
.ls25{letter-spacing:119.691520pt;}
.ls26{letter-spacing:168.331520pt;}
.ls2d{letter-spacing:180.473600pt;}
.ls1a{letter-spacing:276.674492pt;}
.ls18{letter-spacing:294.037547pt;}
.ls1b{letter-spacing:555.164423pt;}
.ws13{word-spacing:-48.782572pt;}
.ws11{word-spacing:-29.162880pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.ws1b{word-spacing:-12.003733pt;}
.ws18{word-spacing:-11.874667pt;}
.ws4{word-spacing:-11.698133pt;}
.ws9{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws1e{word-spacing:-11.676800pt;}
.ws10{word-spacing:-11.662720pt;}
.wsa{word-spacing:-11.654400pt;}
.ws14{word-spacing:-11.639680pt;}
.ws1a{word-spacing:-11.594133pt;}
.wsf{word-spacing:-11.558933pt;}
.wse{word-spacing:-11.554133pt;}
.wsc{word-spacing:-11.546133pt;}
.ws19{word-spacing:-9.555200pt;}
.ws1c{word-spacing:-9.064533pt;}
.ws1d{word-spacing:-8.961067pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws15{word-spacing:-7.603200pt;}
.ws12{word-spacing:-0.088857pt;}
.wsd{word-spacing:-0.053120pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:2.268480pt;}
.ws16{word-spacing:3.517120pt;}
.ws17{word-spacing:3.672960pt;}
._d{margin-left:-261.035379pt;}
._10{margin-left:-117.774085pt;}
._e{margin-left:-8.174857pt;}
._f{margin-left:-5.864571pt;}
._13{margin-left:-3.471360pt;}
._8{margin-left:-2.413760pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.245227pt;}
._4{width:2.267733pt;}
._5{width:3.272533pt;}
._9{width:5.046400pt;}
._7{width:6.693332pt;}
._3{width:8.311732pt;}
._2{width:9.509835pt;}
._c{width:10.730240pt;}
._6{width:12.961068pt;}
._a{width:14.023468pt;}
._11{width:17.360000pt;}
._14{width:22.982613pt;}
._12{width:31.383202pt;}
._b{width:43.031467pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fsc{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:51.787569pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs8{font-size:88.857144pt;}
.fsa{font-size:133.194186pt;}
.ycd{bottom:-12.000000pt;}
.yca{bottom:-11.840000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:5.007962pt;}
.y43{bottom:6.880000pt;}
.ybc{bottom:6.920000pt;}
.yaf{bottom:7.034667pt;}
.y4a{bottom:7.040000pt;}
.y9e{bottom:7.066667pt;}
.y46{bottom:7.360000pt;}
.y45{bottom:7.520000pt;}
.y51{bottom:7.680000pt;}
.y6a{bottom:9.085249pt;}
.y4c{bottom:10.880000pt;}
.y4f{bottom:11.040000pt;}
.y9a{bottom:11.680000pt;}
.y98{bottom:16.320000pt;}
.y6c{bottom:21.095792pt;}
.y42{bottom:22.560000pt;}
.y67{bottom:26.236106pt;}
.y49{bottom:26.560000pt;}
.y48{bottom:26.720000pt;}
.y97{bottom:36.000000pt;}
.y69{bottom:40.020496pt;}
.y6b{bottom:48.750610pt;}
.y2{bottom:65.152000pt;}
.y28{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.yb0{bottom:104.992000pt;}
.y72{bottom:110.752000pt;}
.y134{bottom:114.752000pt;}
.y71{bottom:127.072000pt;}
.yae{bottom:129.312000pt;}
.y133{bottom:130.432000pt;}
.ydf{bottom:132.192000pt;}
.y3e{bottom:135.226667pt;}
.y26{bottom:139.226667pt;}
.y70{bottom:140.506667pt;}
.y10c{bottom:142.586667pt;}
.yde{bottom:142.906667pt;}
.y132{bottom:145.946667pt;}
.y6f{bottom:147.226667pt;}
.y3d{bottom:150.906667pt;}
.yad{bottom:153.626667pt;}
.y25{bottom:154.746667pt;}
.y10b{bottom:158.266667pt;}
.y8f{bottom:164.346667pt;}
.y3c{bottom:166.586667pt;}
.ydd{bottom:167.226667pt;}
.y131{bottom:169.626667pt;}
.yac{bottom:177.946667pt;}
.y6e{bottom:180.666667pt;}
.y130{bottom:185.306667pt;}
.y24{bottom:186.426667pt;}
.y10a{bottom:189.786667pt;}
.y3b{bottom:190.106667pt;}
.ydc{bottom:191.546667pt;}
.y8e{bottom:196.026667pt;}
.y12f{bottom:200.826667pt;}
.y23{bottom:202.106667pt;}
.yab{bottom:202.266667pt;}
.y109{bottom:205.466667pt;}
.y6d{bottom:209.306667pt;}
.y66{bottom:209.360000pt;}
.ydb{bottom:215.866667pt;}
.y22{bottom:217.786667pt;}
.y108{bottom:221.146667pt;}
.y3a{bottom:221.786667pt;}
.y8d{bottom:224.506667pt;}
.yaa{bottom:226.586667pt;}
.y21{bottom:233.306667pt;}
.y107{bottom:236.826667pt;}
.yda{bottom:240.186667pt;}
.y39{bottom:250.426667pt;}
.ya9{bottom:250.906667pt;}
.y106{bottom:252.346667pt;}
.y12e{bottom:255.866667pt;}
.yd9{bottom:264.506667pt;}
.y20{bottom:264.986667pt;}
.y105{bottom:268.026667pt;}
.ya8{bottom:275.106667pt;}
.y12d{bottom:279.426667pt;}
.y1f{bottom:280.706667pt;}
.yc8{bottom:281.026667pt;}
.y104{bottom:283.746667pt;}
.yd8{bottom:288.866667pt;}
.y65{bottom:291.586667pt;}
.y1e{bottom:296.226667pt;}
.yc7{bottom:296.706667pt;}
.y103{bottom:299.266667pt;}
.ya7{bottom:299.426667pt;}
.y12c{bottom:303.106667pt;}
.yc6{bottom:312.386667pt;}
.y102{bottom:314.946667pt;}
.y12b{bottom:318.786667pt;}
.y1d{bottom:320.066667pt;}
.y64{bottom:323.106667pt;}
.ya6{bottom:323.746667pt;}
.yc5{bottom:327.906667pt;}
.yd7{bottom:332.066667pt;}
.y63{bottom:338.786667pt;}
.y12a{bottom:342.306667pt;}
.yc4{bottom:343.586667pt;}
.y101{bottom:346.466667pt;}
.ya5{bottom:348.066667pt;}
.y129{bottom:357.986667pt;}
.y100{bottom:362.146667pt;}
.y62{bottom:362.466667pt;}
.y1c{bottom:363.266667pt;}
.yd6{bottom:363.746667pt;}
.yc3{bottom:367.266667pt;}
.ya4{bottom:372.386667pt;}
.yff{bottom:377.826667pt;}
.yd5{bottom:379.426667pt;}
.y128{bottom:381.506667pt;}
.yfe{bottom:393.506667pt;}
.y61{bottom:393.986667pt;}
.yd4{bottom:395.106667pt;}
.y1b{bottom:396.226667pt;}
.ya3{bottom:396.706667pt;}
.y127{bottom:397.186667pt;}
.yc2{bottom:398.786667pt;}
.y60{bottom:410.306667pt;}
.yd3{bottom:410.626667pt;}
.y1a{bottom:411.906667pt;}
.y126{bottom:420.866667pt;}
.ya2{bottom:421.026667pt;}
.yfd{bottom:425.026667pt;}
.y5f{bottom:426.786667pt;}
.yc1{bottom:427.426667pt;}
.y19{bottom:427.586667pt;}
.yd2{bottom:434.306667pt;}
.y125{bottom:436.546667pt;}
.yfc{bottom:440.706667pt;}
.y18{bottom:443.266667pt;}
.ya1{bottom:445.346667pt;}
.yfb{bottom:456.386667pt;}
.y17{bottom:458.786667pt;}
.y5e{bottom:459.106667pt;}
.y124{bottom:460.066667pt;}
.y8c{bottom:465.666667pt;}
.yd1{bottom:465.826667pt;}
.ya0{bottom:469.506667pt;}
.y16{bottom:474.466667pt;}
.y123{bottom:475.746667pt;}
.yfa{bottom:480.226667pt;}
.y8b{bottom:481.346667pt;}
.y5d{bottom:487.906667pt;}
.y15{bottom:490.146667pt;}
.y122{bottom:491.426667pt;}
.y9f{bottom:493.826667pt;}
.yd0{bottom:494.466667pt;}
.y8a{bottom:497.026667pt;}
.y5b{bottom:498.786667pt;}
.y14{bottom:505.666667pt;}
.y5c{bottom:512.226667pt;}
.y89{bottom:512.546667pt;}
.y121{bottom:514.946667pt;}
.y9d{bottom:518.146667pt;}
.y13{bottom:521.373333pt;}
.yf9{bottom:523.133333pt;}
.y120{bottom:530.653333pt;}
.y5a{bottom:534.973333pt;}
.y88{bottom:536.253333pt;}
.y12{bottom:537.053333pt;}
.y58{bottom:538.013333pt;}
.yf8{bottom:538.813333pt;}
.y9c{bottom:542.493333pt;}
.y59{bottom:543.133333pt;}
.y11{bottom:552.573333pt;}
.y57{bottom:553.693333pt;}
.y11f{bottom:554.333333pt;}
.yf7{bottom:554.493333pt;}
.y9b{bottom:566.813333pt;}
.y87{bottom:568.093333pt;}
.y10{bottom:568.253333pt;}
.y56{bottom:569.373333pt;}
.y11e{bottom:570.013333pt;}
.yf6{bottom:570.173333pt;}
.yf{bottom:583.933333pt;}
.yf5{bottom:585.693333pt;}
.y96{bottom:591.133333pt;}
.y11d{bottom:593.533333pt;}
.y55{bottom:600.893333pt;}
.ye{bottom:607.773333pt;}
.y11c{bottom:609.213333pt;}
.y86{bottom:611.133333pt;}
.y99{bottom:615.453333pt;}
.y54{bottom:616.573333pt;}
.yf4{bottom:617.373333pt;}
.y85{bottom:626.813333pt;}
.y53{bottom:632.253333pt;}
.y11b{bottom:632.733333pt;}
.yf3{bottom:633.053333pt;}
.y84{bottom:642.333333pt;}
.yd{bottom:650.653333pt;}
.y52{bottom:655.773333pt;}
.y11a{bottom:656.413333pt;}
.y95{bottom:663.453333pt;}
.yf2{bottom:664.573333pt;}
.yc0{bottom:668.413333pt;}
.y83{bottom:674.013333pt;}
.y119{bottom:680.093333pt;}
.yf1{bottom:680.253333pt;}
.yc{bottom:682.493333pt;}
.y50{bottom:685.053333pt;}
.y82{bottom:689.693333pt;}
.y94{bottom:694.973333pt;}
.y38{bottom:695.453333pt;}
.yf0{bottom:695.933333pt;}
.ybf{bottom:699.613333pt;}
.yc9{bottom:700.253333pt;}
.ycc{bottom:701.373333pt;}
.ycb{bottom:701.693333pt;}
.y118{bottom:703.773333pt;}
.y4e{bottom:710.013333pt;}
.ybe{bottom:710.333333pt;}
.y93{bottom:710.653333pt;}
.y37{bottom:711.133333pt;}
.yef{bottom:711.613333pt;}
.yb{bottom:714.493333pt;}
.y80{bottom:721.213333pt;}
.y81{bottom:721.693333pt;}
.y92{bottom:726.333333pt;}
.y36{bottom:726.813333pt;}
.yee{bottom:727.133333pt;}
.y117{bottom:727.293333pt;}
.ybd{bottom:734.653333pt;}
.y35{bottom:742.493333pt;}
.yed{bottom:742.813333pt;}
.y116{bottom:742.973333pt;}
.ya{bottom:749.853333pt;}
.y7f{bottom:752.893333pt;}
.y4d{bottom:754.013333pt;}
.ycf{bottom:755.453333pt;}
.y34{bottom:758.013333pt;}
.yec{bottom:758.493333pt;}
.ybb{bottom:758.973333pt;}
.y9{bottom:765.893333pt;}
.y115{bottom:766.693333pt;}
.y33{bottom:773.733333pt;}
.y7e{bottom:776.453333pt;}
.y8{bottom:778.533333pt;}
.y4b{bottom:779.013333pt;}
.y91{bottom:781.573333pt;}
.y114{bottom:782.373333pt;}
.yba{bottom:783.173333pt;}
.yce{bottom:784.133333pt;}
.yeb{bottom:790.053333pt;}
.y32{bottom:797.253333pt;}
.y7{bottom:797.893333pt;}
.yea{bottom:805.733333pt;}
.y113{bottom:805.893333pt;}
.yb9{bottom:807.493333pt;}
.y7d{bottom:808.133333pt;}
.y90{bottom:810.213333pt;}
.ye9{bottom:821.413333pt;}
.y112{bottom:821.573333pt;}
.y47{bottom:822.853333pt;}
.y6{bottom:826.693333pt;}
.y31{bottom:829.093333pt;}
.yb8{bottom:831.813333pt;}
.ye8{bottom:836.933333pt;}
.y7b{bottom:839.813333pt;}
.y7c{bottom:840.293333pt;}
.y5{bottom:843.813333pt;}
.y111{bottom:845.413333pt;}
.yb7{bottom:856.133333pt;}
.y44{bottom:866.853333pt;}
.ye7{bottom:868.613333pt;}
.y7a{bottom:871.493333pt;}
.y30{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y139{bottom:880.133333pt;}
.yb6{bottom:880.453333pt;}
.ye6{bottom:884.293333pt;}
.y2f{bottom:887.813333pt;}
.y110{bottom:888.293333pt;}
.y41{bottom:891.813333pt;}
.y138{bottom:895.813333pt;}
.y3{bottom:899.813333pt;}
.ye5{bottom:899.973333pt;}
.y79{bottom:903.013333pt;}
.yb5{bottom:904.773333pt;}
.y137{bottom:911.493333pt;}
.y10f{bottom:912.293333pt;}
.y78{bottom:918.693333pt;}
.y2e{bottom:919.493333pt;}
.yb4{bottom:929.093333pt;}
.ye4{bottom:931.493333pt;}
.y77{bottom:934.373333pt;}
.y136{bottom:935.013333pt;}
.y2d{bottom:935.173333pt;}
.y10e{bottom:945.253333pt;}
.ye3{bottom:947.173333pt;}
.y76{bottom:950.053333pt;}
.y2c{bottom:950.693333pt;}
.yb3{bottom:953.253333pt;}
.ye2{bottom:962.853333pt;}
.y75{bottom:965.573333pt;}
.y2b{bottom:966.373333pt;}
.y10d{bottom:969.093333pt;}
.y135{bottom:974.373333pt;}
.yb2{bottom:977.573333pt;}
.ye1{bottom:978.373333pt;}
.y74{bottom:981.253333pt;}
.y40{bottom:982.373333pt;}
.y2a{bottom:997.893333pt;}
.y3f{bottom:998.053333pt;}
.yb1{bottom:1001.893333pt;}
.ye0{bottom:1002.213333pt;}
.y73{bottom:1012.800000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.h2e{height:0.640013pt;}
.h2d{height:0.799933pt;}
.h2c{height:0.800013pt;}
.h27{height:23.520000pt;}
.h2a{height:23.552000pt;}
.h28{height:23.680000pt;}
.h29{height:23.712000pt;}
.h10{height:24.160000pt;}
.h13{height:24.192000pt;}
.h14{height:24.320000pt;}
.h26{height:28.320000pt;}
.h2{height:28.947813pt;}
.h8{height:32.620625pt;}
.h6{height:32.780625pt;}
.h21{height:38.360226pt;}
.he{height:39.200000pt;}
.h3{height:39.906562pt;}
.h2b{height:42.440312pt;}
.h12{height:43.200000pt;}
.h11{height:43.360000pt;}
.hf{height:44.975625pt;}
.h17{height:46.037500pt;}
.h7{height:46.220625pt;}
.ha{height:49.852500pt;}
.h1f{height:50.801380pt;}
.h2f{height:51.232500pt;}
.h9{height:52.575312pt;}
.h25{height:52.640000pt;}
.hb{height:54.187500pt;}
.h19{height:54.598989pt;}
.hd{height:55.298750pt;}
.h5{height:58.276250pt;}
.hc{height:61.295000pt;}
.h1a{height:63.197676pt;}
.h18{height:64.735313pt;}
.h22{height:65.818500pt;}
.h15{height:65.881250pt;}
.h16{height:67.801250pt;}
.h4{height:74.112187pt;}
.h23{height:77.397500pt;}
.h1d{height:87.165040pt;}
.h1b{height:87.208427pt;}
.h24{height:92.761250pt;}
.h20{height:98.659951pt;}
.h1c{height:103.474188pt;}
.h1e{height:105.938940pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w13{width:19.200000pt;}
.w14{width:19.232000pt;}
.w10{width:28.480000pt;}
.wd{width:28.960000pt;}
.wb{width:29.120000pt;}
.wc{width:29.152000pt;}
.w11{width:45.920000pt;}
.w6{width:82.720000pt;}
.w16{width:85.440000pt;}
.w15{width:85.600000pt;}
.w3{width:85.632000pt;}
.w7{width:93.952000pt;}
.w12{width:104.032000pt;}
.wf{width:104.512000pt;}
.w4{width:136.506667pt;}
.w8{width:175.200193pt;}
.wa{width:177.786667pt;}
.we{width:188.506667pt;}
.w5{width:270.306667pt;}
.w9{width:368.866667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:3.956160pt;}
.x6{left:6.880000pt;}
.x30{left:9.600000pt;}
.x18{left:44.213785pt;}
.x17{left:56.559108pt;}
.x1{left:60.480000pt;}
.x15{left:64.515882pt;}
.x12{left:70.383434pt;}
.xf{left:84.511988pt;}
.x13{left:85.426486pt;}
.x36{left:95.552000pt;}
.x16{left:96.642796pt;}
.x3d{left:98.911988pt;}
.x1a{left:112.511988pt;}
.x23{left:123.392000pt;}
.xb{left:144.506655pt;}
.x7{left:147.386667pt;}
.x11{left:163.244351pt;}
.x2{left:180.186655pt;}
.x37{left:181.786667pt;}
.x2e{left:189.146655pt;}
.x33{left:190.266655pt;}
.x20{left:224.186655pt;}
.x22{left:226.746655pt;}
.x2f{left:255.426667pt;}
.x35{left:262.626655pt;}
.x38{left:268.226667pt;}
.x8{left:284.546667pt;}
.x10{left:309.346630pt;}
.x2a{left:312.226667pt;}
.xc{left:328.066655pt;}
.x5{left:339.906655pt;}
.x1d{left:349.346655pt;}
.x39{left:354.306667pt;}
.x1b{left:358.786655pt;}
.xe{left:385.346655pt;}
.x31{left:392.386667pt;}
.x1e{left:395.133322pt;}
.x1c{left:398.013322pt;}
.xd{left:410.333322pt;}
.x2b{left:417.053333pt;}
.x3a{left:440.573333pt;}
.x2c{left:446.333333pt;}
.x19{left:484.573322pt;}
.x24{left:492.893333pt;}
.x25{left:522.653333pt;}
.x3b{left:526.653333pt;}
.x26{left:552.413333pt;}
.x9{left:555.493333pt;}
.x27{left:582.213333pt;}
.x32{left:593.093322pt;}
.x34{left:595.013322pt;}
.x1f{left:603.973322pt;}
.x28{left:611.973333pt;}
.x3c{left:612.933333pt;}
.x2d{left:619.013322pt;}
.xa{left:639.013333pt;}
.x29{left:641.573333pt;}
.x21{left:643.973322pt;}
.x4{left:701.093322pt;}
.x3{left:703.973322pt;}
}




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