
    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_eb89d81899b01aedc51eb837.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_248f477c2e56dbb93669aa6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_80a619b84572584ef6e1be14.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_82ff7204d6149501c2c2a5d2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765137;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_b9c12d6b1a58f4b737296f13.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.672852;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_a4cf6a71185d5b5d3c18d08a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.929688;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_1d57e137d27fb243ca33356c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.950684;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_b95a8e8637cc9ff9ebb08d02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971191;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_35df77146f180c00cc1b140e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_35360ed7e885b60022770ba7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5a43f70f9e94cb04163cae75.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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:ffe;src:url('chunks/assets/font_edeca5ece7407360b18406a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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:fff;src:url('chunks/assets/font_08012af316740767a2091ced.woff2')format("woff");}.fff{font-family:fff;line-height:0.881836;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:ff10;src:url('chunks/assets/font_43a6c77edcbfc45ee96fc296.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.786983;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.m2{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,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);}
.v10{vertical-align:-38.400000px;}
.v2{vertical-align:-7.800000px;}
.v5{vertical-align:-5.400000px;}
.v7{vertical-align:-3.600000px;}
.vb{vertical-align:-1.200000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.200000px;}
.vc{vertical-align:2.400000px;}
.v8{vertical-align:3.600000px;}
.v6{vertical-align:5.400000px;}
.v3{vertical-align:7.800000px;}
.va{vertical-align:21.000000px;}
.vd{vertical-align:25.200000px;}
.v1{vertical-align:27.000000px;}
.v4{vertical-align:34.800000px;}
.vf{vertical-align:39.600000px;}
.ve{vertical-align:51.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.028800px;}
.ls28{letter-spacing:0.042000px;}
.ls7{letter-spacing:0.048000px;}
.lsc{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.090000px;}
.ls2b{letter-spacing:0.096000px;}
.ls11{letter-spacing:0.102000px;}
.ls24{letter-spacing:0.150000px;}
.ls26{letter-spacing:0.156000px;}
.lsd{letter-spacing:0.168000px;}
.ls22{letter-spacing:0.186000px;}
.lsa{letter-spacing:0.192000px;}
.ls23{letter-spacing:0.198000px;}
.ls18{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.312000px;}
.ls1f{letter-spacing:0.342000px;}
.ls1e{letter-spacing:0.354000px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.366000px;}
.ls13{letter-spacing:0.420000px;}
.ls10{letter-spacing:0.456000px;}
.ls27{letter-spacing:0.474000px;}
.ls5{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.528000px;}
.ls19{letter-spacing:4.140000px;}
.ls3{letter-spacing:5.400000px;}
.ls1{letter-spacing:8.400000px;}
.ls2{letter-spacing:33.000000px;}
.ls8{letter-spacing:86.700000px;}
.ls12{letter-spacing:106.902000px;}
.ls15{letter-spacing:112.302000px;}
.ls17{letter-spacing:114.102000px;}
.ls14{letter-spacing:115.902000px;}
.ls1d{letter-spacing:130.134000px;}
.ls1c{letter-spacing:130.734000px;}
.ls21{letter-spacing:216.310800px;}
.ls20{letter-spacing:229.811400px;}
.ls2a{letter-spacing:295.674000px;}
.ls29{letter-spacing:296.274000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-24.000000px;}
.wsd{word-spacing:-21.060000px;}
.ws27{word-spacing:-20.460000px;}
.wsc{word-spacing:-18.634928px;}
.ws3{word-spacing:-18.634742px;}
.wse{word-spacing:-18.000000px;}
.ws28{word-spacing:-16.944000px;}
.ws23{word-spacing:-16.848000px;}
.ws1{word-spacing:-14.742000px;}
.ws20{word-spacing:-14.364000px;}
.ws16{word-spacing:-14.322000px;}
.ws14{word-spacing:-12.214800px;}
.ws10{word-spacing:-10.500000px;}
.ws21{word-spacing:-9.687600px;}
.ws1b{word-spacing:-8.388600px;}
.wsb{word-spacing:-0.384000px;}
.ws7{word-spacing:-0.192000px;}
.ws11{word-spacing:-0.072000px;}
.ws5{word-spacing:-0.062116px;}
.ws26{word-spacing:-0.060000px;}
.wsf{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws9{word-spacing:0.192000px;}
.ws6{word-spacing:0.434811px;}
.wsa{word-spacing:2.184000px;}
.ws4{word-spacing:11.615656px;}
.ws8{word-spacing:14.688000px;}
.ws12{word-spacing:93.720000px;}
.ws13{word-spacing:96.540000px;}
.ws15{word-spacing:111.978000px;}
.ws17{word-spacing:133.143600px;}
.ws1f{word-spacing:143.052000px;}
.ws1d{word-spacing:188.472000px;}
.ws18{word-spacing:196.546800px;}
.ws24{word-spacing:196.968000px;}
.ws19{word-spacing:197.746800px;}
.ws1e{word-spacing:203.472000px;}
.ws25{word-spacing:253.872000px;}
.ws1a{word-spacing:279.346800px;}
.ws22{word-spacing:279.672000px;}
.ws1c{word-spacing:339.324000px;}
._1{margin-left:-11.615656px;}
._18{margin-left:-9.155976px;}
._1f{margin-left:-7.593398px;}
._f{margin-left:-6.120000px;}
._4{margin-left:-5.040000px;}
._17{margin-left:-4.018699px;}
._10{margin-left:-2.736000px;}
._5{margin-left:-1.344000px;}
._2{width:1.018699px;}
._6{width:2.712000px;}
._9{width:3.744000px;}
._e{width:5.472000px;}
._d{width:7.007976px;}
._8{width:8.280000px;}
._7{width:9.504000px;}
._19{width:10.560000px;}
._0{width:11.851696px;}
._1a{width:12.868304px;}
._15{width:13.930699px;}
._3{width:15.013301px;}
._c{width:16.898578px;}
._1e{width:18.105446px;}
._1b{width:19.860000px;}
._16{width:22.321301px;}
._1d{width:24.060000px;}
._13{width:25.984195px;}
._12{width:26.989301px;}
._1c{width:28.011316px;}
._11{width:29.304000px;}
._20{width:30.374554px;}
._a{width:32.328000px;}
._b{width:33.432000px;}
._14{width:35.400000px;}
._21{width:46.553299px;}
._24{width:107.640000px;}
._25{width:119.040000px;}
._26{width:128.184000px;}
._27{width:131.040000px;}
._31{width:204.960000px;}
._33{width:217.440000px;}
._30{width:219.720000px;}
._23{width:221.040000px;}
._2a{width:231.624000px;}
._32{width:233.136000px;}
._2b{width:235.920000px;}
._2f{width:254.040000px;}
._2e{width:269.040000px;}
._39{width:288.000000px;}
._36{width:289.200000px;}
._38{width:303.816000px;}
._29{width:312.255000px;}
._37{width:360.960000px;}
._2c{width:371.784000px;}
._34{width:378.852000px;}
._2d{width:383.400000px;}
._28{width:393.984000px;}
._35{width:423.828000px;}
._22{width:647.010000px;}
.fc7{color:rgb(197,0,11);}
.fc8{color:rgb(0,0,128);}
.fc3{color:rgb(0,0,128);}
.fc5{color:rgb(171,56,52);}
.fc1{color:rgb(171,56,52);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(17,17,17);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:24.600000px;}
.fsd{font-size:27.600000px;}
.fsa{font-size:34.800000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:62.115807px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:74.538968px;}
.fs8{font-size:74.539714px;}
.fs6{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:0.150000px;}
.y3e{bottom:53.100000px;}
.y5{bottom:66.525004px;}
.y130{bottom:88.500000px;}
.y105{bottom:89.700000px;}
.ya6{bottom:96.300000px;}
.y4{bottom:97.125005px;}
.y12f{bottom:108.300000px;}
.y104{bottom:117.000000px;}
.ye1{bottom:126.750000px;}
.y12e{bottom:128.100000px;}
.y5e{bottom:128.250000px;}
.y22{bottom:139.264499px;}
.ya5{bottom:143.400000px;}
.y103{bottom:144.300000px;}
.y12d{bottom:147.900000px;}
.y92{bottom:149.400000px;}
.y3d{bottom:149.550000px;}
.y5d{bottom:155.550000px;}
.y17c{bottom:157.800000px;}
.yeb{bottom:158.850000px;}
.y151{bottom:163.050000px;}
.y12c{bottom:167.700000px;}
.y102{bottom:171.600000px;}
.ybd{bottom:174.900000px;}
.y3c{bottom:180.000000px;}
.y5c{bottom:182.850000px;}
.y17b{bottom:185.100000px;}
.yce{bottom:185.250000px;}
.yea{bottom:186.150000px;}
.ye0{bottom:186.600000px;}
.y12b{bottom:187.500000px;}
.y150{bottom:190.350000px;}
.ya4{bottom:190.650000px;}
.y19{bottom:196.933500px;}
.y101{bottom:198.900000px;}
.ybc{bottom:203.700000px;}
.y12a{bottom:207.300000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y3b{bottom:210.300000px;}
.ycd{bottom:212.550000px;}
.ye9{bottom:213.450000px;}
.y91{bottom:213.750000px;}
.ydf{bottom:216.150000px;}
.y14f{bottom:217.650000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y100{bottom:226.200000px;}
.y129{bottom:227.100000px;}
.y17a{bottom:227.400000px;}
.y5b{bottom:227.550000px;}
.ybb{bottom:233.250000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ya3{bottom:237.750000px;}
.y3a{bottom:240.750000px;}
.y90{bottom:241.050000px;}
.y14e{bottom:244.950000px;}
.y128{bottom:246.900000px;}
.y179{bottom:249.900000px;}
.yff{bottom:253.500000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yba{bottom:260.550000px;}
.y127{bottom:266.700000px;}
.y8f{bottom:268.350000px;}
.y14d{bottom:272.250000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y162{bottom:274.050000px;}
.y178{bottom:277.200000px;}
.yfe{bottom:280.800000px;}
.ya2{bottom:285.000000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y7d{bottom:285.600000px;}
.y126{bottom:286.500000px;}
.yb9{bottom:287.850000px;}
.y39{bottom:288.450000px;}
.ycc{bottom:289.800000px;}
.ye8{bottom:291.900000px;}
.yde{bottom:294.750000px;}
.y8e{bottom:295.650000px;}
.y14c{bottom:299.550000px;}
.y161{bottom:301.800000px;}
.y125{bottom:306.300000px;}
.yfd{bottom:308.100000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y7c{bottom:312.900000px;}
.yb8{bottom:315.150000px;}
.y5a{bottom:316.950000px;}
.y38{bottom:318.900000px;}
.ye7{bottom:320.700000px;}
.y177{bottom:321.900000px;}
.ydd{bottom:322.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y8d{bottom:322.950000px;}
.y124{bottom:326.100000px;}
.y14b{bottom:326.850000px;}
.ycb{bottom:327.750000px;}
.y160{bottom:329.100000px;}
.ya1{bottom:332.100000px;}
.yfc{bottom:335.400000px;}
.y7b{bottom:340.200000px;}
.yb7{bottom:342.450000px;}
.y59{bottom:344.250000px;}
.y123{bottom:345.900000px;}
.y10{bottom:348.133500px;}
.y176{bottom:349.200000px;}
.y8c{bottom:350.250000px;}
.y14a{bottom:354.150000px;}
.y122{bottom:365.700000px;}
.y37{bottom:366.600000px;}
.y7a{bottom:367.500000px;}
.yb6{bottom:369.750000px;}
.y58{bottom:371.550000px;}
.y15f{bottom:373.800000px;}
.y175{bottom:376.500000px;}
.yfb{bottom:380.100000px;}
.y121{bottom:385.500000px;}
.yf{bottom:386.785499px;}
.y79{bottom:394.800000px;}
.y8b{bottom:394.950000px;}
.y36{bottom:397.050000px;}
.y57{bottom:398.850000px;}
.ye6{bottom:400.200000px;}
.ydc{bottom:400.500000px;}
.y120{bottom:405.300000px;}
.yfa{bottom:407.400000px;}
.ye{bottom:408.044999px;}
.yb5{bottom:409.200000px;}
.y174{bottom:418.800000px;}
.y78{bottom:422.100000px;}
.y11f{bottom:425.100000px;}
.y56{bottom:426.150000px;}
.ydb{bottom:427.800000px;}
.ye5{bottom:429.000000px;}
.yf9{bottom:434.700000px;}
.yb4{bottom:440.250000px;}
.y173{bottom:441.300000px;}
.y35{bottom:444.750000px;}
.y11e{bottom:444.900000px;}
.y15e{bottom:452.400000px;}
.y55{bottom:453.450000px;}
.yda{bottom:455.100000px;}
.ye4{bottom:460.800000px;}
.yf8{bottom:462.000000px;}
.y11d{bottom:464.700000px;}
.y77{bottom:466.800000px;}
.y172{bottom:468.600000px;}
.yb3{bottom:471.150000px;}
.y8a{bottom:472.350000px;}
.y34{bottom:475.200000px;}
.y15d{bottom:479.700000px;}
.y149{bottom:480.750000px;}
.y11c{bottom:484.500000px;}
.yf7{bottom:489.300000px;}
.ye3{bottom:493.050000px;}
.y76{bottom:494.100000px;}
.y54{bottom:498.150000px;}
.yd9{bottom:499.800000px;}
.ya0{bottom:502.650000px;}
.yd{bottom:502.864502px;}
.y11b{bottom:504.300000px;}
.y33{bottom:505.500000px;}
.y148{bottom:508.050000px;}
.y171{bottom:513.300000px;}
.yb2{bottom:513.750000px;}
.yc{bottom:520.864502px;}
.y75{bottom:521.400000px;}
.y11a{bottom:524.100000px;}
.y15c{bottom:524.400000px;}
.y53{bottom:525.450000px;}
.yd8{bottom:527.100000px;}
.yf6{bottom:534.000000px;}
.y147{bottom:535.350000px;}
.y32{bottom:535.950000px;}
.yb{bottom:538.864499px;}
.y170{bottom:540.600000px;}
.y119{bottom:543.900000px;}
.y18b{bottom:547.800000px;}
.y74{bottom:548.700000px;}
.y9f{bottom:549.750000px;}
.y15b{bottom:551.700000px;}
.y52{bottom:552.750000px;}
.yd7{bottom:554.400000px;}
.ya{bottom:556.864499px;}
.y146{bottom:562.650000px;}
.y118{bottom:563.700000px;}
.y31{bottom:566.250000px;}
.y18a{bottom:567.000000px;}
.y16f{bottom:567.900000px;}
.yb1{bottom:568.050000px;}
.y15a{bottom:579.000000px;}
.y51{bottom:580.050000px;}
.ye2{bottom:582.150000px;}
.y117{bottom:583.500000px;}
.y189{bottom:586.050000px;}
.y145{bottom:589.950000px;}
.y73{bottom:593.400000px;}
.y9e{bottom:597.000000px;}
.y116{bottom:603.300000px;}
.y188{bottom:605.250000px;}
.y159{bottom:606.300000px;}
.y50{bottom:607.350000px;}
.y16e{bottom:612.600000px;}
.y30{bottom:614.100000px;}
.y144{bottom:617.250000px;}
.yca{bottom:618.000000px;}
.y72{bottom:620.700000px;}
.y115{bottom:623.100000px;}
.yf5{bottom:623.400000px;}
.y9{bottom:626.610001px;}
.yd6{bottom:633.000000px;}
.y158{bottom:633.600000px;}
.y4f{bottom:634.650000px;}
.yb0{bottom:639.750000px;}
.y16d{bottom:639.900000px;}
.y9d{bottom:641.400000px;}
.y114{bottom:642.900000px;}
.y2f{bottom:644.400000px;}
.y143{bottom:644.550000px;}
.yc9{bottom:645.300000px;}
.y8{bottom:645.510000px;}
.y71{bottom:648.000000px;}
.yf4{bottom:650.700000px;}
.y157{bottom:660.900000px;}
.y4e{bottom:661.950000px;}
.y113{bottom:662.700000px;}
.y7{bottom:666.771000px;}
.y16c{bottom:667.200000px;}
.y9c{bottom:668.700000px;}
.y142{bottom:671.850000px;}
.yc8{bottom:672.600000px;}
.y70{bottom:675.300000px;}
.y112{bottom:682.500000px;}
.y187{bottom:686.400000px;}
.y156{bottom:688.200000px;}
.y2e{bottom:692.250000px;}
.yaf{bottom:699.600000px;}
.yc7{bottom:699.900000px;}
.y111{bottom:702.300000px;}
.y6f{bottom:702.600000px;}
.y4d{bottom:706.650000px;}
.yd5{bottom:711.450000px;}
.y16b{bottom:711.900000px;}
.y9b{bottom:713.400000px;}
.y155{bottom:715.500000px;}
.y110{bottom:722.100000px;}
.y6{bottom:726.298500px;}
.yc6{bottom:727.200000px;}
.yf3{bottom:729.150000px;}
.y6e{bottom:729.900000px;}
.yae{bottom:730.800000px;}
.y4c{bottom:733.950000px;}
.yd4{bottom:738.750000px;}
.y16a{bottom:739.200000px;}
.y10f{bottom:741.900000px;}
.y154{bottom:742.800000px;}
.y141{bottom:749.250000px;}
.y3{bottom:752.599495px;}
.yf2{bottom:756.450000px;}
.y6d{bottom:757.200000px;}
.y4b{bottom:761.250000px;}
.y10e{bottom:761.700000px;}
.yd3{bottom:766.050000px;}
.y169{bottom:766.500000px;}
.y186{bottom:770.400000px;}
.y2d{bottom:775.200000px;}
.y140{bottom:776.400000px;}
.yad{bottom:779.250000px;}
.y10d{bottom:781.650000px;}
.yf1{bottom:783.750000px;}
.y6c{bottom:784.500000px;}
.y13f{bottom:786.300000px;}
.y153{bottom:787.500000px;}
.y4a{bottom:788.550000px;}
.y2c{bottom:792.600000px;}
.yd2{bottom:794.850000px;}
.y185{bottom:797.700000px;}
.y9a{bottom:802.800000px;}
.yc5{bottom:805.800000px;}
.y168{bottom:808.800000px;}
.y89{bottom:810.750000px;}
.y6b{bottom:811.800000px;}
.y49{bottom:815.850000px;}
.y13e{bottom:816.000000px;}
.yd1{bottom:825.900000px;}
.y2b{bottom:826.800000px;}
.y99{bottom:831.600000px;}
.yc4{bottom:833.100000px;}
.y88{bottom:838.050000px;}
.y6a{bottom:839.100000px;}
.yac{bottom:839.550000px;}
.y184{bottom:840.000000px;}
.y48{bottom:843.150000px;}
.y13d{bottom:855.300000px;}
.yd0{bottom:856.950000px;}
.yc3{bottom:860.400000px;}
.y13b{bottom:861.600000px;}
.y10c{bottom:861.750000px;}
.yf0{bottom:862.350000px;}
.y183{bottom:864.300000px;}
.y152{bottom:864.750000px;}
.y87{bottom:865.350000px;}
.y69{bottom:866.400000px;}
.y13c{bottom:868.050000px;}
.y47{bottom:870.450000px;}
.y2a{bottom:871.950000px;}
.y98{bottom:878.700000px;}
.y2{bottom:879.369000px;}
.y167{bottom:887.700000px;}
.y10b{bottom:888.900000px;}
.yef{bottom:889.650000px;}
.y182{bottom:891.600000px;}
.y86{bottom:892.650000px;}
.y68{bottom:893.700000px;}
.y46{bottom:897.750000px;}
.yab{bottom:899.400000px;}
.yc2{bottom:905.100000px;}
.y10a{bottom:908.700000px;}
.y13a{bottom:915.150000px;}
.y29{bottom:919.650000px;}
.y85{bottom:919.950000px;}
.y67{bottom:921.000000px;}
.y45{bottom:925.050000px;}
.y97{bottom:925.800000px;}
.yaa{bottom:926.700000px;}
.y109{bottom:928.200000px;}
.y166{bottom:932.400000px;}
.y181{bottom:933.900000px;}
.ycf{bottom:934.350000px;}
.y84{bottom:947.250000px;}
.y66{bottom:948.300000px;}
.y44{bottom:952.350000px;}
.y180{bottom:958.200000px;}
.y165{bottom:959.700000px;}
.y1{bottom:966.726000px;}
.yee{bottom:968.100000px;}
.y96{bottom:970.500000px;}
.ya9{bottom:972.900000px;}
.y83{bottom:974.550000px;}
.y65{bottom:975.600000px;}
.y43{bottom:979.650000px;}
.y17f{bottom:985.500000px;}
.y139{bottom:992.400000px;}
.yc1{bottom:994.500000px;}
.yed{bottom:995.400000px;}
.y82{bottom:1001.850000px;}
.y164{bottom:1004.400000px;}
.y108{bottom:1009.050000px;}
.y138{bottom:1019.700000px;}
.y64{bottom:1020.300000px;}
.yc0{bottom:1021.800000px;}
.y27{bottom:1023.300000px;}
.y42{bottom:1024.350000px;}
.y81{bottom:1029.150000px;}
.y17e{bottom:1030.200000px;}
.y163{bottom:1031.700000px;}
.y107{bottom:1036.350000px;}
.y137{bottom:1039.500000px;}
.yec{bottom:1040.100000px;}
.ya8{bottom:1040.850000px;}
.y63{bottom:1047.600000px;}
.ybf{bottom:1049.100000px;}
.y17d{bottom:1057.500000px;}
.y80{bottom:1057.950000px;}
.y136{bottom:1059.300000px;}
.y95{bottom:1059.900000px;}
.y26{bottom:1063.800000px;}
.y62{bottom:1074.900000px;}
.ybe{bottom:1076.400000px;}
.y135{bottom:1079.100000px;}
.y106{bottom:1083.900000px;}
.y134{bottom:1098.900000px;}
.y61{bottom:1102.200000px;}
.y7f{bottom:1103.700000px;}
.y94{bottom:1107.450000px;}
.y133{bottom:1118.700000px;}
.y41{bottom:1126.050000px;}
.y60{bottom:1129.500000px;}
.ya7{bottom:1134.600000px;}
.y132{bottom:1138.500000px;}
.y7e{bottom:1148.400000px;}
.y93{bottom:1155.900000px;}
.y40{bottom:1156.350000px;}
.y5f{bottom:1156.800000px;}
.y131{bottom:1158.300000px;}
.y25{bottom:1163.775000px;}
.y24{bottom:1180.753500px;}
.y3f{bottom:1197.150000px;}
.y23{bottom:1200.375000px;}
.hb{height:32.115234px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h17{height:36.703125px;}
.h18{height:37.410352px;}
.h1a{height:38.010352px;}
.h14{height:41.291016px;}
.h19{height:41.504297px;}
.h10{height:41.660156px;}
.ha{height:43.250557px;}
.h13{height:45.878906px;}
.h7{height:45.960000px;}
.he{height:47.988281px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hf{height:49.992188px;}
.h11{height:51.900668px;}
.h12{height:51.901187px;}
.h16{height:52.556322px;}
.h2{height:55.152000px;}
.h15{height:56.162109px;}
.hc{height:66.843750px;}
.h1c{height:76.303125px;}
.h5{height:78.132000px;}
.h1b{height:83.115234px;}
.h4{height:119.055004px;}
.hd{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:892.500000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:85.200000px;}
.x30{left:86.400000px;}
.x2f{left:89.700000px;}
.x21{left:91.650000px;}
.x2e{left:93.750000px;}
.x2d{left:95.850000px;}
.x25{left:99.750000px;}
.x1{left:102.045000px;}
.x1f{left:103.650000px;}
.x2{left:106.297500px;}
.x23{left:110.850000px;}
.x19{left:112.200000px;}
.x22{left:114.000000px;}
.x20{left:121.050000px;}
.xe{left:139.201485px;}
.x16{left:164.700000px;}
.x8{left:180.066000px;}
.x2a{left:193.950000px;}
.x2b{left:198.450000px;}
.x4{left:203.484001px;}
.xf{left:207.150000px;}
.x11{left:212.250000px;}
.x1b{left:227.700000px;}
.x9{left:232.806000px;}
.x15{left:234.600000px;}
.xb{left:239.400000px;}
.x27{left:250.050000px;}
.x13{left:271.200000px;}
.xc{left:273.750000px;}
.x24{left:276.750000px;}
.x2c{left:282.000000px;}
.x26{left:288.150000px;}
.x1e{left:291.450000px;}
.x1c{left:303.450000px;}
.x12{left:310.950000px;}
.x17{left:313.650000px;}
.x31{left:316.500000px;}
.xa{left:333.450000px;}
.x1d{left:344.850000px;}
.x6{left:362.194500px;}
.x10{left:390.300000px;}
.x14{left:428.550000px;}
.x3{left:454.959000px;}
.x5{left:478.779000px;}
.x7{left:608.805000px;}
.x28{left:628.650000px;}
.x29{left:736.050000px;}
.x1a{left:775.500000px;}
.x18{left:784.950000px;}
@media print{
.v10{vertical-align:-34.133333pt;}
.v2{vertical-align:-6.933333pt;}
.v5{vertical-align:-4.800000pt;}
.v7{vertical-align:-3.200000pt;}
.vb{vertical-align:-1.066667pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.066667pt;}
.vc{vertical-align:2.133333pt;}
.v8{vertical-align:3.200000pt;}
.v6{vertical-align:4.800000pt;}
.v3{vertical-align:6.933333pt;}
.va{vertical-align:18.666667pt;}
.vd{vertical-align:22.400000pt;}
.v1{vertical-align:24.000000pt;}
.v4{vertical-align:30.933333pt;}
.vf{vertical-align:35.200000pt;}
.ve{vertical-align:45.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.025600pt;}
.ls28{letter-spacing:0.037333pt;}
.ls7{letter-spacing:0.042667pt;}
.lsc{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.080000pt;}
.ls2b{letter-spacing:0.085333pt;}
.ls11{letter-spacing:0.090667pt;}
.ls24{letter-spacing:0.133333pt;}
.ls26{letter-spacing:0.138667pt;}
.lsd{letter-spacing:0.149333pt;}
.ls22{letter-spacing:0.165333pt;}
.lsa{letter-spacing:0.170667pt;}
.ls23{letter-spacing:0.176000pt;}
.ls18{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.277333pt;}
.ls1f{letter-spacing:0.304000pt;}
.ls1e{letter-spacing:0.314667pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.325333pt;}
.ls13{letter-spacing:0.373333pt;}
.ls10{letter-spacing:0.405333pt;}
.ls27{letter-spacing:0.421333pt;}
.ls5{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.469333pt;}
.ls19{letter-spacing:3.680000pt;}
.ls3{letter-spacing:4.800000pt;}
.ls1{letter-spacing:7.466667pt;}
.ls2{letter-spacing:29.333333pt;}
.ls8{letter-spacing:77.066667pt;}
.ls12{letter-spacing:95.024000pt;}
.ls15{letter-spacing:99.824000pt;}
.ls17{letter-spacing:101.424000pt;}
.ls14{letter-spacing:103.024000pt;}
.ls1d{letter-spacing:115.674667pt;}
.ls1c{letter-spacing:116.208000pt;}
.ls21{letter-spacing:192.276267pt;}
.ls20{letter-spacing:204.276800pt;}
.ls2a{letter-spacing:262.821333pt;}
.ls29{letter-spacing:263.354667pt;}
.ws2{word-spacing:-21.333333pt;}
.wsd{word-spacing:-18.720000pt;}
.ws27{word-spacing:-18.186667pt;}
.wsc{word-spacing:-16.564381pt;}
.ws3{word-spacing:-16.564215pt;}
.wse{word-spacing:-16.000000pt;}
.ws28{word-spacing:-15.061333pt;}
.ws23{word-spacing:-14.976000pt;}
.ws1{word-spacing:-13.104000pt;}
.ws20{word-spacing:-12.768000pt;}
.ws16{word-spacing:-12.730667pt;}
.ws14{word-spacing:-10.857600pt;}
.ws10{word-spacing:-9.333333pt;}
.ws21{word-spacing:-8.611200pt;}
.ws1b{word-spacing:-7.456533pt;}
.wsb{word-spacing:-0.341333pt;}
.ws7{word-spacing:-0.170667pt;}
.ws11{word-spacing:-0.064000pt;}
.ws5{word-spacing:-0.055214pt;}
.ws26{word-spacing:-0.053333pt;}
.wsf{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws9{word-spacing:0.170667pt;}
.ws6{word-spacing:0.386498pt;}
.wsa{word-spacing:1.941333pt;}
.ws4{word-spacing:10.325027pt;}
.ws8{word-spacing:13.056000pt;}
.ws12{word-spacing:83.306667pt;}
.ws13{word-spacing:85.813333pt;}
.ws15{word-spacing:99.536000pt;}
.ws17{word-spacing:118.349867pt;}
.ws1f{word-spacing:127.157333pt;}
.ws1d{word-spacing:167.530667pt;}
.ws18{word-spacing:174.708267pt;}
.ws24{word-spacing:175.082667pt;}
.ws19{word-spacing:175.774933pt;}
.ws1e{word-spacing:180.864000pt;}
.ws25{word-spacing:225.664000pt;}
.ws1a{word-spacing:248.308267pt;}
.ws22{word-spacing:248.597333pt;}
.ws1c{word-spacing:301.621333pt;}
._1{margin-left:-10.325027pt;}
._18{margin-left:-8.138645pt;}
._1f{margin-left:-6.749688pt;}
._f{margin-left:-5.440000pt;}
._4{margin-left:-4.480000pt;}
._17{margin-left:-3.572177pt;}
._10{margin-left:-2.432000pt;}
._5{margin-left:-1.194667pt;}
._2{width:0.905510pt;}
._6{width:2.410667pt;}
._9{width:3.328000pt;}
._e{width:4.864000pt;}
._d{width:6.229312pt;}
._8{width:7.360000pt;}
._7{width:8.448000pt;}
._19{width:9.386667pt;}
._0{width:10.534841pt;}
._1a{width:11.438492pt;}
._15{width:12.382844pt;}
._3{width:13.345156pt;}
._c{width:15.020958pt;}
._1e{width:16.093730pt;}
._1b{width:17.653333pt;}
._16{width:19.841156pt;}
._1d{width:21.386667pt;}
._13{width:23.097063pt;}
._12{width:23.990490pt;}
._1c{width:24.898948pt;}
._11{width:26.048000pt;}
._20{width:26.999603pt;}
._a{width:28.736000pt;}
._b{width:29.717333pt;}
._14{width:31.466667pt;}
._21{width:41.380710pt;}
._24{width:95.680000pt;}
._25{width:105.813333pt;}
._26{width:113.941333pt;}
._27{width:116.480000pt;}
._31{width:182.186667pt;}
._33{width:193.280000pt;}
._30{width:195.306667pt;}
._23{width:196.480000pt;}
._2a{width:205.888000pt;}
._32{width:207.232000pt;}
._2b{width:209.706667pt;}
._2f{width:225.813333pt;}
._2e{width:239.146667pt;}
._39{width:256.000000pt;}
._36{width:257.066667pt;}
._38{width:270.058667pt;}
._29{width:277.560000pt;}
._37{width:320.853333pt;}
._2c{width:330.474667pt;}
._34{width:336.757333pt;}
._2d{width:340.800000pt;}
._28{width:350.208000pt;}
._35{width:376.736000pt;}
._22{width:575.120000pt;}
.fsb{font-size:21.866667pt;}
.fsd{font-size:24.533333pt;}
.fsa{font-size:30.933333pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:55.214051pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:66.256861pt;}
.fs8{font-size:66.257523pt;}
.fs6{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:0.133333pt;}
.y3e{bottom:47.200000pt;}
.y5{bottom:59.133337pt;}
.y130{bottom:78.666667pt;}
.y105{bottom:79.733333pt;}
.ya6{bottom:85.600000pt;}
.y4{bottom:86.333337pt;}
.y12f{bottom:96.266667pt;}
.y104{bottom:104.000000pt;}
.ye1{bottom:112.666667pt;}
.y12e{bottom:113.866667pt;}
.y5e{bottom:114.000000pt;}
.y22{bottom:123.790666pt;}
.ya5{bottom:127.466667pt;}
.y103{bottom:128.266667pt;}
.y12d{bottom:131.466667pt;}
.y92{bottom:132.800000pt;}
.y3d{bottom:132.933333pt;}
.y5d{bottom:138.266667pt;}
.y17c{bottom:140.266667pt;}
.yeb{bottom:141.200000pt;}
.y151{bottom:144.933333pt;}
.y12c{bottom:149.066667pt;}
.y102{bottom:152.533333pt;}
.ybd{bottom:155.466667pt;}
.y3c{bottom:160.000000pt;}
.y5c{bottom:162.533333pt;}
.y17b{bottom:164.533333pt;}
.yce{bottom:164.666667pt;}
.yea{bottom:165.466667pt;}
.ye0{bottom:165.866667pt;}
.y12b{bottom:166.666667pt;}
.y150{bottom:169.200000pt;}
.ya4{bottom:169.466667pt;}
.y19{bottom:175.052000pt;}
.y101{bottom:176.800000pt;}
.ybc{bottom:181.066667pt;}
.y12a{bottom:184.266667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y3b{bottom:186.933333pt;}
.ycd{bottom:188.933333pt;}
.ye9{bottom:189.733333pt;}
.y91{bottom:190.000000pt;}
.ydf{bottom:192.133333pt;}
.y14f{bottom:193.466667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y100{bottom:201.066667pt;}
.y129{bottom:201.866667pt;}
.y17a{bottom:202.133333pt;}
.y5b{bottom:202.266667pt;}
.ybb{bottom:207.333333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ya3{bottom:211.333333pt;}
.y3a{bottom:214.000000pt;}
.y90{bottom:214.266667pt;}
.y14e{bottom:217.733333pt;}
.y128{bottom:219.466667pt;}
.y179{bottom:222.133333pt;}
.yff{bottom:225.333333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yba{bottom:231.600000pt;}
.y127{bottom:237.066667pt;}
.y8f{bottom:238.533333pt;}
.y14d{bottom:242.000000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y162{bottom:243.600000pt;}
.y178{bottom:246.400000pt;}
.yfe{bottom:249.600000pt;}
.ya2{bottom:253.333333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y7d{bottom:253.866667pt;}
.y126{bottom:254.666667pt;}
.yb9{bottom:255.866667pt;}
.y39{bottom:256.400000pt;}
.ycc{bottom:257.600000pt;}
.ye8{bottom:259.466667pt;}
.yde{bottom:262.000000pt;}
.y8e{bottom:262.800000pt;}
.y14c{bottom:266.266667pt;}
.y161{bottom:268.266667pt;}
.y125{bottom:272.266667pt;}
.yfd{bottom:273.866667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y7c{bottom:278.133333pt;}
.yb8{bottom:280.133333pt;}
.y5a{bottom:281.733333pt;}
.y38{bottom:283.466667pt;}
.ye7{bottom:285.066667pt;}
.y177{bottom:286.133333pt;}
.ydd{bottom:286.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y8d{bottom:287.066667pt;}
.y124{bottom:289.866667pt;}
.y14b{bottom:290.533333pt;}
.ycb{bottom:291.333333pt;}
.y160{bottom:292.533333pt;}
.ya1{bottom:295.200000pt;}
.yfc{bottom:298.133333pt;}
.y7b{bottom:302.400000pt;}
.yb7{bottom:304.400000pt;}
.y59{bottom:306.000000pt;}
.y123{bottom:307.466667pt;}
.y10{bottom:309.452000pt;}
.y176{bottom:310.400000pt;}
.y8c{bottom:311.333333pt;}
.y14a{bottom:314.800000pt;}
.y122{bottom:325.066667pt;}
.y37{bottom:325.866667pt;}
.y7a{bottom:326.666667pt;}
.yb6{bottom:328.666667pt;}
.y58{bottom:330.266667pt;}
.y15f{bottom:332.266667pt;}
.y175{bottom:334.666667pt;}
.yfb{bottom:337.866667pt;}
.y121{bottom:342.666667pt;}
.yf{bottom:343.809333pt;}
.y79{bottom:350.933333pt;}
.y8b{bottom:351.066667pt;}
.y36{bottom:352.933333pt;}
.y57{bottom:354.533333pt;}
.ye6{bottom:355.733333pt;}
.ydc{bottom:356.000000pt;}
.y120{bottom:360.266667pt;}
.yfa{bottom:362.133333pt;}
.ye{bottom:362.706666pt;}
.yb5{bottom:363.733333pt;}
.y174{bottom:372.266667pt;}
.y78{bottom:375.200000pt;}
.y11f{bottom:377.866667pt;}
.y56{bottom:378.800000pt;}
.ydb{bottom:380.266667pt;}
.ye5{bottom:381.333333pt;}
.yf9{bottom:386.400000pt;}
.yb4{bottom:391.333333pt;}
.y173{bottom:392.266667pt;}
.y35{bottom:395.333333pt;}
.y11e{bottom:395.466667pt;}
.y15e{bottom:402.133333pt;}
.y55{bottom:403.066667pt;}
.yda{bottom:404.533333pt;}
.ye4{bottom:409.600000pt;}
.yf8{bottom:410.666667pt;}
.y11d{bottom:413.066667pt;}
.y77{bottom:414.933333pt;}
.y172{bottom:416.533333pt;}
.yb3{bottom:418.800000pt;}
.y8a{bottom:419.866667pt;}
.y34{bottom:422.400000pt;}
.y15d{bottom:426.400000pt;}
.y149{bottom:427.333333pt;}
.y11c{bottom:430.666667pt;}
.yf7{bottom:434.933333pt;}
.ye3{bottom:438.266667pt;}
.y76{bottom:439.200000pt;}
.y54{bottom:442.800000pt;}
.yd9{bottom:444.266667pt;}
.ya0{bottom:446.800000pt;}
.yd{bottom:446.990669pt;}
.y11b{bottom:448.266667pt;}
.y33{bottom:449.333333pt;}
.y148{bottom:451.600000pt;}
.y171{bottom:456.266667pt;}
.yb2{bottom:456.666667pt;}
.yc{bottom:462.990669pt;}
.y75{bottom:463.466667pt;}
.y11a{bottom:465.866667pt;}
.y15c{bottom:466.133333pt;}
.y53{bottom:467.066667pt;}
.yd8{bottom:468.533333pt;}
.yf6{bottom:474.666667pt;}
.y147{bottom:475.866667pt;}
.y32{bottom:476.400000pt;}
.yb{bottom:478.990666pt;}
.y170{bottom:480.533333pt;}
.y119{bottom:483.466667pt;}
.y18b{bottom:486.933333pt;}
.y74{bottom:487.733333pt;}
.y9f{bottom:488.666667pt;}
.y15b{bottom:490.400000pt;}
.y52{bottom:491.333333pt;}
.yd7{bottom:492.800000pt;}
.ya{bottom:494.990666pt;}
.y146{bottom:500.133333pt;}
.y118{bottom:501.066667pt;}
.y31{bottom:503.333333pt;}
.y18a{bottom:504.000000pt;}
.y16f{bottom:504.800000pt;}
.yb1{bottom:504.933333pt;}
.y15a{bottom:514.666667pt;}
.y51{bottom:515.600000pt;}
.ye2{bottom:517.466667pt;}
.y117{bottom:518.666667pt;}
.y189{bottom:520.933333pt;}
.y145{bottom:524.400000pt;}
.y73{bottom:527.466667pt;}
.y9e{bottom:530.666667pt;}
.y116{bottom:536.266667pt;}
.y188{bottom:538.000000pt;}
.y159{bottom:538.933333pt;}
.y50{bottom:539.866667pt;}
.y16e{bottom:544.533333pt;}
.y30{bottom:545.866667pt;}
.y144{bottom:548.666667pt;}
.yca{bottom:549.333333pt;}
.y72{bottom:551.733333pt;}
.y115{bottom:553.866667pt;}
.yf5{bottom:554.133333pt;}
.y9{bottom:556.986668pt;}
.yd6{bottom:562.666667pt;}
.y158{bottom:563.200000pt;}
.y4f{bottom:564.133333pt;}
.yb0{bottom:568.666667pt;}
.y16d{bottom:568.800000pt;}
.y9d{bottom:570.133333pt;}
.y114{bottom:571.466667pt;}
.y2f{bottom:572.800000pt;}
.y143{bottom:572.933333pt;}
.yc9{bottom:573.600000pt;}
.y8{bottom:573.786667pt;}
.y71{bottom:576.000000pt;}
.yf4{bottom:578.400000pt;}
.y157{bottom:587.466667pt;}
.y4e{bottom:588.400000pt;}
.y113{bottom:589.066667pt;}
.y7{bottom:592.685334pt;}
.y16c{bottom:593.066667pt;}
.y9c{bottom:594.400000pt;}
.y142{bottom:597.200000pt;}
.yc8{bottom:597.866667pt;}
.y70{bottom:600.266667pt;}
.y112{bottom:606.666667pt;}
.y187{bottom:610.133333pt;}
.y156{bottom:611.733333pt;}
.y2e{bottom:615.333333pt;}
.yaf{bottom:621.866667pt;}
.yc7{bottom:622.133333pt;}
.y111{bottom:624.266667pt;}
.y6f{bottom:624.533333pt;}
.y4d{bottom:628.133333pt;}
.yd5{bottom:632.400000pt;}
.y16b{bottom:632.800000pt;}
.y9b{bottom:634.133333pt;}
.y155{bottom:636.000000pt;}
.y110{bottom:641.866667pt;}
.y6{bottom:645.598667pt;}
.yc6{bottom:646.400000pt;}
.yf3{bottom:648.133333pt;}
.y6e{bottom:648.800000pt;}
.yae{bottom:649.600000pt;}
.y4c{bottom:652.400000pt;}
.yd4{bottom:656.666667pt;}
.y16a{bottom:657.066667pt;}
.y10f{bottom:659.466667pt;}
.y154{bottom:660.266667pt;}
.y141{bottom:666.000000pt;}
.y3{bottom:668.977329pt;}
.yf2{bottom:672.400000pt;}
.y6d{bottom:673.066667pt;}
.y4b{bottom:676.666667pt;}
.y10e{bottom:677.066667pt;}
.yd3{bottom:680.933333pt;}
.y169{bottom:681.333333pt;}
.y186{bottom:684.800000pt;}
.y2d{bottom:689.066667pt;}
.y140{bottom:690.133333pt;}
.yad{bottom:692.666667pt;}
.y10d{bottom:694.800000pt;}
.yf1{bottom:696.666667pt;}
.y6c{bottom:697.333333pt;}
.y13f{bottom:698.933333pt;}
.y153{bottom:700.000000pt;}
.y4a{bottom:700.933333pt;}
.y2c{bottom:704.533333pt;}
.yd2{bottom:706.533333pt;}
.y185{bottom:709.066667pt;}
.y9a{bottom:713.600000pt;}
.yc5{bottom:716.266667pt;}
.y168{bottom:718.933333pt;}
.y89{bottom:720.666667pt;}
.y6b{bottom:721.600000pt;}
.y49{bottom:725.200000pt;}
.y13e{bottom:725.333333pt;}
.yd1{bottom:734.133333pt;}
.y2b{bottom:734.933333pt;}
.y99{bottom:739.200000pt;}
.yc4{bottom:740.533333pt;}
.y88{bottom:744.933333pt;}
.y6a{bottom:745.866667pt;}
.yac{bottom:746.266667pt;}
.y184{bottom:746.666667pt;}
.y48{bottom:749.466667pt;}
.y13d{bottom:760.266667pt;}
.yd0{bottom:761.733333pt;}
.yc3{bottom:764.800000pt;}
.y13b{bottom:765.866667pt;}
.y10c{bottom:766.000000pt;}
.yf0{bottom:766.533333pt;}
.y183{bottom:768.266667pt;}
.y152{bottom:768.666667pt;}
.y87{bottom:769.200000pt;}
.y69{bottom:770.133333pt;}
.y13c{bottom:771.600000pt;}
.y47{bottom:773.733333pt;}
.y2a{bottom:775.066667pt;}
.y98{bottom:781.066667pt;}
.y2{bottom:781.661334pt;}
.y167{bottom:789.066667pt;}
.y10b{bottom:790.133333pt;}
.yef{bottom:790.800000pt;}
.y182{bottom:792.533333pt;}
.y86{bottom:793.466667pt;}
.y68{bottom:794.400000pt;}
.y46{bottom:798.000000pt;}
.yab{bottom:799.466667pt;}
.yc2{bottom:804.533333pt;}
.y10a{bottom:807.733333pt;}
.y13a{bottom:813.466667pt;}
.y29{bottom:817.466667pt;}
.y85{bottom:817.733333pt;}
.y67{bottom:818.666667pt;}
.y45{bottom:822.266667pt;}
.y97{bottom:822.933333pt;}
.yaa{bottom:823.733333pt;}
.y109{bottom:825.066667pt;}
.y166{bottom:828.800000pt;}
.y181{bottom:830.133333pt;}
.ycf{bottom:830.533333pt;}
.y84{bottom:842.000000pt;}
.y66{bottom:842.933333pt;}
.y44{bottom:846.533333pt;}
.y180{bottom:851.733333pt;}
.y165{bottom:853.066667pt;}
.y1{bottom:859.312000pt;}
.yee{bottom:860.533333pt;}
.y96{bottom:862.666667pt;}
.ya9{bottom:864.800000pt;}
.y83{bottom:866.266667pt;}
.y65{bottom:867.200000pt;}
.y43{bottom:870.800000pt;}
.y17f{bottom:876.000000pt;}
.y139{bottom:882.133333pt;}
.yc1{bottom:884.000000pt;}
.yed{bottom:884.800000pt;}
.y82{bottom:890.533333pt;}
.y164{bottom:892.800000pt;}
.y108{bottom:896.933333pt;}
.y138{bottom:906.400000pt;}
.y64{bottom:906.933333pt;}
.yc0{bottom:908.266667pt;}
.y27{bottom:909.600000pt;}
.y42{bottom:910.533333pt;}
.y81{bottom:914.800000pt;}
.y17e{bottom:915.733333pt;}
.y163{bottom:917.066667pt;}
.y107{bottom:921.200000pt;}
.y137{bottom:924.000000pt;}
.yec{bottom:924.533333pt;}
.ya8{bottom:925.200000pt;}
.y63{bottom:931.200000pt;}
.ybf{bottom:932.533333pt;}
.y17d{bottom:940.000000pt;}
.y80{bottom:940.400000pt;}
.y136{bottom:941.600000pt;}
.y95{bottom:942.133333pt;}
.y26{bottom:945.600000pt;}
.y62{bottom:955.466667pt;}
.ybe{bottom:956.800000pt;}
.y135{bottom:959.200000pt;}
.y106{bottom:963.466667pt;}
.y134{bottom:976.800000pt;}
.y61{bottom:979.733333pt;}
.y7f{bottom:981.066667pt;}
.y94{bottom:984.400000pt;}
.y133{bottom:994.400000pt;}
.y41{bottom:1000.933333pt;}
.y60{bottom:1004.000000pt;}
.ya7{bottom:1008.533333pt;}
.y132{bottom:1012.000000pt;}
.y7e{bottom:1020.800000pt;}
.y93{bottom:1027.466667pt;}
.y40{bottom:1027.866667pt;}
.y5f{bottom:1028.266667pt;}
.y131{bottom:1029.600000pt;}
.y25{bottom:1034.466667pt;}
.y24{bottom:1049.558667pt;}
.y3f{bottom:1064.133333pt;}
.y23{bottom:1067.000000pt;}
.hb{height:28.546875pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h17{height:32.625000pt;}
.h18{height:33.253646pt;}
.h1a{height:33.786979pt;}
.h14{height:36.703125pt;}
.h19{height:36.892708pt;}
.h10{height:37.031250pt;}
.ha{height:38.444940pt;}
.h13{height:40.781250pt;}
.h7{height:40.853333pt;}
.he{height:42.656250pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hf{height:44.437500pt;}
.h11{height:46.133927pt;}
.h12{height:46.134389pt;}
.h16{height:46.716730pt;}
.h2{height:49.024000pt;}
.h15{height:49.921875pt;}
.hc{height:59.416667pt;}
.h1c{height:67.825000pt;}
.h5{height:69.450667pt;}
.h1b{height:73.880208pt;}
.h4{height:105.826671pt;}
.hd{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:793.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:75.733333pt;}
.x30{left:76.800000pt;}
.x2f{left:79.733333pt;}
.x21{left:81.466667pt;}
.x2e{left:83.333333pt;}
.x2d{left:85.200000pt;}
.x25{left:88.666667pt;}
.x1{left:90.706667pt;}
.x1f{left:92.133333pt;}
.x2{left:94.486667pt;}
.x23{left:98.533333pt;}
.x19{left:99.733333pt;}
.x22{left:101.333333pt;}
.x20{left:107.600000pt;}
.xe{left:123.734653pt;}
.x16{left:146.400000pt;}
.x8{left:160.058667pt;}
.x2a{left:172.400000pt;}
.x2b{left:176.400000pt;}
.x4{left:180.874667pt;}
.xf{left:184.133333pt;}
.x11{left:188.666667pt;}
.x1b{left:202.400000pt;}
.x9{left:206.938667pt;}
.x15{left:208.533333pt;}
.xb{left:212.800000pt;}
.x27{left:222.266667pt;}
.x13{left:241.066667pt;}
.xc{left:243.333333pt;}
.x24{left:246.000000pt;}
.x2c{left:250.666667pt;}
.x26{left:256.133333pt;}
.x1e{left:259.066667pt;}
.x1c{left:269.733333pt;}
.x12{left:276.400000pt;}
.x17{left:278.800000pt;}
.x31{left:281.333333pt;}
.xa{left:296.400000pt;}
.x1d{left:306.533333pt;}
.x6{left:321.950667pt;}
.x10{left:346.933333pt;}
.x14{left:380.933333pt;}
.x3{left:404.408000pt;}
.x5{left:425.581333pt;}
.x7{left:541.160000pt;}
.x28{left:558.800000pt;}
.x29{left:654.266667pt;}
.x1a{left:689.333333pt;}
.x18{left:697.733333pt;}
}




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