
    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_ecaa01726c7d425b453fd0de.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f3259c2097848e9c8f359577.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6c903b8872608309842bd6e0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3407a1ee9f6fdc4baffff971.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bdb122a33bb905998e781a5c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d1664ad1b6a57d6a6ccffd16.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e8d84d20d2ea905827305e57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_ea66450477542507fa0da4f2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.649414;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_672563cea11c66c04503ffba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.940918;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.vf{vertical-align:-17.280000px;}
.v7{vertical-align:-12.240000px;}
.vc{vertical-align:-10.080000px;}
.v3{vertical-align:-2.880000px;}
.v9{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v10{vertical-align:12.240000px;}
.va{vertical-align:13.680000px;}
.vd{vertical-align:15.120000px;}
.v12{vertical-align:16.560000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:29.520000px;}
.v11{vertical-align:32.400000px;}
.v4{vertical-align:35.280000px;}
.v8{vertical-align:45.360000px;}
.ve{vertical-align:48.240000px;}
.vb{vertical-align:50.400000px;}
.ls59{letter-spacing:-0.960000px;}
.ls28{letter-spacing:-0.894000px;}
.ls21{letter-spacing:-0.579600px;}
.lsa{letter-spacing:-0.463800px;}
.ls58{letter-spacing:-0.414000px;}
.ls19{letter-spacing:-0.326400px;}
.lsd{letter-spacing:-0.303000px;}
.ls12{letter-spacing:-0.253200px;}
.lsf{letter-spacing:-0.226200px;}
.ls2c{letter-spacing:-0.214800px;}
.ls53{letter-spacing:-0.208800px;}
.ls9{letter-spacing:-0.132600px;}
.ls17{letter-spacing:-0.115800px;}
.ls4d{letter-spacing:-0.112200px;}
.ls14{letter-spacing:-0.107400px;}
.ls38{letter-spacing:-0.082800px;}
.ls4c{letter-spacing:-0.078600px;}
.ls13{letter-spacing:-0.064800px;}
.ls1e{letter-spacing:-0.058320px;}
.ls37{letter-spacing:-0.043920px;}
.ls27{letter-spacing:-0.041040px;}
.ls54{letter-spacing:-0.038160px;}
.lsc{letter-spacing:-0.020160px;}
.ls7{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.038880px;}
.ls18{letter-spacing:0.060600px;}
.ls30{letter-spacing:0.067200px;}
.ls4a{letter-spacing:0.093600px;}
.ls3{letter-spacing:0.100800px;}
.ls22{letter-spacing:0.140400px;}
.lsb{letter-spacing:0.150000px;}
.ls34{letter-spacing:0.174000px;}
.ls26{letter-spacing:0.174240px;}
.ls25{letter-spacing:0.175200px;}
.ls57{letter-spacing:0.179280px;}
.ls16{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.186600px;}
.ls0{letter-spacing:0.190080px;}
.ls10{letter-spacing:0.190200px;}
.ls1b{letter-spacing:0.220320px;}
.ls31{letter-spacing:0.243600px;}
.ls11{letter-spacing:0.265200px;}
.ls1f{letter-spacing:0.288600px;}
.ls23{letter-spacing:0.306000px;}
.ls2d{letter-spacing:0.314400px;}
.ls4e{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.370080px;}
.ls4b{letter-spacing:0.379200px;}
.ls3e{letter-spacing:0.393600px;}
.ls40{letter-spacing:0.417600px;}
.ls1d{letter-spacing:0.479400px;}
.ls4{letter-spacing:0.479520px;}
.ls50{letter-spacing:0.550800px;}
.ls15{letter-spacing:0.612000px;}
.ls6{letter-spacing:0.617760px;}
.ls35{letter-spacing:0.659520px;}
.ls49{letter-spacing:0.660000px;}
.ls41{letter-spacing:0.689760px;}
.ls20{letter-spacing:0.858000px;}
.ls36{letter-spacing:0.894000px;}
.ls48{letter-spacing:0.894240px;}
.lse{letter-spacing:0.930000px;}
.ls33{letter-spacing:1.440000px;}
.ls42{letter-spacing:1.620000px;}
.ls2f{letter-spacing:2.106720px;}
.ls3a{letter-spacing:2.903760px;}
.ls39{letter-spacing:3.264000px;}
.ls32{letter-spacing:3.982320px;}
.ls44{letter-spacing:4.111200px;}
.ls1{letter-spacing:4.242240px;}
.ls4f{letter-spacing:4.494240px;}
.ls29{letter-spacing:5.706720px;}
.ls46{letter-spacing:11.455200px;}
.ls56{letter-spacing:12.186720px;}
.ls1a{letter-spacing:14.346720px;}
.ls52{letter-spacing:17.946720px;}
.ls45{letter-spacing:17.975280px;}
.ls3c{letter-spacing:20.815200px;}
.ls1c{letter-spacing:21.546720px;}
.ls51{letter-spacing:35.226720px;}
.ls2a{letter-spacing:36.666720px;}
.ls5{letter-spacing:38.106720px;}
.ls2b{letter-spacing:38.826720px;}
.ls2e{letter-spacing:40.986720px;}
.ls55{letter-spacing:42.570720px;}
.ls43{letter-spacing:61.832160px;}
.ls3f{letter-spacing:69.032160px;}
.ls47{letter-spacing:80.750160px;}
.ls3d{letter-spacing:146.159280px;}
.ls3b{letter-spacing:202.638240px;}
.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;}
}
.ws21{word-spacing:-59.760000px;}
.ws1b{word-spacing:-41.760000px;}
.ws1a{word-spacing:-40.896000px;}
.ws24{word-spacing:-36.000000px;}
.ws4{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws1d{word-spacing:-16.769760px;}
.ws6{word-spacing:-15.235440px;}
.ws3{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws7{word-spacing:-14.717040px;}
.ws2{word-spacing:-14.506440px;}
.ws18{word-spacing:-14.399760px;}
.wsf{word-spacing:-14.363760px;}
.ws1e{word-spacing:-14.165760px;}
.wsb{word-spacing:-14.117760px;}
.ws27{word-spacing:-13.884960px;}
.ws2a{word-spacing:-13.862760px;}
.ws14{word-spacing:-13.820160px;}
.ws10{word-spacing:-13.811760px;}
.ws16{word-spacing:-13.749360px;}
.ws12{word-spacing:-13.692360px;}
.ws2e{word-spacing:-13.685040px;}
.ws2c{word-spacing:-13.646160px;}
.ws20{word-spacing:-13.606560px;}
.ws1f{word-spacing:-13.599360px;}
.ws15{word-spacing:-13.572960px;}
.ws11{word-spacing:-13.566360px;}
.ws8{word-spacing:-13.505760px;}
.ws2d{word-spacing:-13.467600px;}
.ws19{word-spacing:-13.461840px;}
.wse{word-spacing:-13.447440px;}
.ws9{word-spacing:-13.440960px;}
.ws28{word-spacing:-13.427160px;}
.ws1c{word-spacing:-13.422960px;}
.wsa{word-spacing:-13.398360px;}
.ws29{word-spacing:-13.393560px;}
.wsc{word-spacing:-13.389960px;}
.ws2b{word-spacing:-13.296960px;}
.ws13{word-spacing:-13.290960px;}
.ws5{word-spacing:-9.437760px;}
.ws17{word-spacing:-8.786880px;}
.wsd{word-spacing:0.000000px;}
.ws25{word-spacing:3.490560px;}
.ws23{word-spacing:10.236000px;}
.ws22{word-spacing:10.260000px;}
.ws26{word-spacing:24.060960px;}
._1e{margin-left:-532.918560px;}
._1f{margin-left:-528.059520px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-295.659120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-233.850240px;}
._17{margin-left:-229.991040px;}
._16{margin-left:-222.405360px;}
._f{margin-left:-203.010240px;}
._19{margin-left:-201.453120px;}
._18{margin-left:-200.226720px;}
._22{margin-left:-196.738560px;}
._21{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._29{margin-left:-169.761600px;}
._d{margin-left:-165.322080px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.014400px;}
._a{margin-left:-148.521600px;}
._28{margin-left:-144.360000px;}
._10{margin-left:-141.758400px;}
._c{margin-left:-134.192160px;}
._20{margin-left:-133.011360px;}
._11{margin-left:-116.062560px;}
._27{margin-left:-110.154240px;}
._1d{margin-left:-102.529440px;}
._25{margin-left:-100.543680px;}
._7{margin-left:-91.124880px;}
._1c{margin-left:-86.399760px;}
._1b{margin-left:-83.520000px;}
._13{margin-left:-82.330560px;}
._26{margin-left:-80.639760px;}
._15{margin-left:-66.703680px;}
._24{margin-left:-54.085440px;}
._14{margin-left:-49.492560px;}
._23{margin-left:-34.410240px;}
._1a{margin-left:-31.530240px;}
._4c{margin-left:-6.027840px;}
._2c{margin-left:-4.412160px;}
._2a{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._2b{width:1.317240px;}
._31{width:2.579160px;}
._34{width:3.724800px;}
._35{width:4.962960px;}
._30{width:6.027840px;}
._33{width:7.527240px;}
._32{width:8.863200px;}
._36{width:9.979920px;}
._37{width:11.448480px;}
._3d{width:12.489840px;}
._3b{width:14.877720px;}
._4a{width:15.953280px;}
._3c{width:17.208360px;}
._39{width:18.226800px;}
._38{width:19.481760px;}
._43{width:20.975760px;}
._3a{width:22.529520px;}
._45{width:23.545440px;}
._57{width:25.293360px;}
._49{width:26.832240px;}
._53{width:29.154960px;}
._2f{width:30.780360px;}
._2d{width:32.136480px;}
._2e{width:33.525120px;}
._40{width:35.856000px;}
._44{width:41.832000px;}
._42{width:44.102880px;}
._48{width:45.716400px;}
._3e{width:49.481280px;}
._47{width:51.692400px;}
._51{width:53.664480px;}
._50{width:54.799920px;}
._52{width:56.310360px;}
._41{width:61.254000px;}
._5d{width:63.166320px;}
._3f{width:64.242000px;}
._4f{width:78.576480px;}
._4e{width:80.172000px;}
._4b{width:86.543280px;}
._46{width:96.512400px;}
._56{width:98.601480px;}
._54{width:99.679680px;}
._55{width:101.130960px;}
._59{width:102.498120px;}
._5b{width:103.793160px;}
._5a{width:104.938560px;}
._58{width:108.942480px;}
._5c{width:110.891640px;}
._4d{width:111.990240px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.954000px;}
.y65{bottom:3.960000px;}
.yb9{bottom:6.660000px;}
.y73{bottom:22.134000px;}
.y6e{bottom:22.140000px;}
.y67{bottom:22.320000px;}
.y76{bottom:22.350000px;}
.y9b{bottom:24.480000px;}
.y9e{bottom:24.510000px;}
.y101{bottom:27.765000px;}
.y72{bottom:40.494000px;}
.y69{bottom:40.500000px;}
.y6d{bottom:40.545000px;}
.y66{bottom:40.680000px;}
.y75{bottom:40.710000px;}
.yc5{bottom:47.340000px;}
.y6{bottom:61.416000px;}
.yd1{bottom:65.520000px;}
.yd6{bottom:65.550000px;}
.yc3{bottom:65.700000px;}
.y63{bottom:89.496000px;}
.yf4{bottom:90.576000px;}
.y97{bottom:93.276000px;}
.yc0{bottom:95.256000px;}
.y30{bottom:99.036000px;}
.y117{bottom:101.556000px;}
.y9a{bottom:105.336000px;}
.y109{bottom:106.416000px;}
.y62{bottom:110.556000px;}
.yf3{bottom:113.976000px;}
.y96{bottom:114.336000px;}
.ybf{bottom:116.316000px;}
.y2f{bottom:120.096000px;}
.y116{bottom:122.616000px;}
.y118{bottom:123.696000px;}
.y9c{bottom:125.856000px;}
.y108{bottom:127.476000px;}
.y71{bottom:131.256000px;}
.y61{bottom:131.616000px;}
.ybe{bottom:133.056000px;}
.y95{bottom:135.396000px;}
.yf2{bottom:137.196000px;}
.y2e{bottom:141.156000px;}
.y115{bottom:143.676000px;}
.y98{bottom:146.376000px;}
.y107{bottom:148.536000px;}
.y60{bottom:152.670000px;}
.ybd{bottom:156.270000px;}
.y94{bottom:156.450000px;}
.yf1{bottom:160.590000px;}
.y2d{bottom:162.210000px;}
.y114{bottom:164.730000px;}
.y106{bottom:169.590000px;}
.y5f{bottom:173.730000px;}
.y93{bottom:177.510000px;}
.ybc{bottom:179.670000px;}
.y2c{bottom:183.270000px;}
.yf0{bottom:183.810000px;}
.y113{bottom:185.790000px;}
.y70{bottom:188.310000px;}
.y105{bottom:190.650000px;}
.y5e{bottom:194.790000px;}
.y92{bottom:198.570000px;}
.ybb{bottom:202.890000px;}
.y2b{bottom:204.330000px;}
.y112{bottom:206.850000px;}
.yef{bottom:207.210000px;}
.y5d{bottom:215.850000px;}
.y91{bottom:219.630000px;}
.y2a{bottom:225.390000px;}
.yba{bottom:226.290000px;}
.y111{bottom:227.910000px;}
.y104{bottom:230.610000px;}
.y5c{bottom:236.910000px;}
.yee{bottom:237.090000px;}
.y90{bottom:240.690000px;}
.y6f{bottom:245.550000px;}
.y29{bottom:246.450000px;}
.y110{bottom:248.970000px;}
.yb8{bottom:249.510000px;}
.y103{bottom:253.830000px;}
.y5b{bottom:257.970000px;}
.yed{bottom:258.150000px;}
.y8f{bottom:261.750000px;}
.y28{bottom:267.510000px;}
.y10f{bottom:270.030000px;}
.y102{bottom:277.230000px;}
.y5a{bottom:279.030000px;}
.yec{bottom:279.210000px;}
.yb7{bottom:279.390000px;}
.y8e{bottom:282.810000px;}
.y27{bottom:288.570000px;}
.y10e{bottom:291.090000px;}
.y59{bottom:300.090000px;}
.yeb{bottom:300.270000px;}
.yb6{bottom:300.450000px;}
.y6c{bottom:302.790000px;}
.y8d{bottom:303.870000px;}
.y26{bottom:309.630000px;}
.y10d{bottom:312.150000px;}
.y58{bottom:321.150000px;}
.yea{bottom:321.330000px;}
.yb5{bottom:321.510000px;}
.y8c{bottom:324.930000px;}
.y25{bottom:330.735000px;}
.y10c{bottom:333.255000px;}
.yb4{bottom:340.635000px;}
.y57{bottom:342.255000px;}
.ye9{bottom:342.435000px;}
.y8b{bottom:346.035000px;}
.yb3{bottom:348.195000px;}
.y100{bottom:351.615000px;}
.y24{bottom:351.795000px;}
.y10b{bottom:354.315000px;}
.y6b{bottom:359.895000px;}
.y56{bottom:363.315000px;}
.ye8{bottom:363.495000px;}
.y8a{bottom:367.095000px;}
.yff{bottom:372.675000px;}
.y23{bottom:372.855000px;}
.y10a{bottom:375.375000px;}
.ye5{bottom:380.775000px;}
.y55{bottom:384.375000px;}
.ye7{bottom:384.735000px;}
.y89{bottom:388.155000px;}
.ye4{bottom:388.335000px;}
.yfe{bottom:393.735000px;}
.y22{bottom:393.915000px;}
.ye6{bottom:394.275000px;}
.y54{bottom:405.435000px;}
.y88{bottom:409.215000px;}
.ye3{bottom:412.635000px;}
.yfd{bottom:414.615000px;}
.y21{bottom:414.975000px;}
.y6a{bottom:417.135000px;}
.y53{bottom:426.315000px;}
.ye2{bottom:429.735000px;}
.y87{bottom:430.275000px;}
.ye0{bottom:433.515000px;}
.yfc{bottom:435.675000px;}
.y20{bottom:436.035000px;}
.ye1{bottom:437.835000px;}
.ydd{bottom:444.315000px;}
.y52{bottom:447.375000px;}
.y86{bottom:451.335000px;}
.ydf{bottom:452.235000px;}
.yfb{bottom:456.735000px;}
.yb2{bottom:457.095000px;}
.yde{bottom:460.335000px;}
.y51{bottom:468.435000px;}
.y85{bottom:472.395000px;}
.y68{bottom:474.375000px;}
.yfa{bottom:477.795000px;}
.yb1{bottom:478.155000px;}
.ydc{bottom:479.415000px;}
.y1f{bottom:480.495000px;}
.y50{bottom:489.495000px;}
.y84{bottom:493.455000px;}
.yf9{bottom:498.855000px;}
.yb0{bottom:499.215000px;}
.ydb{bottom:500.475000px;}
.y1e{bottom:510.375000px;}
.y4f{bottom:510.555000px;}
.y83{bottom:514.515000px;}
.yf8{bottom:519.915000px;}
.yaf{bottom:520.275000px;}
.yda{bottom:521.535000px;}
.y1d{bottom:531.435000px;}
.y4e{bottom:531.615000px;}
.y82{bottom:535.575000px;}
.yd5{bottom:538.275000px;}
.yf7{bottom:540.975000px;}
.yae{bottom:541.335000px;}
.y1c{bottom:552.495000px;}
.y4d{bottom:552.675000px;}
.y81{bottom:556.635000px;}
.yd9{bottom:558.795000px;}
.yf6{bottom:562.035000px;}
.yad{bottom:562.395000px;}
.y1b{bottom:573.555000px;}
.y4c{bottom:573.735000px;}
.y80{bottom:577.695000px;}
.yd8{bottom:579.315000px;}
.yf5{bottom:583.095000px;}
.yac{bottom:583.455000px;}
.y64{bottom:588.675000px;}
.y1a{bottom:594.615000px;}
.y4b{bottom:594.795000px;}
.y7f{bottom:598.785000px;}
.yd7{bottom:599.865000px;}
.yab{bottom:604.545000px;}
.y19{bottom:615.705000px;}
.y4a{bottom:615.885000px;}
.y7e{bottom:619.845000px;}
.yd0{bottom:620.565000px;}
.yaa{bottom:625.605000px;}
.y18{bottom:636.765000px;}
.y49{bottom:636.945000px;}
.y7d{bottom:640.905000px;}
.yd4{bottom:641.085000px;}
.ya9{bottom:646.665000px;}
.y17{bottom:657.825000px;}
.y48{bottom:658.005000px;}
.yd3{bottom:661.605000px;}
.y7c{bottom:661.965000px;}
.ya8{bottom:667.725000px;}
.y16{bottom:678.885000px;}
.y47{bottom:679.065000px;}
.yd2{bottom:682.125000px;}
.y7b{bottom:683.025000px;}
.y15{bottom:699.945000px;}
.y46{bottom:700.125000px;}
.ycc{bottom:702.645000px;}
.y7a{bottom:704.085000px;}
.y14{bottom:721.005000px;}
.y45{bottom:721.185000px;}
.ycf{bottom:723.345000px;}
.y79{bottom:725.145000px;}
.y13{bottom:742.065000px;}
.y44{bottom:742.245000px;}
.yce{bottom:743.865000px;}
.y78{bottom:746.205000px;}
.y12{bottom:763.125000px;}
.y43{bottom:763.305000px;}
.ycd{bottom:764.385000px;}
.y11{bottom:784.185000px;}
.y42{bottom:784.365000px;}
.yc8{bottom:784.905000px;}
.y10{bottom:805.245000px;}
.y41{bottom:805.425000px;}
.ycb{bottom:805.605000px;}
.yca{bottom:826.125000px;}
.yf{bottom:826.305000px;}
.y40{bottom:826.485000px;}
.yc9{bottom:846.645000px;}
.ye{bottom:847.545000px;}
.yc2{bottom:867.210000px;}
.y3f{bottom:868.650000px;}
.yd{bottom:870.810000px;}
.yc7{bottom:887.730000px;}
.y3e{bottom:889.710000px;}
.yc{bottom:897.090000px;}
.yc6{bottom:908.430000px;}
.y3d{bottom:910.770000px;}
.yb{bottom:913.650000px;}
.yc4{bottom:928.950000px;}
.y3c{bottom:931.830000px;}
.ya{bottom:936.870000px;}
.yc1{bottom:949.470000px;}
.y3b{bottom:952.890000px;}
.y9{bottom:959.190000px;}
.y3a{bottom:973.950000px;}
.ya7{bottom:976.110000px;}
.y8{bottom:984.390000px;}
.ya4{bottom:992.850000px;}
.y39{bottom:995.010000px;}
.ya6{bottom:1013.370000px;}
.y38{bottom:1016.070000px;}
.y7{bottom:1018.050000px;}
.ya5{bottom:1033.890000px;}
.y37{bottom:1037.130000px;}
.ya1{bottom:1054.590000px;}
.y5{bottom:1058.190000px;}
.y77{bottom:1063.590000px;}
.ya3{bottom:1075.110000px;}
.y36{bottom:1079.250000px;}
.y4{bottom:1090.410000px;}
.ya2{bottom:1095.630000px;}
.y35{bottom:1100.310000px;}
.y9d{bottom:1116.150000px;}
.y74{bottom:1120.650000px;}
.y34{bottom:1121.370000px;}
.y3{bottom:1122.630000px;}
.ya0{bottom:1136.700000px;}
.y33{bottom:1142.460000px;}
.y2{bottom:1154.700000px;}
.y9f{bottom:1157.400000px;}
.y32{bottom:1163.520000px;}
.y1{bottom:1188.720000px;}
.y31{bottom:1191.780000px;}
.h11{height:18.180000px;}
.he{height:18.360000px;}
.ha{height:18.396000px;}
.h15{height:21.060000px;}
.h17{height:36.720000px;}
.h7{height:38.671172px;}
.hf{height:38.880000px;}
.h1d{height:39.990234px;}
.h26{height:42.156000px;}
.h16{height:45.578672px;}
.h24{height:46.388672px;}
.h1f{height:47.828672px;}
.hc{height:54.900000px;}
.hd{height:54.936000px;}
.hb{height:55.080000px;}
.h12{height:59.400000px;}
.h10{height:59.436000px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h3{height:65.884219px;}
.h21{height:66.383789px;}
.h6{height:67.824844px;}
.h9{height:73.722656px;}
.h25{height:73.839023px;}
.h1a{height:79.920000px;}
.h1b{height:79.956000px;}
.h18{height:80.100000px;}
.h19{height:80.136000px;}
.h22{height:81.668672px;}
.h13{height:82.388672px;}
.h2{height:86.255508px;}
.h20{height:88.230234px;}
.h14{height:89.679023px;}
.h1e{height:90.390234px;}
.h1c{height:92.468672px;}
.h4{height:98.051133px;}
.h23{height:98.783789px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:81.000000px;}
.we{width:81.036000px;}
.w9{width:99.396000px;}
.wf{width:101.160000px;}
.wd{width:101.340000px;}
.w19{width:112.356000px;}
.w18{width:112.500000px;}
.w17{width:112.536000px;}
.w12{width:114.696000px;}
.wb{width:114.876000px;}
.w15{width:121.536000px;}
.w11{width:135.000000px;}
.w8{width:135.180000px;}
.w7{width:149.436000px;}
.wc{width:155.190000px;}
.wa{width:161.490000px;}
.w3{width:181.650000px;}
.w6{width:191.550000px;}
.w13{width:195.330000px;}
.w10{width:208.650000px;}
.w4{width:283.575000px;}
.w5{width:317.370000px;}
.w16{width:326.055000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x6{left:53.999987px;}
.x9{left:55.080000px;}
.x30{left:58.320000px;}
.x12{left:68.759987px;}
.x14{left:70.199987px;}
.x8{left:75.599987px;}
.x7{left:80.999987px;}
.x15{left:82.979987px;}
.x17{left:88.740000px;}
.x16{left:108.035987px;}
.x1c{left:109.116000px;}
.x22{left:114.875987px;}
.x23{left:126.935987px;}
.x27{left:152.129987px;}
.xf{left:158.610000px;}
.x21{left:159.689987px;}
.x29{left:171.929987px;}
.x25{left:179.489987px;}
.x5{left:185.249987px;}
.x28{left:199.289987px;}
.x24{left:219.449987px;}
.x26{left:230.069987px;}
.xb{left:237.270000px;}
.xd{left:246.629987px;}
.x18{left:250.770000px;}
.x3{left:272.189987px;}
.x2a{left:311.655000px;}
.x1d{left:318.315000px;}
.x2f{left:326.594987px;}
.x2{left:350.534987px;}
.x19{left:365.655000px;}
.x13{left:374.654987px;}
.x31{left:384.915000px;}
.x2b{left:412.815000px;}
.x4{left:419.114987px;}
.xe{left:446.474987px;}
.x1e{left:453.315000px;}
.x1{left:479.264987px;}
.x2c{left:493.845000px;}
.x32{left:497.445000px;}
.x10{left:499.965000px;}
.xc{left:520.845000px;}
.x1f{left:568.185000px;}
.x2d{left:574.845000px;}
.x33{left:609.945000px;}
.x1a{left:622.185000px;}
.x11{left:635.145000px;}
.x2e{left:655.845000px;}
.x20{left:682.890000px;}
.x1b{left:703.230000px;}
.x34{left:722.310000px;}
.x35{left:839.309987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.vf{vertical-align:-15.360000pt;}
.v7{vertical-align:-10.880000pt;}
.vc{vertical-align:-8.960000pt;}
.v3{vertical-align:-2.560000pt;}
.v9{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v10{vertical-align:10.880000pt;}
.va{vertical-align:12.160000pt;}
.vd{vertical-align:13.440000pt;}
.v12{vertical-align:14.720000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:26.240000pt;}
.v11{vertical-align:28.800000pt;}
.v4{vertical-align:31.360000pt;}
.v8{vertical-align:40.320000pt;}
.ve{vertical-align:42.880000pt;}
.vb{vertical-align:44.800000pt;}
.ls59{letter-spacing:-0.853333pt;}
.ls28{letter-spacing:-0.794667pt;}
.ls21{letter-spacing:-0.515200pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls58{letter-spacing:-0.368000pt;}
.ls19{letter-spacing:-0.290133pt;}
.lsd{letter-spacing:-0.269333pt;}
.ls12{letter-spacing:-0.225067pt;}
.lsf{letter-spacing:-0.201067pt;}
.ls2c{letter-spacing:-0.190933pt;}
.ls53{letter-spacing:-0.185600pt;}
.ls9{letter-spacing:-0.117867pt;}
.ls17{letter-spacing:-0.102933pt;}
.ls4d{letter-spacing:-0.099733pt;}
.ls14{letter-spacing:-0.095467pt;}
.ls38{letter-spacing:-0.073600pt;}
.ls4c{letter-spacing:-0.069867pt;}
.ls13{letter-spacing:-0.057600pt;}
.ls1e{letter-spacing:-0.051840pt;}
.ls37{letter-spacing:-0.039040pt;}
.ls27{letter-spacing:-0.036480pt;}
.ls54{letter-spacing:-0.033920pt;}
.lsc{letter-spacing:-0.017920pt;}
.ls7{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.034560pt;}
.ls18{letter-spacing:0.053867pt;}
.ls30{letter-spacing:0.059733pt;}
.ls4a{letter-spacing:0.083200pt;}
.ls3{letter-spacing:0.089600pt;}
.ls22{letter-spacing:0.124800pt;}
.lsb{letter-spacing:0.133333pt;}
.ls34{letter-spacing:0.154667pt;}
.ls26{letter-spacing:0.154880pt;}
.ls25{letter-spacing:0.155733pt;}
.ls57{letter-spacing:0.159360pt;}
.ls16{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.165867pt;}
.ls0{letter-spacing:0.168960pt;}
.ls10{letter-spacing:0.169067pt;}
.ls1b{letter-spacing:0.195840pt;}
.ls31{letter-spacing:0.216533pt;}
.ls11{letter-spacing:0.235733pt;}
.ls1f{letter-spacing:0.256533pt;}
.ls23{letter-spacing:0.272000pt;}
.ls2d{letter-spacing:0.279467pt;}
.ls4e{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.328960pt;}
.ls4b{letter-spacing:0.337067pt;}
.ls3e{letter-spacing:0.349867pt;}
.ls40{letter-spacing:0.371200pt;}
.ls1d{letter-spacing:0.426133pt;}
.ls4{letter-spacing:0.426240pt;}
.ls50{letter-spacing:0.489600pt;}
.ls15{letter-spacing:0.544000pt;}
.ls6{letter-spacing:0.549120pt;}
.ls35{letter-spacing:0.586240pt;}
.ls49{letter-spacing:0.586667pt;}
.ls41{letter-spacing:0.613120pt;}
.ls20{letter-spacing:0.762667pt;}
.ls36{letter-spacing:0.794667pt;}
.ls48{letter-spacing:0.794880pt;}
.lse{letter-spacing:0.826667pt;}
.ls33{letter-spacing:1.280000pt;}
.ls42{letter-spacing:1.440000pt;}
.ls2f{letter-spacing:1.872640pt;}
.ls3a{letter-spacing:2.581120pt;}
.ls39{letter-spacing:2.901333pt;}
.ls32{letter-spacing:3.539840pt;}
.ls44{letter-spacing:3.654400pt;}
.ls1{letter-spacing:3.770880pt;}
.ls4f{letter-spacing:3.994880pt;}
.ls29{letter-spacing:5.072640pt;}
.ls46{letter-spacing:10.182400pt;}
.ls56{letter-spacing:10.832640pt;}
.ls1a{letter-spacing:12.752640pt;}
.ls52{letter-spacing:15.952640pt;}
.ls45{letter-spacing:15.978027pt;}
.ls3c{letter-spacing:18.502400pt;}
.ls1c{letter-spacing:19.152640pt;}
.ls51{letter-spacing:31.312640pt;}
.ls2a{letter-spacing:32.592640pt;}
.ls5{letter-spacing:33.872640pt;}
.ls2b{letter-spacing:34.512640pt;}
.ls2e{letter-spacing:36.432640pt;}
.ls55{letter-spacing:37.840640pt;}
.ls43{letter-spacing:54.961920pt;}
.ls3f{letter-spacing:61.361920pt;}
.ls47{letter-spacing:71.777920pt;}
.ls3d{letter-spacing:129.919360pt;}
.ls3b{letter-spacing:180.122880pt;}
.ws21{word-spacing:-53.120000pt;}
.ws1b{word-spacing:-37.120000pt;}
.ws1a{word-spacing:-36.352000pt;}
.ws24{word-spacing:-32.000000pt;}
.ws4{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws1d{word-spacing:-14.906453pt;}
.ws6{word-spacing:-13.542613pt;}
.ws3{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws7{word-spacing:-13.081813pt;}
.ws2{word-spacing:-12.894613pt;}
.ws18{word-spacing:-12.799787pt;}
.wsf{word-spacing:-12.767787pt;}
.ws1e{word-spacing:-12.591787pt;}
.wsb{word-spacing:-12.549120pt;}
.ws27{word-spacing:-12.342187pt;}
.ws2a{word-spacing:-12.322453pt;}
.ws14{word-spacing:-12.284587pt;}
.ws10{word-spacing:-12.277120pt;}
.ws16{word-spacing:-12.221653pt;}
.ws12{word-spacing:-12.170987pt;}
.ws2e{word-spacing:-12.164480pt;}
.ws2c{word-spacing:-12.129920pt;}
.ws20{word-spacing:-12.094720pt;}
.ws1f{word-spacing:-12.088320pt;}
.ws15{word-spacing:-12.064853pt;}
.ws11{word-spacing:-12.058987pt;}
.ws8{word-spacing:-12.005120pt;}
.ws2d{word-spacing:-11.971200pt;}
.ws19{word-spacing:-11.966080pt;}
.wse{word-spacing:-11.953280pt;}
.ws9{word-spacing:-11.947520pt;}
.ws28{word-spacing:-11.935253pt;}
.ws1c{word-spacing:-11.931520pt;}
.wsa{word-spacing:-11.909653pt;}
.ws29{word-spacing:-11.905387pt;}
.wsc{word-spacing:-11.902187pt;}
.ws2b{word-spacing:-11.819520pt;}
.ws13{word-spacing:-11.814187pt;}
.ws5{word-spacing:-8.389120pt;}
.ws17{word-spacing:-7.810560pt;}
.wsd{word-spacing:0.000000pt;}
.ws25{word-spacing:3.102720pt;}
.ws23{word-spacing:9.098667pt;}
.ws22{word-spacing:9.120000pt;}
.ws26{word-spacing:21.387520pt;}
._1e{margin-left:-473.705387pt;}
._1f{margin-left:-469.386240pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-262.808107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-207.866880pt;}
._17{margin-left:-204.436480pt;}
._16{margin-left:-197.693653pt;}
._f{margin-left:-180.453547pt;}
._19{margin-left:-179.069440pt;}
._18{margin-left:-177.979307pt;}
._22{margin-left:-174.878720pt;}
._21{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._29{margin-left:-150.899200pt;}
._d{margin-left:-146.952960pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-133.346133pt;}
._a{margin-left:-132.019200pt;}
._28{margin-left:-128.320000pt;}
._10{margin-left:-126.007467pt;}
._c{margin-left:-119.281920pt;}
._20{margin-left:-118.232320pt;}
._11{margin-left:-103.166720pt;}
._27{margin-left:-97.914880pt;}
._1d{margin-left:-91.137280pt;}
._25{margin-left:-89.372160pt;}
._7{margin-left:-80.999893pt;}
._1c{margin-left:-76.799787pt;}
._1b{margin-left:-74.240000pt;}
._13{margin-left:-73.182720pt;}
._26{margin-left:-71.679787pt;}
._15{margin-left:-59.292160pt;}
._24{margin-left:-48.075947pt;}
._14{margin-left:-43.993387pt;}
._23{margin-left:-30.586880pt;}
._1a{margin-left:-28.026880pt;}
._4c{margin-left:-5.358080pt;}
._2c{margin-left:-3.921920pt;}
._2a{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._2b{width:1.170880pt;}
._31{width:2.292587pt;}
._34{width:3.310933pt;}
._35{width:4.411520pt;}
._30{width:5.358080pt;}
._33{width:6.690880pt;}
._32{width:7.878400pt;}
._36{width:8.871040pt;}
._37{width:10.176427pt;}
._3d{width:11.102080pt;}
._3b{width:13.224640pt;}
._4a{width:14.180693pt;}
._3c{width:15.296320pt;}
._39{width:16.201600pt;}
._38{width:17.317120pt;}
._43{width:18.645120pt;}
._3a{width:20.026240pt;}
._45{width:20.929280pt;}
._57{width:22.482987pt;}
._49{width:23.850880pt;}
._53{width:25.915520pt;}
._2f{width:27.360320pt;}
._2d{width:28.565760pt;}
._2e{width:29.800107pt;}
._40{width:31.872000pt;}
._44{width:37.184000pt;}
._42{width:39.202560pt;}
._48{width:40.636800pt;}
._3e{width:43.983360pt;}
._47{width:45.948800pt;}
._51{width:47.701760pt;}
._50{width:48.711040pt;}
._52{width:50.053653pt;}
._41{width:54.448000pt;}
._5d{width:56.147840pt;}
._3f{width:57.104000pt;}
._4f{width:69.845760pt;}
._4e{width:71.264000pt;}
._4b{width:76.927360pt;}
._46{width:85.788800pt;}
._56{width:87.645760pt;}
._54{width:88.604160pt;}
._55{width:89.894187pt;}
._59{width:91.109440pt;}
._5b{width:92.260587pt;}
._5a{width:93.278720pt;}
._58{width:96.837760pt;}
._5c{width:98.570347pt;}
._4d{width:99.546880pt;}
.fs2{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.514667pt;}
.y65{bottom:3.520000pt;}
.yb9{bottom:5.920000pt;}
.y73{bottom:19.674667pt;}
.y6e{bottom:19.680000pt;}
.y67{bottom:19.840000pt;}
.y76{bottom:19.866667pt;}
.y9b{bottom:21.760000pt;}
.y9e{bottom:21.786667pt;}
.y101{bottom:24.680000pt;}
.y72{bottom:35.994667pt;}
.y69{bottom:36.000000pt;}
.y6d{bottom:36.040000pt;}
.y66{bottom:36.160000pt;}
.y75{bottom:36.186667pt;}
.yc5{bottom:42.080000pt;}
.y6{bottom:54.592000pt;}
.yd1{bottom:58.240000pt;}
.yd6{bottom:58.266667pt;}
.yc3{bottom:58.400000pt;}
.y63{bottom:79.552000pt;}
.yf4{bottom:80.512000pt;}
.y97{bottom:82.912000pt;}
.yc0{bottom:84.672000pt;}
.y30{bottom:88.032000pt;}
.y117{bottom:90.272000pt;}
.y9a{bottom:93.632000pt;}
.y109{bottom:94.592000pt;}
.y62{bottom:98.272000pt;}
.yf3{bottom:101.312000pt;}
.y96{bottom:101.632000pt;}
.ybf{bottom:103.392000pt;}
.y2f{bottom:106.752000pt;}
.y116{bottom:108.992000pt;}
.y118{bottom:109.952000pt;}
.y9c{bottom:111.872000pt;}
.y108{bottom:113.312000pt;}
.y71{bottom:116.672000pt;}
.y61{bottom:116.992000pt;}
.ybe{bottom:118.272000pt;}
.y95{bottom:120.352000pt;}
.yf2{bottom:121.952000pt;}
.y2e{bottom:125.472000pt;}
.y115{bottom:127.712000pt;}
.y98{bottom:130.112000pt;}
.y107{bottom:132.032000pt;}
.y60{bottom:135.706667pt;}
.ybd{bottom:138.906667pt;}
.y94{bottom:139.066667pt;}
.yf1{bottom:142.746667pt;}
.y2d{bottom:144.186667pt;}
.y114{bottom:146.426667pt;}
.y106{bottom:150.746667pt;}
.y5f{bottom:154.426667pt;}
.y93{bottom:157.786667pt;}
.ybc{bottom:159.706667pt;}
.y2c{bottom:162.906667pt;}
.yf0{bottom:163.386667pt;}
.y113{bottom:165.146667pt;}
.y70{bottom:167.386667pt;}
.y105{bottom:169.466667pt;}
.y5e{bottom:173.146667pt;}
.y92{bottom:176.506667pt;}
.ybb{bottom:180.346667pt;}
.y2b{bottom:181.626667pt;}
.y112{bottom:183.866667pt;}
.yef{bottom:184.186667pt;}
.y5d{bottom:191.866667pt;}
.y91{bottom:195.226667pt;}
.y2a{bottom:200.346667pt;}
.yba{bottom:201.146667pt;}
.y111{bottom:202.586667pt;}
.y104{bottom:204.986667pt;}
.y5c{bottom:210.586667pt;}
.yee{bottom:210.746667pt;}
.y90{bottom:213.946667pt;}
.y6f{bottom:218.266667pt;}
.y29{bottom:219.066667pt;}
.y110{bottom:221.306667pt;}
.yb8{bottom:221.786667pt;}
.y103{bottom:225.626667pt;}
.y5b{bottom:229.306667pt;}
.yed{bottom:229.466667pt;}
.y8f{bottom:232.666667pt;}
.y28{bottom:237.786667pt;}
.y10f{bottom:240.026667pt;}
.y102{bottom:246.426667pt;}
.y5a{bottom:248.026667pt;}
.yec{bottom:248.186667pt;}
.yb7{bottom:248.346667pt;}
.y8e{bottom:251.386667pt;}
.y27{bottom:256.506667pt;}
.y10e{bottom:258.746667pt;}
.y59{bottom:266.746667pt;}
.yeb{bottom:266.906667pt;}
.yb6{bottom:267.066667pt;}
.y6c{bottom:269.146667pt;}
.y8d{bottom:270.106667pt;}
.y26{bottom:275.226667pt;}
.y10d{bottom:277.466667pt;}
.y58{bottom:285.466667pt;}
.yea{bottom:285.626667pt;}
.yb5{bottom:285.786667pt;}
.y8c{bottom:288.826667pt;}
.y25{bottom:293.986667pt;}
.y10c{bottom:296.226667pt;}
.yb4{bottom:302.786667pt;}
.y57{bottom:304.226667pt;}
.ye9{bottom:304.386667pt;}
.y8b{bottom:307.586667pt;}
.yb3{bottom:309.506667pt;}
.y100{bottom:312.546667pt;}
.y24{bottom:312.706667pt;}
.y10b{bottom:314.946667pt;}
.y6b{bottom:319.906667pt;}
.y56{bottom:322.946667pt;}
.ye8{bottom:323.106667pt;}
.y8a{bottom:326.306667pt;}
.yff{bottom:331.266667pt;}
.y23{bottom:331.426667pt;}
.y10a{bottom:333.666667pt;}
.ye5{bottom:338.466667pt;}
.y55{bottom:341.666667pt;}
.ye7{bottom:341.986667pt;}
.y89{bottom:345.026667pt;}
.ye4{bottom:345.186667pt;}
.yfe{bottom:349.986667pt;}
.y22{bottom:350.146667pt;}
.ye6{bottom:350.466667pt;}
.y54{bottom:360.386667pt;}
.y88{bottom:363.746667pt;}
.ye3{bottom:366.786667pt;}
.yfd{bottom:368.546667pt;}
.y21{bottom:368.866667pt;}
.y6a{bottom:370.786667pt;}
.y53{bottom:378.946667pt;}
.ye2{bottom:381.986667pt;}
.y87{bottom:382.466667pt;}
.ye0{bottom:385.346667pt;}
.yfc{bottom:387.266667pt;}
.y20{bottom:387.586667pt;}
.ye1{bottom:389.186667pt;}
.ydd{bottom:394.946667pt;}
.y52{bottom:397.666667pt;}
.y86{bottom:401.186667pt;}
.ydf{bottom:401.986667pt;}
.yfb{bottom:405.986667pt;}
.yb2{bottom:406.306667pt;}
.yde{bottom:409.186667pt;}
.y51{bottom:416.386667pt;}
.y85{bottom:419.906667pt;}
.y68{bottom:421.666667pt;}
.yfa{bottom:424.706667pt;}
.yb1{bottom:425.026667pt;}
.ydc{bottom:426.146667pt;}
.y1f{bottom:427.106667pt;}
.y50{bottom:435.106667pt;}
.y84{bottom:438.626667pt;}
.yf9{bottom:443.426667pt;}
.yb0{bottom:443.746667pt;}
.ydb{bottom:444.866667pt;}
.y1e{bottom:453.666667pt;}
.y4f{bottom:453.826667pt;}
.y83{bottom:457.346667pt;}
.yf8{bottom:462.146667pt;}
.yaf{bottom:462.466667pt;}
.yda{bottom:463.586667pt;}
.y1d{bottom:472.386667pt;}
.y4e{bottom:472.546667pt;}
.y82{bottom:476.066667pt;}
.yd5{bottom:478.466667pt;}
.yf7{bottom:480.866667pt;}
.yae{bottom:481.186667pt;}
.y1c{bottom:491.106667pt;}
.y4d{bottom:491.266667pt;}
.y81{bottom:494.786667pt;}
.yd9{bottom:496.706667pt;}
.yf6{bottom:499.586667pt;}
.yad{bottom:499.906667pt;}
.y1b{bottom:509.826667pt;}
.y4c{bottom:509.986667pt;}
.y80{bottom:513.506667pt;}
.yd8{bottom:514.946667pt;}
.yf5{bottom:518.306667pt;}
.yac{bottom:518.626667pt;}
.y64{bottom:523.266667pt;}
.y1a{bottom:528.546667pt;}
.y4b{bottom:528.706667pt;}
.y7f{bottom:532.253333pt;}
.yd7{bottom:533.213333pt;}
.yab{bottom:537.373333pt;}
.y19{bottom:547.293333pt;}
.y4a{bottom:547.453333pt;}
.y7e{bottom:550.973333pt;}
.yd0{bottom:551.613333pt;}
.yaa{bottom:556.093333pt;}
.y18{bottom:566.013333pt;}
.y49{bottom:566.173333pt;}
.y7d{bottom:569.693333pt;}
.yd4{bottom:569.853333pt;}
.ya9{bottom:574.813333pt;}
.y17{bottom:584.733333pt;}
.y48{bottom:584.893333pt;}
.yd3{bottom:588.093333pt;}
.y7c{bottom:588.413333pt;}
.ya8{bottom:593.533333pt;}
.y16{bottom:603.453333pt;}
.y47{bottom:603.613333pt;}
.yd2{bottom:606.333333pt;}
.y7b{bottom:607.133333pt;}
.y15{bottom:622.173333pt;}
.y46{bottom:622.333333pt;}
.ycc{bottom:624.573333pt;}
.y7a{bottom:625.853333pt;}
.y14{bottom:640.893333pt;}
.y45{bottom:641.053333pt;}
.ycf{bottom:642.973333pt;}
.y79{bottom:644.573333pt;}
.y13{bottom:659.613333pt;}
.y44{bottom:659.773333pt;}
.yce{bottom:661.213333pt;}
.y78{bottom:663.293333pt;}
.y12{bottom:678.333333pt;}
.y43{bottom:678.493333pt;}
.ycd{bottom:679.453333pt;}
.y11{bottom:697.053333pt;}
.y42{bottom:697.213333pt;}
.yc8{bottom:697.693333pt;}
.y10{bottom:715.773333pt;}
.y41{bottom:715.933333pt;}
.ycb{bottom:716.093333pt;}
.yca{bottom:734.333333pt;}
.yf{bottom:734.493333pt;}
.y40{bottom:734.653333pt;}
.yc9{bottom:752.573333pt;}
.ye{bottom:753.373333pt;}
.yc2{bottom:770.853333pt;}
.y3f{bottom:772.133333pt;}
.yd{bottom:774.053333pt;}
.yc7{bottom:789.093333pt;}
.y3e{bottom:790.853333pt;}
.yc{bottom:797.413333pt;}
.yc6{bottom:807.493333pt;}
.y3d{bottom:809.573333pt;}
.yb{bottom:812.133333pt;}
.yc4{bottom:825.733333pt;}
.y3c{bottom:828.293333pt;}
.ya{bottom:832.773333pt;}
.yc1{bottom:843.973333pt;}
.y3b{bottom:847.013333pt;}
.y9{bottom:852.613333pt;}
.y3a{bottom:865.733333pt;}
.ya7{bottom:867.653333pt;}
.y8{bottom:875.013333pt;}
.ya4{bottom:882.533333pt;}
.y39{bottom:884.453333pt;}
.ya6{bottom:900.773333pt;}
.y38{bottom:903.173333pt;}
.y7{bottom:904.933333pt;}
.ya5{bottom:919.013333pt;}
.y37{bottom:921.893333pt;}
.ya1{bottom:937.413333pt;}
.y5{bottom:940.613333pt;}
.y77{bottom:945.413333pt;}
.ya3{bottom:955.653333pt;}
.y36{bottom:959.333333pt;}
.y4{bottom:969.253333pt;}
.ya2{bottom:973.893333pt;}
.y35{bottom:978.053333pt;}
.y9d{bottom:992.133333pt;}
.y74{bottom:996.133333pt;}
.y34{bottom:996.773333pt;}
.y3{bottom:997.893333pt;}
.ya0{bottom:1010.400000pt;}
.y33{bottom:1015.520000pt;}
.y2{bottom:1026.400000pt;}
.y9f{bottom:1028.800000pt;}
.y32{bottom:1034.240000pt;}
.y1{bottom:1056.640000pt;}
.y31{bottom:1059.360000pt;}
.h11{height:16.160000pt;}
.he{height:16.320000pt;}
.ha{height:16.352000pt;}
.h15{height:18.720000pt;}
.h17{height:32.640000pt;}
.h7{height:34.374375pt;}
.hf{height:34.560000pt;}
.h1d{height:35.546875pt;}
.h26{height:37.472000pt;}
.h16{height:40.514375pt;}
.h24{height:41.234375pt;}
.h1f{height:42.514375pt;}
.hc{height:48.800000pt;}
.hd{height:48.832000pt;}
.hb{height:48.960000pt;}
.h12{height:52.800000pt;}
.h10{height:52.832000pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h3{height:58.563750pt;}
.h21{height:59.007812pt;}
.h6{height:60.288750pt;}
.h9{height:65.531250pt;}
.h25{height:65.634688pt;}
.h1a{height:71.040000pt;}
.h1b{height:71.072000pt;}
.h18{height:71.200000pt;}
.h19{height:71.232000pt;}
.h22{height:72.594375pt;}
.h13{height:73.234375pt;}
.h2{height:76.671562pt;}
.h20{height:78.426875pt;}
.h14{height:79.714687pt;}
.h1e{height:80.346875pt;}
.h1c{height:82.194375pt;}
.h4{height:87.156562pt;}
.h23{height:87.807812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:72.000000pt;}
.we{width:72.032000pt;}
.w9{width:88.352000pt;}
.wf{width:89.920000pt;}
.wd{width:90.080000pt;}
.w19{width:99.872000pt;}
.w18{width:100.000000pt;}
.w17{width:100.032000pt;}
.w12{width:101.952000pt;}
.wb{width:102.112000pt;}
.w15{width:108.032000pt;}
.w11{width:120.000000pt;}
.w8{width:120.160000pt;}
.w7{width:132.832000pt;}
.wc{width:137.946667pt;}
.wa{width:143.546667pt;}
.w3{width:161.466667pt;}
.w6{width:170.266667pt;}
.w13{width:173.626667pt;}
.w10{width:185.466667pt;}
.w4{width:252.066667pt;}
.w5{width:282.106667pt;}
.w16{width:289.826667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x6{left:47.999988pt;}
.x9{left:48.960000pt;}
.x30{left:51.840000pt;}
.x12{left:61.119988pt;}
.x14{left:62.399988pt;}
.x8{left:67.199988pt;}
.x7{left:71.999988pt;}
.x15{left:73.759988pt;}
.x17{left:78.880000pt;}
.x16{left:96.031988pt;}
.x1c{left:96.992000pt;}
.x22{left:102.111988pt;}
.x23{left:112.831988pt;}
.x27{left:135.226655pt;}
.xf{left:140.986667pt;}
.x21{left:141.946655pt;}
.x29{left:152.826655pt;}
.x25{left:159.546655pt;}
.x5{left:164.666655pt;}
.x28{left:177.146655pt;}
.x24{left:195.066655pt;}
.x26{left:204.506655pt;}
.xb{left:210.906667pt;}
.xd{left:219.226655pt;}
.x18{left:222.906667pt;}
.x3{left:241.946655pt;}
.x2a{left:277.026667pt;}
.x1d{left:282.946667pt;}
.x2f{left:290.306655pt;}
.x2{left:311.586655pt;}
.x19{left:325.026667pt;}
.x13{left:333.026655pt;}
.x31{left:342.146667pt;}
.x2b{left:366.946667pt;}
.x4{left:372.546655pt;}
.xe{left:396.866655pt;}
.x1e{left:402.946667pt;}
.x1{left:426.013322pt;}
.x2c{left:438.973333pt;}
.x32{left:442.173333pt;}
.x10{left:444.413333pt;}
.xc{left:462.973333pt;}
.x1f{left:505.053333pt;}
.x2d{left:510.973333pt;}
.x33{left:542.173333pt;}
.x1a{left:553.053333pt;}
.x11{left:564.573333pt;}
.x2e{left:582.973333pt;}
.x20{left:607.013333pt;}
.x1b{left:625.093333pt;}
.x34{left:642.053333pt;}
.x35{left:746.053322pt;}
}




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