
    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_b3f8a397648d159d4a180ec1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a303ec08a415321ad44ed665.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_067bd6ff24e7d7c08047440e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.129395;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_6b194fc2a518d30e78d93059.woff2')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_960f109eb5bf80091e0da616.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d54cdae6f0b831d1ed71c2ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123047;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_991b1bad041bbc15ade8ff7d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b9f8b78e00dc156c3762fd62.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692871;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_c48ef67628a92959c36bcd35.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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_1801c853ae36fba421758501.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.148926;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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);}
.v3{vertical-align:-84.240000px;}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-11.232000px;}
.ls1a{letter-spacing:-10.368000px;}
.ls15{letter-spacing:-8.640000px;}
.lsf{letter-spacing:-7.776000px;}
.ls10{letter-spacing:-6.912000px;}
.ls14{letter-spacing:-3.456000px;}
.ls13{letter-spacing:-2.592000px;}
.ls42{letter-spacing:-1.728000px;}
.ls18{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.720000px;}
.ls28{letter-spacing:-0.612000px;}
.ls17{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.432000px;}
.ls27{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.336960px;}
.ls9{letter-spacing:-0.331200px;}
.ls12{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.239040px;}
.ls49{letter-spacing:-0.216000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.091920px;}
.ls4c{letter-spacing:0.109200px;}
.ls41{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.149760px;}
.ls24{letter-spacing:0.152400px;}
.ls23{letter-spacing:0.152640px;}
.ls25{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.192000px;}
.ls2c{letter-spacing:0.252000px;}
.ls7{letter-spacing:0.252720px;}
.ls48{letter-spacing:0.262080px;}
.lsc{letter-spacing:0.298800px;}
.ls22{letter-spacing:0.305280px;}
.ls26{letter-spacing:0.305400px;}
.ls1e{letter-spacing:0.324000px;}
.ls4b{letter-spacing:0.332640px;}
.ls0{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.432000px;}
.ls5b{letter-spacing:0.504000px;}
.lsd{letter-spacing:0.662400px;}
.ls3f{letter-spacing:0.720000px;}
.ls47{letter-spacing:0.792000px;}
.ls11{letter-spacing:0.864000px;}
.ls3a{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.728000px;}
.ls3e{letter-spacing:2.160000px;}
.ls51{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.600000px;}
.ls40{letter-spacing:4.320000px;}
.ls2f{letter-spacing:5.040000px;}
.ls39{letter-spacing:5.760000px;}
.ls2d{letter-spacing:6.480000px;}
.ls52{letter-spacing:7.200000px;}
.ls32{letter-spacing:7.920000px;}
.ls31{letter-spacing:8.040000px;}
.lsb{letter-spacing:8.246880px;}
.ls2a{letter-spacing:9.360000px;}
.ls3b{letter-spacing:10.080000px;}
.ls2b{letter-spacing:10.800000px;}
.ls53{letter-spacing:11.664000px;}
.ls44{letter-spacing:12.240000px;}
.ls1d{letter-spacing:12.528000px;}
.ls2e{letter-spacing:12.960000px;}
.ls38{letter-spacing:13.680000px;}
.ls37{letter-spacing:14.400000px;}
.ls46{letter-spacing:15.840000px;}
.lse{letter-spacing:15.963840px;}
.ls3d{letter-spacing:16.560000px;}
.ls1f{letter-spacing:16.794000px;}
.ls45{letter-spacing:17.280000px;}
.ls5a{letter-spacing:18.000000px;}
.ls4e{letter-spacing:23.040000px;}
.ls50{letter-spacing:24.480000px;}
.ls3c{letter-spacing:26.640000px;}
.ls43{letter-spacing:29.520000px;}
.ls29{letter-spacing:30.240000px;}
.ls30{letter-spacing:33.840000px;}
.ls4f{letter-spacing:54.144000px;}
.ls4d{letter-spacing:58.464000px;}
.ls5c{letter-spacing:102.360000px;}
.ls59{letter-spacing:138.360000px;}
.ls20{letter-spacing:151.920000px;}
.ls54{letter-spacing:200.640000px;}
.ls56{letter-spacing:214.260000px;}
.ls55{letter-spacing:219.300000px;}
.ls4a{letter-spacing:318.216000px;}
.ls35{letter-spacing:364.296000px;}
.ls36{letter-spacing:586.956000px;}
.ls21{letter-spacing:614.316000px;}
.ls58{letter-spacing:1033.356000px;}
.ls57{letter-spacing:1069.356000px;}
.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:-19.728000px;}
.ws16{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.432000px;}
.ws13{word-spacing:-18.144000px;}
.ws14{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.784000px;}
.ws10{word-spacing:-17.712000px;}
.ws6{word-spacing:-17.280000px;}
.wsc{word-spacing:-16.865400px;}
.wsd{word-spacing:-16.712400px;}
.wsb{word-spacing:-16.560000px;}
.ws12{word-spacing:-16.272000px;}
.ws2{word-spacing:-15.408000px;}
.wse{word-spacing:-14.940000px;}
.ws0{word-spacing:-14.700960px;}
.ws5{word-spacing:-14.544000px;}
.wsf{word-spacing:-13.500000px;}
.ws7{word-spacing:-11.088000px;}
.ws1{word-spacing:-10.224000px;}
.ws8{word-spacing:-7.632000px;}
.ws9{word-spacing:-6.768000px;}
.wsa{word-spacing:0.000000px;}
._15{margin-left:-16.462800px;}
._16{margin-left:-12.470400px;}
._21{margin-left:-3.123120px;}
._0{margin-left:-1.769040px;}
._1{width:1.263600px;}
._4{width:2.845224px;}
._3{width:4.081536px;}
._13{width:5.224608px;}
._a{width:6.336000px;}
._9{width:8.010000px;}
._12{width:9.504000px;}
._b{width:10.513440px;}
._5{width:11.712960px;}
._14{width:12.713760px;}
._2{width:13.744800px;}
._17{width:15.450240px;}
._11{width:17.281176px;}
._18{width:18.480960px;}
._10{width:20.416800px;}
._6{width:21.624480px;}
._7{width:23.204160px;}
._c{width:24.567960px;}
._8{width:25.690824px;}
._19{width:26.797176px;}
._27{width:27.850248px;}
._22{width:28.872000px;}
._1a{width:29.880000px;}
._1b{width:30.956400px;}
._d{width:32.040000px;}
._e{width:33.152400px;}
._1d{width:34.455600px;}
._1c{width:35.475600px;}
._23{width:39.313440px;}
._f{width:40.783200px;}
._25{width:45.504000px;}
._26{width:47.556000px;}
._24{width:88.632000px;}
._1e{width:184.942080px;}
._1f{width:227.534400px;}
._20{width:260.192640px;}
._28{width:2170.920000px;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(45,36,21);}
.fc3{color:rgb(15,17,17);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs5{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:84.240000px;}
.yc7{bottom:-16.770000px;}
.y7a{bottom:-16.275000px;}
.y0{bottom:0.000000px;}
.yc4{bottom:3.030000px;}
.y79{bottom:3.525000px;}
.yec{bottom:3.585000px;}
.y4f{bottom:3.600000px;}
.y31{bottom:3.780000px;}
.y5f{bottom:3.945000px;}
.y53{bottom:3.960000px;}
.y68{bottom:4.110000px;}
.y59{bottom:4.125000px;}
.ya2{bottom:4.140000px;}
.y7d{bottom:4.680000px;}
.y74{bottom:4.785000px;}
.y6a{bottom:4.830000px;}
.yc1{bottom:7.845000px;}
.y66{bottom:8.430000px;}
.y6f{bottom:10.365000px;}
.y5b{bottom:13.485000px;}
.y51{bottom:13.500000px;}
.yaa{bottom:13.665000px;}
.ya5{bottom:13.680000px;}
.ya7{bottom:13.710000px;}
.ycb{bottom:17.385000px;}
.yba{bottom:20.310000px;}
.yc9{bottom:20.805000px;}
.y52{bottom:22.860000px;}
.yf1{bottom:22.890000px;}
.yd7{bottom:22.905000px;}
.y57{bottom:23.025000px;}
.ya4{bottom:23.040000px;}
.ya8{bottom:23.070000px;}
.y6e{bottom:28.230000px;}
.y6c{bottom:29.670000px;}
.yee{bottom:32.565000px;}
.yf4{bottom:32.580000px;}
.ybc{bottom:41.910000px;}
.y58{bottom:41.925000px;}
.yd1{bottom:41.940000px;}
.ycf{bottom:41.970000px;}
.yd6{bottom:41.985000px;}
.yef{bottom:42.105000px;}
.yd3{bottom:42.120000px;}
.yc2{bottom:42.810000px;}
.yc5{bottom:44.250000px;}
.ybf{bottom:47.490000px;}
.y7c{bottom:55.260000px;}
.y1{bottom:59.580000px;}
.y7b{bottom:59.760000px;}
.yf2{bottom:60.870000px;}
.y76{bottom:63.105000px;}
.y71{bottom:64.185000px;}
.y11f{bottom:74.625000px;}
.yb8{bottom:92.160000px;}
.ycd{bottom:102.420000px;}
.y9c{bottom:106.020000px;}
.yb7{bottom:112.860000px;}
.y11d{bottom:117.540000px;}
.yf3{bottom:122.040000px;}
.y64{bottom:124.380000px;}
.y2e{bottom:125.640000px;}
.ycc{bottom:126.360000px;}
.y9b{bottom:126.720000px;}
.y2d{bottom:131.580000px;}
.yb6{bottom:133.560000px;}
.y11c{bottom:138.240000px;}
.y2c{bottom:142.560000px;}
.y63{bottom:145.080000px;}
.y9a{bottom:147.420000px;}
.yb5{bottom:154.260000px;}
.y11b{bottom:158.940000px;}
.y62{bottom:165.780000px;}
.y99{bottom:168.120000px;}
.y2b{bottom:172.980000px;}
.yb4{bottom:174.960000px;}
.y11a{bottom:179.640000px;}
.yf0{bottom:179.820000px;}
.y61{bottom:185.760000px;}
.y98{bottom:188.820000px;}
.y2a{bottom:193.680000px;}
.yb3{bottom:195.660000px;}
.y119{bottom:200.370000px;}
.y60{bottom:203.070000px;}
.y97{bottom:209.550000px;}
.y29{bottom:214.410000px;}
.yb2{bottom:216.390000px;}
.y5e{bottom:217.305000px;}
.y118{bottom:221.070000px;}
.y120{bottom:230.070000px;}
.y96{bottom:230.250000px;}
.y28{bottom:235.110000px;}
.yb1{bottom:237.090000px;}
.y117{bottom:241.770000px;}
.y95{bottom:250.950000px;}
.y27{bottom:255.810000px;}
.yed{bottom:256.365000px;}
.yb0{bottom:257.790000px;}
.y116{bottom:262.470000px;}
.y94{bottom:271.650000px;}
.y5d{bottom:274.905000px;}
.y26{bottom:276.510000px;}
.yaf{bottom:278.490000px;}
.y115{bottom:283.170000px;}
.y93{bottom:292.350000px;}
.y25{bottom:297.210000px;}
.yae{bottom:298.470000px;}
.y114{bottom:303.870000px;}
.y92{bottom:313.050000px;}
.y5c{bottom:313.605000px;}
.yeb{bottom:314.145000px;}
.yad{bottom:315.570000px;}
.y24{bottom:317.550000px;}
.y113{bottom:324.570000px;}
.yac{bottom:332.850000px;}
.y91{bottom:333.750000px;}
.y112{bottom:345.270000px;}
.yab{bottom:347.085000px;}
.y5a{bottom:352.305000px;}
.y90{bottom:354.450000px;}
.yea{bottom:358.950000px;}
.y23{bottom:362.910000px;}
.y111{bottom:365.970000px;}
.y8f{bottom:375.150000px;}
.ye9{bottom:379.650000px;}
.y22{bottom:383.610000px;}
.ya9{bottom:385.785000px;}
.y110{bottom:386.670000px;}
.y56{bottom:391.005000px;}
.y8e{bottom:395.850000px;}
.ye8{bottom:400.350000px;}
.y21{bottom:404.310000px;}
.y10f{bottom:407.370000px;}
.y8d{bottom:416.550000px;}
.ye7{bottom:421.050000px;}
.ya6{bottom:424.485000px;}
.y20{bottom:424.830000px;}
.y10e{bottom:428.070000px;}
.y8c{bottom:437.295000px;}
.ye6{bottom:441.795000px;}
.y1f{bottom:445.575000px;}
.y55{bottom:448.815000px;}
.y8b{bottom:457.995000px;}
.ye5{bottom:462.495000px;}
.ya3{bottom:463.215000px;}
.y1e{bottom:466.275000px;}
.y10d{bottom:469.515000px;}
.y8a{bottom:478.695000px;}
.ye4{bottom:483.195000px;}
.y1d{bottom:486.975000px;}
.y54{bottom:487.515000px;}
.y10c{bottom:490.215000px;}
.y89{bottom:499.395000px;}
.ya1{bottom:501.915000px;}
.ye3{bottom:503.895000px;}
.y1c{bottom:507.675000px;}
.y10b{bottom:510.915000px;}
.y88{bottom:520.095000px;}
.ya0{bottom:521.715000px;}
.ye2{bottom:524.595000px;}
.y50{bottom:526.215000px;}
.y1b{bottom:528.375000px;}
.y10a{bottom:531.615000px;}
.y87{bottom:540.795000px;}
.ye1{bottom:545.295000px;}
.y1a{bottom:549.075000px;}
.y109{bottom:552.315000px;}
.y86{bottom:561.495000px;}
.y4e{bottom:564.915000px;}
.ye0{bottom:565.995000px;}
.y9f{bottom:566.715000px;}
.y19{bottom:569.775000px;}
.y108{bottom:573.015000px;}
.y85{bottom:582.195000px;}
.ydf{bottom:586.695000px;}
.y9e{bottom:587.415000px;}
.y4d{bottom:588.315000px;}
.y18{bottom:590.475000px;}
.y107{bottom:593.715000px;}
.y84{bottom:602.895000px;}
.yde{bottom:607.395000px;}
.y4c{bottom:607.755000px;}
.y9d{bottom:608.115000px;}
.y17{bottom:610.815000px;}
.y106{bottom:614.415000px;}
.y83{bottom:623.595000px;}
.ydd{bottom:627.375000px;}
.y4b{bottom:628.815000px;}
.y105{bottom:635.115000px;}
.y82{bottom:644.295000px;}
.ydc{bottom:644.655000px;}
.y4a{bottom:649.335000px;}
.y16{bottom:652.215000px;}
.y104{bottom:655.815000px;}
.ydb{bottom:658.875000px;}
.y81{bottom:664.995000px;}
.y49{bottom:670.035000px;}
.y15{bottom:670.935000px;}
.y103{bottom:676.545000px;}
.y80{bottom:685.725000px;}
.y14{bottom:688.065000px;}
.y48{bottom:690.045000px;}
.y102{bottom:697.245000px;}
.y13{bottom:705.345000px;}
.y7f{bottom:706.425000px;}
.yda{bottom:716.505000px;}
.y101{bottom:717.225000px;}
.y12{bottom:722.625000px;}
.y47{bottom:727.125000px;}
.y100{bottom:734.325000px;}
.y11{bottom:739.905000px;}
.y46{bottom:747.825000px;}
.yff{bottom:751.605000px;}
.yca{bottom:752.220000px;}
.y10{bottom:757.185000px;}
.y75{bottom:763.560000px;}
.y70{bottom:763.740000px;}
.yfe{bottom:766.905000px;}
.y11e{bottom:766.980000px;}
.y45{bottom:768.525000px;}
.yd9{bottom:774.285000px;}
.yf{bottom:774.465000px;}
.y78{bottom:787.065000px;}
.y73{bottom:788.325000px;}
.y44{bottom:789.225000px;}
.ye{bottom:791.565000px;}
.y77{bottom:806.865000px;}
.y72{bottom:808.125000px;}
.yd{bottom:808.845000px;}
.y43{bottom:809.925000px;}
.yc8{bottom:811.980000px;}
.yc{bottom:826.125000px;}
.y42{bottom:830.625000px;}
.yd8{bottom:831.885000px;}
.yb{bottom:843.405000px;}
.y41{bottom:851.325000px;}
.ya{bottom:860.685000px;}
.y40{bottom:872.025000px;}
.y9{bottom:877.965000px;}
.ybe{bottom:879.660000px;}
.yd5{bottom:889.665000px;}
.y6b{bottom:890.820000px;}
.y3f{bottom:892.725000px;}
.y8{bottom:894.705000px;}
.yc6{bottom:903.705000px;}
.y6d{bottom:904.605000px;}
.yc0{bottom:907.305000px;}
.y3e{bottom:913.470000px;}
.yfd{bottom:926.610000px;}
.y6{bottom:932.190000px;}
.y3d{bottom:934.170000px;}
.y7{bottom:940.470000px;}
.yd4{bottom:947.310000px;}
.y3c{bottom:954.870000px;}
.yfc{bottom:968.010000px;}
.ybb{bottom:970.200000px;}
.y3b{bottom:975.570000px;}
.y69{bottom:986.220000px;}
.y67{bottom:986.940000px;}
.yfb{bottom:988.710000px;}
.ybd{bottom:991.950000px;}
.yc3{bottom:993.030000px;}
.y3a{bottom:996.270000px;}
.yd2{bottom:1004.910000px;}
.yfa{bottom:1009.410000px;}
.y39{bottom:1016.970000px;}
.y5{bottom:1017.870000px;}
.yf9{bottom:1030.110000px;}
.y7e{bottom:1037.670000px;}
.y65{bottom:1038.960000px;}
.y4{bottom:1043.970000px;}
.yf8{bottom:1050.090000px;}
.y38{bottom:1058.370000px;}
.yb9{bottom:1060.020000px;}
.yd0{bottom:1062.690000px;}
.yf7{bottom:1067.370000px;}
.y37{bottom:1079.070000px;}
.yf6{bottom:1081.590000px;}
.y36{bottom:1099.770000px;}
.yce{bottom:1120.290000px;}
.y35{bottom:1120.470000px;}
.y3{bottom:1132.710000px;}
.yf5{bottom:1139.370000px;}
.y34{bottom:1141.170000px;}
.y2{bottom:1158.840000px;}
.y33{bottom:1161.900000px;}
.y32{bottom:1187.100000px;}
.y30{bottom:1190.520000px;}
.y2f{bottom:1213.018500px;}
.h11{height:12.174258px;}
.hf{height:17.280000px;}
.h13{height:18.885000px;}
.h36{height:18.895500px;}
.h22{height:19.065000px;}
.h2d{height:19.075500px;}
.h1a{height:19.080000px;}
.h1b{height:19.800000px;}
.h21{height:20.155500px;}
.h19{height:23.760000px;}
.h2b{height:31.140000px;}
.h24{height:34.380000px;}
.h2a{height:35.100000px;}
.hc{height:35.332031px;}
.h14{height:37.785000px;}
.h37{height:37.822500px;}
.h16{height:37.965000px;}
.h23{height:38.001000px;}
.h1d{height:40.500000px;}
.h1c{height:40.680000px;}
.h6{height:47.344922px;}
.hd{height:52.998047px;}
.h1f{height:53.573906px;}
.h29{height:53.703000px;}
.h26{height:56.520000px;}
.h18{height:56.865000px;}
.h35{height:56.875500px;}
.h2f{height:56.880000px;}
.he{height:56.888672px;}
.h15{height:56.901000px;}
.h2e{height:56.902500px;}
.h32{height:56.910000px;}
.h31{height:56.916000px;}
.h33{height:57.045000px;}
.h30{height:57.060000px;}
.h7{height:58.621992px;}
.h10{height:58.651172px;}
.h28{height:58.792500px;}
.h17{height:59.383125px;}
.h25{height:60.226875px;}
.h27{height:61.200000px;}
.ha{height:64.546875px;}
.h12{height:64.978594px;}
.h8{height:65.010937px;}
.hb{height:65.884219px;}
.h4{height:66.757500px;}
.h2c{height:70.628906px;}
.h2{height:70.664062px;}
.h9{height:72.562500px;}
.h38{height:75.093750px;}
.h34{height:75.816000px;}
.h20{height:76.860000px;}
.h1e{height:77.940000px;}
.h3{height:84.898125px;}
.h39{height:155.160000px;}
.h1{height:1263.000000px;}
.h5{height:1263.055500px;}
.h0{height:1263.060000px;}
.wd{width:25.005000px;}
.w1d{width:107.640000px;}
.w1e{width:110.880000px;}
.w19{width:116.100000px;}
.w1c{width:117.000000px;}
.w18{width:118.260000px;}
.we{width:124.371000px;}
.w1a{width:124.560000px;}
.w17{width:125.460000px;}
.w1b{width:127.800000px;}
.w4{width:134.811000px;}
.w10{width:137.376000px;}
.w23{width:141.831000px;}
.w14{width:147.981000px;}
.w11{width:148.176000px;}
.wa{width:154.440000px;}
.w15{width:156.270000px;}
.w9{width:164.520000px;}
.w21{width:201.990000px;}
.w7{width:216.000000px;}
.w8{width:230.760000px;}
.w6{width:255.780000px;}
.w13{width:286.275000px;}
.wb{width:288.540000px;}
.wc{width:300.960000px;}
.w12{width:304.980000px;}
.w20{width:359.640000px;}
.w16{width:396.000000px;}
.w1f{width:480.960000px;}
.w22{width:514.365000px;}
.w24{width:574.710000px;}
.w5{width:581.550000px;}
.wf{width:592.170000px;}
.w3{width:717.990000px;}
.w2{width:892.977000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.x1e{left:12.090000px;}
.x21{left:16.665000px;}
.x3e{left:18.975000px;}
.x41{left:20.985000px;}
.x46{left:23.190000px;}
.x58{left:24.300000px;}
.x56{left:25.740000px;}
.x43{left:29.085000px;}
.x36{left:30.276000px;}
.x28{left:32.505000px;}
.x2b{left:33.585000px;}
.x39{left:36.255000px;}
.x34{left:39.630000px;}
.x37{left:41.070000px;}
.x53{left:42.840000px;}
.x57{left:44.640000px;}
.x50{left:50.040000px;}
.x22{left:58.650000px;}
.x26{left:61.230000px;}
.x1a{left:77.475000px;}
.x18{left:79.455000px;}
.x4a{left:85.575000px;}
.x1c{left:89.385000px;}
.x4c{left:90.435000px;}
.x2c{left:95.325000px;}
.xf{left:98.316000px;}
.x9{left:106.416000px;}
.x4d{left:107.856000px;}
.x2{left:112.896000px;}
.xd{left:114.336000px;}
.x4{left:116.856000px;}
.x2d{left:132.114000px;}
.x5c{left:133.416000px;}
.x23{left:135.180000px;}
.xe{left:140.154000px;}
.xb{left:148.896000px;}
.x35{left:150.510000px;}
.x5d{left:152.280000px;}
.x8{left:159.510000px;}
.x25{left:165.450000px;}
.x24{left:167.070000px;}
.x19{left:182.700000px;}
.x5{left:189.750000px;}
.x4f{left:195.330000px;}
.x1d{left:214.020000px;}
.x2f{left:223.770000px;}
.x49{left:228.240000px;}
.x15{left:234.390000px;}
.x1f{left:238.350000px;}
.x54{left:241.230000px;}
.x3{left:249.870000px;}
.x55{left:256.575000px;}
.x13{left:260.130000px;}
.x33{left:261.900000px;}
.x3a{left:264.060000px;}
.x4b{left:288.360000px;}
.x38{left:289.695000px;}
.x3b{left:292.575000px;}
.x4e{left:301.575000px;}
.x51{left:310.395000px;}
.x5b{left:311.655000px;}
.x10{left:313.239000px;}
.x17{left:328.140000px;}
.x16{left:329.475000px;}
.x59{left:337.215000px;}
.x11{left:362.235000px;}
.x31{left:371.955000px;}
.x2e{left:379.515000px;}
.x3c{left:403.200000px;}
.xa{left:411.195000px;}
.xc{left:423.255000px;}
.x3d{left:429.735000px;}
.x3f{left:439.665000px;}
.x1{left:443.805000px;}
.x12{left:457.305000px;}
.x5a{left:470.805000px;}
.x32{left:478.545000px;}
.x52{left:483.765000px;}
.x27{left:498.600000px;}
.x1b{left:504.360000px;}
.x29{left:511.485000px;}
.x2a{left:523.725000px;}
.x40{left:549.900000px;}
.x20{left:554.400000px;}
.x44{left:574.665000px;}
.x42{left:579.885000px;}
.x30{left:659.670000px;}
.x6{left:670.470000px;}
.x45{left:692.100000px;}
.x47{left:718.710000px;}
.x48{left:721.050000px;}
.x7{left:802.077000px;}
@media print{
.v3{vertical-align:-74.880000pt;}
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-9.984000pt;}
.ls1a{letter-spacing:-9.216000pt;}
.ls15{letter-spacing:-7.680000pt;}
.lsf{letter-spacing:-6.912000pt;}
.ls10{letter-spacing:-6.144000pt;}
.ls14{letter-spacing:-3.072000pt;}
.ls13{letter-spacing:-2.304000pt;}
.ls42{letter-spacing:-1.536000pt;}
.ls18{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls17{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls27{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.299520pt;}
.ls9{letter-spacing:-0.294400pt;}
.ls12{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.212480pt;}
.ls49{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.081707pt;}
.ls4c{letter-spacing:0.097067pt;}
.ls41{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.133120pt;}
.ls24{letter-spacing:0.135467pt;}
.ls23{letter-spacing:0.135680pt;}
.ls25{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.170667pt;}
.ls2c{letter-spacing:0.224000pt;}
.ls7{letter-spacing:0.224640pt;}
.ls48{letter-spacing:0.232960pt;}
.lsc{letter-spacing:0.265600pt;}
.ls22{letter-spacing:0.271360pt;}
.ls26{letter-spacing:0.271467pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls4b{letter-spacing:0.295680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.384000pt;}
.ls5b{letter-spacing:0.448000pt;}
.lsd{letter-spacing:0.588800pt;}
.ls3f{letter-spacing:0.640000pt;}
.ls47{letter-spacing:0.704000pt;}
.ls11{letter-spacing:0.768000pt;}
.ls3a{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.536000pt;}
.ls3e{letter-spacing:1.920000pt;}
.ls51{letter-spacing:2.560000pt;}
.ls33{letter-spacing:3.200000pt;}
.ls40{letter-spacing:3.840000pt;}
.ls2f{letter-spacing:4.480000pt;}
.ls39{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:5.760000pt;}
.ls52{letter-spacing:6.400000pt;}
.ls32{letter-spacing:7.040000pt;}
.ls31{letter-spacing:7.146667pt;}
.lsb{letter-spacing:7.330560pt;}
.ls2a{letter-spacing:8.320000pt;}
.ls3b{letter-spacing:8.960000pt;}
.ls2b{letter-spacing:9.600000pt;}
.ls53{letter-spacing:10.368000pt;}
.ls44{letter-spacing:10.880000pt;}
.ls1d{letter-spacing:11.136000pt;}
.ls2e{letter-spacing:11.520000pt;}
.ls38{letter-spacing:12.160000pt;}
.ls37{letter-spacing:12.800000pt;}
.ls46{letter-spacing:14.080000pt;}
.lse{letter-spacing:14.190080pt;}
.ls3d{letter-spacing:14.720000pt;}
.ls1f{letter-spacing:14.928000pt;}
.ls45{letter-spacing:15.360000pt;}
.ls5a{letter-spacing:16.000000pt;}
.ls4e{letter-spacing:20.480000pt;}
.ls50{letter-spacing:21.760000pt;}
.ls3c{letter-spacing:23.680000pt;}
.ls43{letter-spacing:26.240000pt;}
.ls29{letter-spacing:26.880000pt;}
.ls30{letter-spacing:30.080000pt;}
.ls4f{letter-spacing:48.128000pt;}
.ls4d{letter-spacing:51.968000pt;}
.ls5c{letter-spacing:90.986667pt;}
.ls59{letter-spacing:122.986667pt;}
.ls20{letter-spacing:135.040000pt;}
.ls54{letter-spacing:178.346667pt;}
.ls56{letter-spacing:190.453333pt;}
.ls55{letter-spacing:194.933333pt;}
.ls4a{letter-spacing:282.858667pt;}
.ls35{letter-spacing:323.818667pt;}
.ls36{letter-spacing:521.738667pt;}
.ls21{letter-spacing:546.058667pt;}
.ls58{letter-spacing:918.538667pt;}
.ls57{letter-spacing:950.538667pt;}
.ws4{word-spacing:-17.536000pt;}
.ws16{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.384000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.808000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws6{word-spacing:-15.360000pt;}
.wsc{word-spacing:-14.991467pt;}
.wsd{word-spacing:-14.855467pt;}
.wsb{word-spacing:-14.720000pt;}
.ws12{word-spacing:-14.464000pt;}
.ws2{word-spacing:-13.696000pt;}
.wse{word-spacing:-13.280000pt;}
.ws0{word-spacing:-13.067520pt;}
.ws5{word-spacing:-12.928000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws7{word-spacing:-9.856000pt;}
.ws1{word-spacing:-9.088000pt;}
.ws8{word-spacing:-6.784000pt;}
.ws9{word-spacing:-6.016000pt;}
.wsa{word-spacing:0.000000pt;}
._15{margin-left:-14.633600pt;}
._16{margin-left:-11.084800pt;}
._21{margin-left:-2.776107pt;}
._0{margin-left:-1.572480pt;}
._1{width:1.123200pt;}
._4{width:2.529088pt;}
._3{width:3.628032pt;}
._13{width:4.644096pt;}
._a{width:5.632000pt;}
._9{width:7.120000pt;}
._12{width:8.448000pt;}
._b{width:9.345280pt;}
._5{width:10.411520pt;}
._14{width:11.301120pt;}
._2{width:12.217600pt;}
._17{width:13.733547pt;}
._11{width:15.361045pt;}
._18{width:16.427520pt;}
._10{width:18.148267pt;}
._6{width:19.221760pt;}
._7{width:20.625920pt;}
._c{width:21.838187pt;}
._8{width:22.836288pt;}
._19{width:23.819712pt;}
._27{width:24.755776pt;}
._22{width:25.664000pt;}
._1a{width:26.560000pt;}
._1b{width:27.516800pt;}
._d{width:28.480000pt;}
._e{width:29.468800pt;}
._1d{width:30.627200pt;}
._1c{width:31.533867pt;}
._23{width:34.945280pt;}
._f{width:36.251733pt;}
._25{width:40.448000pt;}
._26{width:42.272000pt;}
._24{width:78.784000pt;}
._1e{width:164.392960pt;}
._1f{width:202.252800pt;}
._20{width:231.282347pt;}
._28{width:1929.706667pt;}
.fs8{font-size:10.880000pt;}
.fs5{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs1{font-size:74.880000pt;}
.yc7{bottom:-14.906667pt;}
.y7a{bottom:-14.466667pt;}
.y0{bottom:0.000000pt;}
.yc4{bottom:2.693333pt;}
.y79{bottom:3.133333pt;}
.yec{bottom:3.186667pt;}
.y4f{bottom:3.200000pt;}
.y31{bottom:3.360000pt;}
.y5f{bottom:3.506667pt;}
.y53{bottom:3.520000pt;}
.y68{bottom:3.653333pt;}
.y59{bottom:3.666667pt;}
.ya2{bottom:3.680000pt;}
.y7d{bottom:4.160000pt;}
.y74{bottom:4.253333pt;}
.y6a{bottom:4.293333pt;}
.yc1{bottom:6.973333pt;}
.y66{bottom:7.493333pt;}
.y6f{bottom:9.213333pt;}
.y5b{bottom:11.986667pt;}
.y51{bottom:12.000000pt;}
.yaa{bottom:12.146667pt;}
.ya5{bottom:12.160000pt;}
.ya7{bottom:12.186667pt;}
.ycb{bottom:15.453333pt;}
.yba{bottom:18.053333pt;}
.yc9{bottom:18.493333pt;}
.y52{bottom:20.320000pt;}
.yf1{bottom:20.346667pt;}
.yd7{bottom:20.360000pt;}
.y57{bottom:20.466667pt;}
.ya4{bottom:20.480000pt;}
.ya8{bottom:20.506667pt;}
.y6e{bottom:25.093333pt;}
.y6c{bottom:26.373333pt;}
.yee{bottom:28.946667pt;}
.yf4{bottom:28.960000pt;}
.ybc{bottom:37.253333pt;}
.y58{bottom:37.266667pt;}
.yd1{bottom:37.280000pt;}
.ycf{bottom:37.306667pt;}
.yd6{bottom:37.320000pt;}
.yef{bottom:37.426667pt;}
.yd3{bottom:37.440000pt;}
.yc2{bottom:38.053333pt;}
.yc5{bottom:39.333333pt;}
.ybf{bottom:42.213333pt;}
.y7c{bottom:49.120000pt;}
.y1{bottom:52.960000pt;}
.y7b{bottom:53.120000pt;}
.yf2{bottom:54.106667pt;}
.y76{bottom:56.093333pt;}
.y71{bottom:57.053333pt;}
.y11f{bottom:66.333333pt;}
.yb8{bottom:81.920000pt;}
.ycd{bottom:91.040000pt;}
.y9c{bottom:94.240000pt;}
.yb7{bottom:100.320000pt;}
.y11d{bottom:104.480000pt;}
.yf3{bottom:108.480000pt;}
.y64{bottom:110.560000pt;}
.y2e{bottom:111.680000pt;}
.ycc{bottom:112.320000pt;}
.y9b{bottom:112.640000pt;}
.y2d{bottom:116.960000pt;}
.yb6{bottom:118.720000pt;}
.y11c{bottom:122.880000pt;}
.y2c{bottom:126.720000pt;}
.y63{bottom:128.960000pt;}
.y9a{bottom:131.040000pt;}
.yb5{bottom:137.120000pt;}
.y11b{bottom:141.280000pt;}
.y62{bottom:147.360000pt;}
.y99{bottom:149.440000pt;}
.y2b{bottom:153.760000pt;}
.yb4{bottom:155.520000pt;}
.y11a{bottom:159.680000pt;}
.yf0{bottom:159.840000pt;}
.y61{bottom:165.120000pt;}
.y98{bottom:167.840000pt;}
.y2a{bottom:172.160000pt;}
.yb3{bottom:173.920000pt;}
.y119{bottom:178.106667pt;}
.y60{bottom:180.506667pt;}
.y97{bottom:186.266667pt;}
.y29{bottom:190.586667pt;}
.yb2{bottom:192.346667pt;}
.y5e{bottom:193.160000pt;}
.y118{bottom:196.506667pt;}
.y120{bottom:204.506667pt;}
.y96{bottom:204.666667pt;}
.y28{bottom:208.986667pt;}
.yb1{bottom:210.746667pt;}
.y117{bottom:214.906667pt;}
.y95{bottom:223.066667pt;}
.y27{bottom:227.386667pt;}
.yed{bottom:227.880000pt;}
.yb0{bottom:229.146667pt;}
.y116{bottom:233.306667pt;}
.y94{bottom:241.466667pt;}
.y5d{bottom:244.360000pt;}
.y26{bottom:245.786667pt;}
.yaf{bottom:247.546667pt;}
.y115{bottom:251.706667pt;}
.y93{bottom:259.866667pt;}
.y25{bottom:264.186667pt;}
.yae{bottom:265.306667pt;}
.y114{bottom:270.106667pt;}
.y92{bottom:278.266667pt;}
.y5c{bottom:278.760000pt;}
.yeb{bottom:279.240000pt;}
.yad{bottom:280.506667pt;}
.y24{bottom:282.266667pt;}
.y113{bottom:288.506667pt;}
.yac{bottom:295.866667pt;}
.y91{bottom:296.666667pt;}
.y112{bottom:306.906667pt;}
.yab{bottom:308.520000pt;}
.y5a{bottom:313.160000pt;}
.y90{bottom:315.066667pt;}
.yea{bottom:319.066667pt;}
.y23{bottom:322.586667pt;}
.y111{bottom:325.306667pt;}
.y8f{bottom:333.466667pt;}
.ye9{bottom:337.466667pt;}
.y22{bottom:340.986667pt;}
.ya9{bottom:342.920000pt;}
.y110{bottom:343.706667pt;}
.y56{bottom:347.560000pt;}
.y8e{bottom:351.866667pt;}
.ye8{bottom:355.866667pt;}
.y21{bottom:359.386667pt;}
.y10f{bottom:362.106667pt;}
.y8d{bottom:370.266667pt;}
.ye7{bottom:374.266667pt;}
.ya6{bottom:377.320000pt;}
.y20{bottom:377.626667pt;}
.y10e{bottom:380.506667pt;}
.y8c{bottom:388.706667pt;}
.ye6{bottom:392.706667pt;}
.y1f{bottom:396.066667pt;}
.y55{bottom:398.946667pt;}
.y8b{bottom:407.106667pt;}
.ye5{bottom:411.106667pt;}
.ya3{bottom:411.746667pt;}
.y1e{bottom:414.466667pt;}
.y10d{bottom:417.346667pt;}
.y8a{bottom:425.506667pt;}
.ye4{bottom:429.506667pt;}
.y1d{bottom:432.866667pt;}
.y54{bottom:433.346667pt;}
.y10c{bottom:435.746667pt;}
.y89{bottom:443.906667pt;}
.ya1{bottom:446.146667pt;}
.ye3{bottom:447.906667pt;}
.y1c{bottom:451.266667pt;}
.y10b{bottom:454.146667pt;}
.y88{bottom:462.306667pt;}
.ya0{bottom:463.746667pt;}
.ye2{bottom:466.306667pt;}
.y50{bottom:467.746667pt;}
.y1b{bottom:469.666667pt;}
.y10a{bottom:472.546667pt;}
.y87{bottom:480.706667pt;}
.ye1{bottom:484.706667pt;}
.y1a{bottom:488.066667pt;}
.y109{bottom:490.946667pt;}
.y86{bottom:499.106667pt;}
.y4e{bottom:502.146667pt;}
.ye0{bottom:503.106667pt;}
.y9f{bottom:503.746667pt;}
.y19{bottom:506.466667pt;}
.y108{bottom:509.346667pt;}
.y85{bottom:517.506667pt;}
.ydf{bottom:521.506667pt;}
.y9e{bottom:522.146667pt;}
.y4d{bottom:522.946667pt;}
.y18{bottom:524.866667pt;}
.y107{bottom:527.746667pt;}
.y84{bottom:535.906667pt;}
.yde{bottom:539.906667pt;}
.y4c{bottom:540.226667pt;}
.y9d{bottom:540.546667pt;}
.y17{bottom:542.946667pt;}
.y106{bottom:546.146667pt;}
.y83{bottom:554.306667pt;}
.ydd{bottom:557.666667pt;}
.y4b{bottom:558.946667pt;}
.y105{bottom:564.546667pt;}
.y82{bottom:572.706667pt;}
.ydc{bottom:573.026667pt;}
.y4a{bottom:577.186667pt;}
.y16{bottom:579.746667pt;}
.y104{bottom:582.946667pt;}
.ydb{bottom:585.666667pt;}
.y81{bottom:591.106667pt;}
.y49{bottom:595.586667pt;}
.y15{bottom:596.386667pt;}
.y103{bottom:601.373333pt;}
.y80{bottom:609.533333pt;}
.y14{bottom:611.613333pt;}
.y48{bottom:613.373333pt;}
.y102{bottom:619.773333pt;}
.y13{bottom:626.973333pt;}
.y7f{bottom:627.933333pt;}
.yda{bottom:636.893333pt;}
.y101{bottom:637.533333pt;}
.y12{bottom:642.333333pt;}
.y47{bottom:646.333333pt;}
.y100{bottom:652.733333pt;}
.y11{bottom:657.693333pt;}
.y46{bottom:664.733333pt;}
.yff{bottom:668.093333pt;}
.yca{bottom:668.640000pt;}
.y10{bottom:673.053333pt;}
.y75{bottom:678.720000pt;}
.y70{bottom:678.880000pt;}
.yfe{bottom:681.693333pt;}
.y11e{bottom:681.760000pt;}
.y45{bottom:683.133333pt;}
.yd9{bottom:688.253333pt;}
.yf{bottom:688.413333pt;}
.y78{bottom:699.613333pt;}
.y73{bottom:700.733333pt;}
.y44{bottom:701.533333pt;}
.ye{bottom:703.613333pt;}
.y77{bottom:717.213333pt;}
.y72{bottom:718.333333pt;}
.yd{bottom:718.973333pt;}
.y43{bottom:719.933333pt;}
.yc8{bottom:721.760000pt;}
.yc{bottom:734.333333pt;}
.y42{bottom:738.333333pt;}
.yd8{bottom:739.453333pt;}
.yb{bottom:749.693333pt;}
.y41{bottom:756.733333pt;}
.ya{bottom:765.053333pt;}
.y40{bottom:775.133333pt;}
.y9{bottom:780.413333pt;}
.ybe{bottom:781.920000pt;}
.yd5{bottom:790.813333pt;}
.y6b{bottom:791.840000pt;}
.y3f{bottom:793.533333pt;}
.y8{bottom:795.293333pt;}
.yc6{bottom:803.293333pt;}
.y6d{bottom:804.093333pt;}
.yc0{bottom:806.493333pt;}
.y3e{bottom:811.973333pt;}
.yfd{bottom:823.653333pt;}
.y6{bottom:828.613333pt;}
.y3d{bottom:830.373333pt;}
.y7{bottom:835.973333pt;}
.yd4{bottom:842.053333pt;}
.y3c{bottom:848.773333pt;}
.yfc{bottom:860.453333pt;}
.ybb{bottom:862.400000pt;}
.y3b{bottom:867.173333pt;}
.y69{bottom:876.640000pt;}
.y67{bottom:877.280000pt;}
.yfb{bottom:878.853333pt;}
.ybd{bottom:881.733333pt;}
.yc3{bottom:882.693333pt;}
.y3a{bottom:885.573333pt;}
.yd2{bottom:893.253333pt;}
.yfa{bottom:897.253333pt;}
.y39{bottom:903.973333pt;}
.y5{bottom:904.773333pt;}
.yf9{bottom:915.653333pt;}
.y7e{bottom:922.373333pt;}
.y65{bottom:923.520000pt;}
.y4{bottom:927.973333pt;}
.yf8{bottom:933.413333pt;}
.y38{bottom:940.773333pt;}
.yb9{bottom:942.240000pt;}
.yd0{bottom:944.613333pt;}
.yf7{bottom:948.773333pt;}
.y37{bottom:959.173333pt;}
.yf6{bottom:961.413333pt;}
.y36{bottom:977.573333pt;}
.yce{bottom:995.813333pt;}
.y35{bottom:995.973333pt;}
.y3{bottom:1006.853333pt;}
.yf5{bottom:1012.773333pt;}
.y34{bottom:1014.373333pt;}
.y2{bottom:1030.080000pt;}
.y33{bottom:1032.800000pt;}
.y32{bottom:1055.200000pt;}
.y30{bottom:1058.240000pt;}
.y2f{bottom:1078.238667pt;}
.h11{height:10.821563pt;}
.hf{height:15.360000pt;}
.h13{height:16.786667pt;}
.h36{height:16.796000pt;}
.h22{height:16.946667pt;}
.h2d{height:16.956000pt;}
.h1a{height:16.960000pt;}
.h1b{height:17.600000pt;}
.h21{height:17.916000pt;}
.h19{height:21.120000pt;}
.h2b{height:27.680000pt;}
.h24{height:30.560000pt;}
.h2a{height:31.200000pt;}
.hc{height:31.406250pt;}
.h14{height:33.586667pt;}
.h37{height:33.620000pt;}
.h16{height:33.746667pt;}
.h23{height:33.778667pt;}
.h1d{height:36.000000pt;}
.h1c{height:36.160000pt;}
.h6{height:42.084375pt;}
.hd{height:47.109375pt;}
.h1f{height:47.621250pt;}
.h29{height:47.736000pt;}
.h26{height:50.240000pt;}
.h18{height:50.546667pt;}
.h35{height:50.556000pt;}
.h2f{height:50.560000pt;}
.he{height:50.567708pt;}
.h15{height:50.578667pt;}
.h2e{height:50.580000pt;}
.h32{height:50.586667pt;}
.h31{height:50.592000pt;}
.h33{height:50.706667pt;}
.h30{height:50.720000pt;}
.h7{height:52.108438pt;}
.h10{height:52.134375pt;}
.h28{height:52.260000pt;}
.h17{height:52.785000pt;}
.h25{height:53.535000pt;}
.h27{height:54.400000pt;}
.ha{height:57.375000pt;}
.h12{height:57.758750pt;}
.h8{height:57.787500pt;}
.hb{height:58.563750pt;}
.h4{height:59.340000pt;}
.h2c{height:62.781250pt;}
.h2{height:62.812500pt;}
.h9{height:64.500000pt;}
.h38{height:66.750000pt;}
.h34{height:67.392000pt;}
.h20{height:68.320000pt;}
.h1e{height:69.280000pt;}
.h3{height:75.465000pt;}
.h39{height:137.920000pt;}
.h1{height:1122.666667pt;}
.h5{height:1122.716000pt;}
.h0{height:1122.720000pt;}
.wd{width:22.226667pt;}
.w1d{width:95.680000pt;}
.w1e{width:98.560000pt;}
.w19{width:103.200000pt;}
.w1c{width:104.000000pt;}
.w18{width:105.120000pt;}
.we{width:110.552000pt;}
.w1a{width:110.720000pt;}
.w17{width:111.520000pt;}
.w1b{width:113.600000pt;}
.w4{width:119.832000pt;}
.w10{width:122.112000pt;}
.w23{width:126.072000pt;}
.w14{width:131.538667pt;}
.w11{width:131.712000pt;}
.wa{width:137.280000pt;}
.w15{width:138.906667pt;}
.w9{width:146.240000pt;}
.w21{width:179.546667pt;}
.w7{width:192.000000pt;}
.w8{width:205.120000pt;}
.w6{width:227.360000pt;}
.w13{width:254.466667pt;}
.wb{width:256.480000pt;}
.wc{width:267.520000pt;}
.w12{width:271.093333pt;}
.w20{width:319.680000pt;}
.w16{width:352.000000pt;}
.w1f{width:427.520000pt;}
.w22{width:457.213333pt;}
.w24{width:510.853333pt;}
.w5{width:516.933333pt;}
.wf{width:526.373333pt;}
.w3{width:638.213333pt;}
.w2{width:793.757333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.x1e{left:10.746667pt;}
.x21{left:14.813333pt;}
.x3e{left:16.866667pt;}
.x41{left:18.653333pt;}
.x46{left:20.613333pt;}
.x58{left:21.600000pt;}
.x56{left:22.880000pt;}
.x43{left:25.853333pt;}
.x36{left:26.912000pt;}
.x28{left:28.893333pt;}
.x2b{left:29.853333pt;}
.x39{left:32.226667pt;}
.x34{left:35.226667pt;}
.x37{left:36.506667pt;}
.x53{left:38.080000pt;}
.x57{left:39.680000pt;}
.x50{left:44.480000pt;}
.x22{left:52.133333pt;}
.x26{left:54.426667pt;}
.x1a{left:68.866667pt;}
.x18{left:70.626667pt;}
.x4a{left:76.066667pt;}
.x1c{left:79.453333pt;}
.x4c{left:80.386667pt;}
.x2c{left:84.733333pt;}
.xf{left:87.392000pt;}
.x9{left:94.592000pt;}
.x4d{left:95.872000pt;}
.x2{left:100.352000pt;}
.xd{left:101.632000pt;}
.x4{left:103.872000pt;}
.x2d{left:117.434667pt;}
.x5c{left:118.592000pt;}
.x23{left:120.160000pt;}
.xe{left:124.581333pt;}
.xb{left:132.352000pt;}
.x35{left:133.786667pt;}
.x5d{left:135.360000pt;}
.x8{left:141.786667pt;}
.x25{left:147.066667pt;}
.x24{left:148.506667pt;}
.x19{left:162.400000pt;}
.x5{left:168.666667pt;}
.x4f{left:173.626667pt;}
.x1d{left:190.240000pt;}
.x2f{left:198.906667pt;}
.x49{left:202.880000pt;}
.x15{left:208.346667pt;}
.x1f{left:211.866667pt;}
.x54{left:214.426667pt;}
.x3{left:222.106667pt;}
.x55{left:228.066667pt;}
.x13{left:231.226667pt;}
.x33{left:232.800000pt;}
.x3a{left:234.720000pt;}
.x4b{left:256.320000pt;}
.x38{left:257.506667pt;}
.x3b{left:260.066667pt;}
.x4e{left:268.066667pt;}
.x51{left:275.906667pt;}
.x5b{left:277.026667pt;}
.x10{left:278.434667pt;}
.x17{left:291.680000pt;}
.x16{left:292.866667pt;}
.x59{left:299.746667pt;}
.x11{left:321.986667pt;}
.x31{left:330.626667pt;}
.x2e{left:337.346667pt;}
.x3c{left:358.400000pt;}
.xa{left:365.506667pt;}
.xc{left:376.226667pt;}
.x3d{left:381.986667pt;}
.x3f{left:390.813333pt;}
.x1{left:394.493333pt;}
.x12{left:406.493333pt;}
.x5a{left:418.493333pt;}
.x32{left:425.373333pt;}
.x52{left:430.013333pt;}
.x27{left:443.200000pt;}
.x1b{left:448.320000pt;}
.x29{left:454.653333pt;}
.x2a{left:465.533333pt;}
.x40{left:488.800000pt;}
.x20{left:492.800000pt;}
.x44{left:510.813333pt;}
.x42{left:515.453333pt;}
.x30{left:586.373333pt;}
.x6{left:595.973333pt;}
.x45{left:615.200000pt;}
.x47{left:638.853333pt;}
.x48{left:640.933333pt;}
.x7{left:712.957333pt;}
}




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