
    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_7a01b4c24b73a0f82a60628e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a798ee86446c9ea95156c701.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_e07e967c7e3a46116a7bc5fd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_84057087699ecb69922383fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_3ca189f2ef5e35504ca25ac9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.007812;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_19d990a7691ad82d53ee399f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f4d49f7e9e5d6d87c3aea333.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.333984;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_9695f277c13fd38e23a64303.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_7e723b751267013607b42136.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_99e2941467f3c6b9ecaeab42.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.667000;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;}
.m4{transform:matrix(0.231266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231266,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237560,0.000000,-0.079179,0.237130,0,0);-ms-transform:matrix(0.237560,0.000000,-0.079179,0.237130,0,0);-webkit-transform:matrix(0.237560,0.000000,-0.079179,0.237130,0,0);}
.m3{transform:matrix(0.239113,0.000000,-0.079696,0.236957,0,0);-ms-transform:matrix(0.239113,0.000000,-0.079696,0.236957,0,0);-webkit-transform:matrix(0.239113,0.000000,-0.079696,0.236957,0,0);}
.m1{transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248396,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252275,0.000000,0.000000,0.250000,0,0);}
.vd{vertical-align:-86.530946px;}
.vf{vertical-align:-69.240000px;}
.v4{vertical-align:-64.800000px;}
.ve{vertical-align:-56.595922px;}
.vc{vertical-align:-46.597638px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.360000px;}
.v6{vertical-align:18.000000px;}
.v8{vertical-align:30.240000px;}
.v7{vertical-align:35.280000px;}
.v3{vertical-align:40.320000px;}
.v2{vertical-align:43.200000px;}
.v1{vertical-align:46.080000px;}
.va{vertical-align:48.960000px;}
.vb{vertical-align:57.476391px;}
.v5{vertical-align:86.400000px;}
.ls23{letter-spacing:-4.527148px;}
.ls2a{letter-spacing:-3.959628px;}
.ls25{letter-spacing:-3.958806px;}
.ls29{letter-spacing:-2.086831px;}
.ls24{letter-spacing:-2.035140px;}
.ls26{letter-spacing:-1.803257px;}
.ls5{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.283800px;}
.ls1f{letter-spacing:-0.157800px;}
.ls4{letter-spacing:-0.144000px;}
.ls2e{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.012960px;}
.ls21{letter-spacing:0.132600px;}
.ls1{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.206400px;}
.ls28{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.257760px;}
.ls2b{letter-spacing:0.259800px;}
.ls2f{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.363600px;}
.ls16{letter-spacing:0.399600px;}
.ls11{letter-spacing:0.550800px;}
.ls10{letter-spacing:0.570960px;}
.ls6{letter-spacing:0.828000px;}
.ls18{letter-spacing:2.440800px;}
.lsa{letter-spacing:10.656720px;}
.lsc{letter-spacing:12.924000px;}
.lse{letter-spacing:12.959280px;}
.lsb{letter-spacing:13.679280px;}
.ls15{letter-spacing:13.692960px;}
.lsd{letter-spacing:14.296320px;}
.ls14{letter-spacing:14.304960px;}
.ls30{letter-spacing:16.506720px;}
.ls9{letter-spacing:16.559280px;}
.ls17{letter-spacing:17.292960px;}
.ls13{letter-spacing:26.639280px;}
.ls12{letter-spacing:31.536720px;}
.ls19{letter-spacing:31.770720px;}
.lsf{letter-spacing:33.852960px;}
.ls1c{letter-spacing:41.872695px;}
.ls1d{letter-spacing:42.024047px;}
.ls2d{letter-spacing:46.026720px;}
.ls2{letter-spacing:64.170720px;}
.ls1e{letter-spacing:144.482040px;}
.ls2c{letter-spacing:201.204000px;}
.ls27{letter-spacing:606.989529px;}
.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;}
}
.ws19{word-spacing:-43.216685px;}
.ws20{word-spacing:-43.030901px;}
.ws24{word-spacing:-41.126620px;}
.ws4{word-spacing:-32.808240px;}
.wsd{word-spacing:-20.916000px;}
.ws13{word-spacing:-18.727969px;}
.ws16{word-spacing:-18.652979px;}
.ws1d{word-spacing:-18.586386px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws1f{word-spacing:-16.783129px;}
.ws21{word-spacing:-16.641138px;}
.ws18{word-spacing:-16.617838px;}
.ws0{word-spacing:-15.300000px;}
.ws3{word-spacing:-14.940000px;}
.ws25{word-spacing:-14.886720px;}
.ws22{word-spacing:-14.768341px;}
.ws1e{word-spacing:-14.627580px;}
.ws26{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.125830px;}
.ws14{word-spacing:-10.912312px;}
.ws1b{word-spacing:-0.080786px;}
.ws1c{word-spacing:-0.076583px;}
.ws15{word-spacing:-0.074912px;}
.ws9{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.wsa{word-spacing:10.272720px;}
.ws8{word-spacing:12.913200px;}
.wse{word-spacing:13.123440px;}
.wsc{word-spacing:13.337280px;}
.wsb{word-spacing:13.553280px;}
.ws7{word-spacing:13.698000px;}
.ws11{word-spacing:13.739520px;}
.ws6{word-spacing:16.471080px;}
.ws10{word-spacing:16.499520px;}
.wsf{word-spacing:17.219520px;}
.ws1a{word-spacing:38.515768px;}
.ws12{word-spacing:156.832920px;}
.ws23{word-spacing:382.994250px;}
._42{margin-left:-1283.427083px;}
._41{margin-left:-1278.107708px;}
._36{margin-left:-1266.168419px;}
._35{margin-left:-1260.597061px;}
._37{margin-left:-1249.579542px;}
._43{margin-left:-287.874449px;}
._48{margin-left:-253.979798px;}
._53{margin-left:-226.337316px;}
._4e{margin-left:-223.169613px;}
._49{margin-left:-221.340812px;}
._2b{margin-left:-212.272302px;}
._55{margin-left:-208.598064px;}
._54{margin-left:-207.419094px;}
._44{margin-left:-203.653286px;}
._50{margin-left:-199.932663px;}
._25{margin-left:-195.300612px;}
._4d{margin-left:-194.150179px;}
._52{margin-left:-189.582933px;}
._4c{margin-left:-187.493716px;}
._4f{margin-left:-186.285622px;}
._45{margin-left:-176.291426px;}
._4b{margin-left:-168.854044px;}
._47{margin-left:-167.813304px;}
._27{margin-left:-164.660465px;}
._3f{margin-left:-163.542806px;}
._51{margin-left:-160.533772px;}
._29{margin-left:-157.574874px;}
._3c{margin-left:-155.794245px;}
._28{margin-left:-153.746374px;}
._2d{margin-left:-151.254815px;}
._23{margin-left:-145.314771px;}
._40{margin-left:-141.754900px;}
._34{margin-left:-139.047979px;}
._24{margin-left:-137.490641px;}
._2e{margin-left:-134.735360px;}
._31{margin-left:-131.687655px;}
._33{margin-left:-129.573343px;}
._3d{margin-left:-127.599081px;}
._3e{margin-left:-124.659894px;}
._1b{margin-left:-123.157502px;}
._2c{margin-left:-121.450693px;}
._21{margin-left:-120.185106px;}
._1c{margin-left:-118.265638px;}
._32{margin-left:-116.407343px;}
._3a{margin-left:-114.016879px;}
._1d{margin-left:-110.750669px;}
._39{margin-left:-108.443893px;}
._1e{margin-left:-105.903989px;}
._26{margin-left:-104.578168px;}
._22{margin-left:-103.074282px;}
._1f{margin-left:-101.160760px;}
._3b{margin-left:-96.431442px;}
._20{margin-left:-93.639845px;}
._38{margin-left:-90.385881px;}
._4a{margin-left:-83.067758px;}
._30{margin-left:-80.048645px;}
._2f{margin-left:-60.835558px;}
._46{margin-left:-55.470461px;}
._2a{margin-left:-4.551327px;}
._9{margin-left:-2.116800px;}
._2{margin-left:-1.080000px;}
._0{width:1.195200px;}
._1{width:2.260560px;}
._6{width:4.123440px;}
._7{width:5.322960px;}
._d{width:7.286400px;}
._f{width:8.832240px;}
._a{width:9.860400px;}
._5{width:11.015520px;}
._4{width:12.111600px;}
._3{width:13.386240px;}
._e{width:16.493760px;}
._58{width:17.569440px;}
._59{width:19.003680px;}
._b{width:20.497680px;}
._c{width:21.678240px;}
._1a{width:25.102560px;}
._57{width:33.577200px;}
._56{width:70.090560px;}
._18{width:94.782720px;}
._10{width:128.009280px;}
._17{width:134.023440px;}
._13{width:136.236000px;}
._16{width:141.276000px;}
._12{width:151.255920px;}
._15{width:167.809440px;}
._14{width:177.789360px;}
._11{width:181.015920px;}
._19{width:190.556640px;}
._8{width:201.204000px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs3{font-size:41.760000px;}
.fsc{font-size:43.393412px;}
.fs7{font-size:43.560898px;}
.fs5{font-size:43.649248px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:74.345544px;}
.fs6{font-size:74.611914px;}
.fs4{font-size:74.911876px;}
.fsa{font-size:76.583100px;}
.fsd{font-size:78.380511px;}
.fs8{font-size:78.718917px;}
.fs9{font-size:80.785577px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y73{bottom:4.517062px;}
.y69{bottom:4.597419px;}
.yb8{bottom:5.595352px;}
.yab{bottom:5.619504px;}
.y93{bottom:7.185493px;}
.y8d{bottom:7.584697px;}
.y7f{bottom:8.002610px;}
.y98{bottom:9.091371px;}
.y67{bottom:9.123642px;}
.yb6{bottom:10.121575px;}
.y85{bottom:17.392141px;}
.ya3{bottom:18.611763px;}
.y8e{bottom:19.488067px;}
.y70{bottom:19.740265px;}
.y90{bottom:21.629429px;}
.y7e{bottom:21.873306px;}
.ya8{bottom:21.940623px;}
.y97{bottom:23.122891px;}
.y6b{bottom:23.557110px;}
.y4{bottom:24.120000px;}
.yba{bottom:24.270556px;}
.y84{bottom:28.560195px;}
.ya2{bottom:30.567298px;}
.yb9{bottom:31.754312px;}
.y80{bottom:33.041360px;}
.y91{bottom:33.278838px;}
.y9a{bottom:34.432060px;}
.y6a{bottom:34.712142px;}
.y99{bottom:35.041107px;}
.yb7{bottom:36.280238px;}
.y71{bottom:36.990006px;}
.ya9{bottom:39.158146px;}
.y68{bottom:39.238068px;}
.y92{bottom:44.528683px;}
.y6c{bottom:49.716812px;}
.y72{bottom:54.275347px;}
.yaa{bottom:56.374176px;}
.y7a{bottom:57.298390px;}
.yb2{bottom:59.165642px;}
.y81{bottom:60.748635px;}
.y45{bottom:61.380000px;}
.y9b{bottom:62.637807px;}
.y11d{bottom:67.320000px;}
.y79{bottom:68.537644px;}
.y87{bottom:70.138166px;}
.yb1{bottom:70.762914px;}
.y77{bottom:71.560687px;}
.ya5{bottom:72.194473px;}
.yf7{bottom:72.900000px;}
.yaf{bottom:73.590206px;}
.y7d{bottom:74.654931px;}
.y96{bottom:76.668282px;}
.y44{bottom:78.660000px;}
.y86{bottom:81.306220px;}
.ya4{bottom:83.970876px;}
.y11c{bottom:84.600000px;}
.y7b{bottom:85.822984px;}
.y74{bottom:86.747104px;}
.y9d{bottom:87.978943px;}
.y9c{bottom:88.480512px;}
.yac{bottom:89.912071px;}
.yf6{bottom:90.000000px;}
.y43{bottom:95.940000px;}
.yb4{bottom:99.756000px;}
.y11b{bottom:101.916000px;}
.y75{bottom:104.033928px;}
.yad{bottom:107.128101px;}
.yf5{bottom:107.316000px;}
.y42{bottom:113.256000px;}
.y95{bottom:113.340000px;}
.y82{bottom:114.845981px;}
.y9f{bottom:116.899724px;}
.y11a{bottom:119.196000px;}
.y76{bottom:121.319269px;}
.y89{bottom:124.235512px;}
.yae{bottom:124.344131px;}
.yf4{bottom:124.596000px;}
.ya7{bottom:126.456390px;}
.y7c{bottom:128.716677px;}
.y41{bottom:130.356000px;}
.y9e{bottom:130.930199px;}
.y88{bottom:135.403566px;}
.y119{bottom:136.476000px;}
.ya6{bottom:138.232793px;}
.y78{bottom:138.569009px;}
.y83{bottom:139.884730px;}
.yb0{bottom:141.561653px;}
.yf3{bottom:141.876000px;}
.ya1{bottom:142.240860px;}
.ya0{bottom:142.742429px;}
.y40{bottom:147.636000px;}
.y118{bottom:153.750000px;}
.yf2{bottom:159.150000px;}
.y3f{bottom:164.910000px;}
.y117{bottom:170.490000px;}
.yf1{bottom:176.790000px;}
.y3e{bottom:182.190000px;}
.y116{bottom:188.130000px;}
.yb3{bottom:189.750000px;}
.yf0{bottom:193.890000px;}
.y3d{bottom:199.470000px;}
.y115{bottom:205.410000px;}
.yef{bottom:211.170000px;}
.y3c{bottom:216.750000px;}
.y114{bottom:222.690000px;}
.yee{bottom:228.450000px;}
.y3b{bottom:233.850000px;}
.y113{bottom:239.970000px;}
.yed{bottom:245.730000px;}
.y3a{bottom:251.130000px;}
.y112{bottom:257.250000px;}
.yec{bottom:263.010000px;}
.y39{bottom:268.410000px;}
.y8f{bottom:275.340000px;}
.yeb{bottom:280.290000px;}
.y38{bottom:285.330000px;}
.y111{bottom:291.630000px;}
.y94{bottom:296.310000px;}
.yea{bottom:297.390000px;}
.y37{bottom:302.970000px;}
.y110{bottom:308.910000px;}
.ye9{bottom:314.670000px;}
.y36{bottom:320.070000px;}
.y10f{bottom:326.190000px;}
.y8c{bottom:329.340000px;}
.ye8{bottom:331.950000px;}
.y8b{bottom:336.810000px;}
.y35{bottom:337.350000px;}
.y10e{bottom:343.470000px;}
.ye7{bottom:349.230000px;}
.y34{bottom:354.630000px;}
.y6f{bottom:359.715000px;}
.y10d{bottom:360.615000px;}
.ye6{bottom:366.555000px;}
.y33{bottom:371.955000px;}
.y10c{bottom:377.895000px;}
.ye5{bottom:383.655000px;}
.y32{bottom:389.235000px;}
.y10b{bottom:395.175000px;}
.ye4{bottom:400.935000px;}
.y31{bottom:407.595000px;}
.y10a{bottom:412.455000px;}
.ye3{bottom:418.215000px;}
.y30{bottom:424.695000px;}
.y109{bottom:429.375000px;}
.y8a{bottom:434.775000px;}
.ye2{bottom:435.495000px;}
.y2f{bottom:441.975000px;}
.y108{bottom:447.015000px;}
.ye1{bottom:452.775000px;}
.y2e{bottom:460.335000px;}
.y107{bottom:464.115000px;}
.ye0{bottom:470.055000px;}
.y2d{bottom:477.615000px;}
.y106{bottom:481.395000px;}
.ydf{bottom:487.155000px;}
.y2c{bottom:494.895000px;}
.y105{bottom:498.675000px;}
.yde{bottom:504.435000px;}
.y2b{bottom:511.995000px;}
.y104{bottom:515.955000px;}
.ydd{bottom:521.715000px;}
.y6e{bottom:522.075000px;}
.y2a{bottom:529.275000px;}
.y103{bottom:533.235000px;}
.y66{bottom:535.590000px;}
.ydc{bottom:538.995000px;}
.y29{bottom:546.555000px;}
.y102{bottom:550.515000px;}
.ydb{bottom:556.275000px;}
.y6d{bottom:559.515000px;}
.y28{bottom:563.835000px;}
.y101{bottom:567.615000px;}
.yda{bottom:573.555000px;}
.y27{bottom:581.115000px;}
.y100{bottom:584.895000px;}
.yd9{bottom:590.655000px;}
.y65{bottom:596.775000px;}
.y26{bottom:598.395000px;}
.yd8{bottom:607.935000px;}
.y64{bottom:613.695000px;}
.y25{bottom:615.495000px;}
.yff{bottom:619.485000px;}
.yd7{bottom:625.245000px;}
.y24{bottom:632.805000px;}
.y63{bottom:635.325000px;}
.yfe{bottom:636.765000px;}
.yd6{bottom:642.525000px;}
.y62{bottom:645.405000px;}
.y23{bottom:650.085000px;}
.yfd{bottom:653.865000px;}
.yd5{bottom:659.805000px;}
.y22{bottom:667.365000px;}
.yfc{bottom:671.145000px;}
.yd4{bottom:677.085000px;}
.y61{bottom:682.665000px;}
.y21{bottom:684.645000px;}
.yfb{bottom:688.425000px;}
.y60{bottom:690.225000px;}
.yd3{bottom:694.185000px;}
.y20{bottom:701.925000px;}
.yfa{bottom:705.705000px;}
.y5f{bottom:711.465000px;}
.y1f{bottom:719.025000px;}
.yf9{bottom:719.205000px;}
.yd2{bottom:728.385000px;}
.y1e{bottom:736.305000px;}
.yd1{bottom:746.025000px;}
.y5e{bottom:749.265000px;}
.y1d{bottom:753.585000px;}
.yd0{bottom:763.305000px;}
.y5d{bottom:765.825000px;}
.y1c{bottom:770.505000px;}
.y5c{bottom:775.905000px;}
.ycf{bottom:780.405000px;}
.y1b{bottom:788.145000px;}
.yce{bottom:797.685000px;}
.y5b{bottom:803.085000px;}
.y1a{bottom:805.425000px;}
.ycd{bottom:814.965000px;}
.y5a{bottom:820.005000px;}
.y19{bottom:822.525000px;}
.ycc{bottom:832.245000px;}
.y59{bottom:837.465000px;}
.y18{bottom:839.805000px;}
.ycb{bottom:849.525000px;}
.y58{bottom:854.745000px;}
.y17{bottom:857.085000px;}
.yca{bottom:866.805000px;}
.y57{bottom:872.025000px;}
.y124{bottom:872.385000px;}
.y16{bottom:874.365000px;}
.yc9{bottom:883.950000px;}
.y56{bottom:889.350000px;}
.y123{bottom:889.710000px;}
.y15{bottom:891.330000px;}
.yc8{bottom:901.230000px;}
.y55{bottom:906.630000px;}
.y122{bottom:906.990000px;}
.y14{bottom:909.330000px;}
.yc7{bottom:918.510000px;}
.y54{bottom:923.910000px;}
.y121{bottom:924.090000px;}
.y13{bottom:926.790000px;}
.yc6{bottom:935.790000px;}
.y53{bottom:941.010000px;}
.y120{bottom:941.370000px;}
.y12{bottom:944.070000px;}
.yc5{bottom:953.070000px;}
.y52{bottom:958.290000px;}
.y11f{bottom:958.650000px;}
.y11{bottom:961.350000px;}
.yc4{bottom:970.350000px;}
.y51{bottom:975.930000px;}
.y10{bottom:978.630000px;}
.yc3{bottom:987.450000px;}
.y50{bottom:993.210000px;}
.yf{bottom:995.910000px;}
.yc2{bottom:1004.730000px;}
.y4f{bottom:1010.130000px;}
.y11e{bottom:1010.490000px;}
.ye{bottom:1013.190000px;}
.yc1{bottom:1022.010000px;}
.y4e{bottom:1027.590000px;}
.yd{bottom:1031.190000px;}
.yc0{bottom:1039.290000px;}
.y4d{bottom:1044.870000px;}
.yc{bottom:1048.290000px;}
.ybf{bottom:1056.570000px;}
.y4c{bottom:1062.150000px;}
.yb{bottom:1065.570000px;}
.ybe{bottom:1073.670000px;}
.y4b{bottom:1079.430000px;}
.ya{bottom:1082.850000px;}
.ybd{bottom:1090.950000px;}
.y4a{bottom:1096.710000px;}
.y9{bottom:1100.490000px;}
.ybc{bottom:1107.870000px;}
.y49{bottom:1113.990000px;}
.y8{bottom:1121.190000px;}
.yb5{bottom:1121.640000px;}
.ybb{bottom:1121.730000px;}
.y48{bottom:1131.090000px;}
.y7{bottom:1141.920000px;}
.y47{bottom:1148.400000px;}
.y6{bottom:1162.620000px;}
.yf8{bottom:1165.320000px;}
.y46{bottom:1165.680000px;}
.y3{bottom:1182.600000px;}
.y2{bottom:1199.880000px;}
.y1{bottom:1216.980000px;}
.h1c{height:30.374808px;}
.h24{height:42.588260px;}
.h19{height:42.752639px;}
.h12{height:42.839350px;}
.h15{height:49.966221px;}
.h7{height:52.319180px;}
.h1e{height:54.000166px;}
.h10{height:57.450275px;}
.h2{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:60.226875px;}
.h8{height:61.423863px;}
.h4{height:65.884219px;}
.h25{height:68.864012px;}
.h17{height:69.110743px;}
.h14{height:69.388588px;}
.h20{height:70.936592px;}
.h3{height:72.562500px;}
.h26{height:72.601479px;}
.h1a{height:72.914934px;}
.h23{height:72.966085px;}
.h18{height:73.227513px;}
.h13{height:73.485332px;}
.h11{height:73.521910px;}
.h21{height:75.124730px;}
.h1f{height:75.162125px;}
.h1d{height:79.286626px;}
.he{height:88.891172px;}
.hc{height:98.971172px;}
.h1b{height:107.242537px;}
.hd{height:118.534922px;}
.h9{height:119.140664px;}
.h16{height:158.776526px;}
.hb{height:159.460664px;}
.h22{height:161.994586px;}
.ha{height:162.340664px;}
.hf{height:168.100664px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:51.673451px;}
.w5{width:93.449975px;}
.w2{width:113.552091px;}
.w7{width:250.720241px;}
.w6{width:464.537143px;}
.w3{width:499.493840px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6d{left:2.151808px;}
.x22{left:3.736187px;}
.x21{left:6.630001px;}
.x45{left:14.169001px;}
.x20{left:16.007168px;}
.x1f{left:19.449617px;}
.x44{left:22.295175px;}
.x4a{left:24.605212px;}
.x41{left:30.406706px;}
.x49{left:33.159914px;}
.x64{left:35.497918px;}
.x4b{left:41.412291px;}
.x3a{left:43.623759px;}
.x54{left:45.586343px;}
.x5{left:54.000000px;}
.x52{left:60.535039px;}
.x53{left:62.500083px;}
.x39{left:69.686650px;}
.x1e{left:75.676288px;}
.x58{left:77.374005px;}
.x59{left:79.340545px;}
.xe{left:81.000000px;}
.x1c{left:82.416459px;}
.x1d{left:87.911677px;}
.x1a{left:89.119710px;}
.x5f{left:91.320737px;}
.x1b{left:98.643672px;}
.x27{left:100.612758px;}
.x19{left:105.383843px;}
.xd{left:108.036000px;}
.x15{left:111.096000px;}
.x2d{left:125.746115px;}
.x2e{left:127.714453px;}
.x33{left:142.601974px;}
.x34{left:144.568815px;}
.x6b{left:152.448437px;}
.x3c{left:155.820524px;}
.x3e{left:173.049094px;}
.x6a{left:194.255087px;}
.x24{left:196.815000px;}
.x68{left:201.748873px;}
.x6f{left:202.890000px;}
.x7{left:211.890000px;}
.x4d{left:214.290000px;}
.x6c{left:224.305019px;}
.x69{left:230.497489px;}
.x6{left:237.630000px;}
.x5d{left:250.999305px;}
.x51{left:252.300362px;}
.x3{left:254.550000px;}
.xf{left:258.690000px;}
.xb{left:266.790000px;}
.x57{left:269.812289px;}
.x43{left:270.990000px;}
.x5b{left:276.900806px;}
.x4f{left:278.859869px;}
.x5e{left:279.936606px;}
.x5c{left:283.391136px;}
.x50{left:286.023160px;}
.x55{left:296.670890px;}
.x60{left:297.732672px;}
.x2{left:300.675000px;}
.x56{left:304.163183px;}
.x65{left:313.764086px;}
.x38{left:315.083768px;}
.x2c{left:316.386014px;}
.x67{left:321.240000px;}
.x46{left:322.635000px;}
.x10{left:326.595000px;}
.x32{left:333.913952px;}
.x36{left:340.335374px;}
.x2a{left:342.311196px;}
.x3b{left:343.373949px;}
.x37{left:346.128125px;}
.x2b{left:348.732618px;}
.x12{left:350.535000px;}
.x1{left:352.695000px;}
.x8{left:356.475000px;}
.x30{left:360.168438px;}
.x3d{left:361.231191px;}
.x31{left:366.919164px;}
.x5a{left:368.258930px;}
.x4e{left:370.890954px;}
.x40{left:376.573749px;}
.x16{left:378.435000px;}
.x18{left:389.790000px;}
.x3f{left:397.394724px;}
.x48{left:399.840000px;}
.x9{left:403.995000px;}
.x13{left:405.435000px;}
.xc{left:412.095000px;}
.x63{left:417.400000px;}
.x71{left:421.275000px;}
.x62{left:425.266161px;}
.xa{left:427.215000px;}
.x35{left:431.148353px;}
.x29{left:433.752846px;}
.x61{left:438.471141px;}
.x2f{left:451.939392px;}
.x17{left:458.385000px;}
.x28{left:462.626793px;}
.x47{left:463.965000px;}
.x26{left:480.334351px;}
.x25{left:488.207704px;}
.x4c{left:493.305000px;}
.x23{left:503.385000px;}
.x11{left:527.505000px;}
.x14{left:533.625000px;}
.x6e{left:571.965000px;}
.x66{left:678.930000px;}
.x42{left:696.390000px;}
.x70{left:735.630000px;}
.x4{left:812.130000px;}
@media print{
.vd{vertical-align:-76.916396pt;}
.vf{vertical-align:-61.546667pt;}
.v4{vertical-align:-57.600000pt;}
.ve{vertical-align:-50.307487pt;}
.vc{vertical-align:-41.420123pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.320000pt;}
.v6{vertical-align:16.000000pt;}
.v8{vertical-align:26.880000pt;}
.v7{vertical-align:31.360000pt;}
.v3{vertical-align:35.840000pt;}
.v2{vertical-align:38.400000pt;}
.v1{vertical-align:40.960000pt;}
.va{vertical-align:43.520000pt;}
.vb{vertical-align:51.090125pt;}
.v5{vertical-align:76.800000pt;}
.ls23{letter-spacing:-4.024132pt;}
.ls2a{letter-spacing:-3.519669pt;}
.ls25{letter-spacing:-3.518939pt;}
.ls29{letter-spacing:-1.854961pt;}
.ls24{letter-spacing:-1.809013pt;}
.ls26{letter-spacing:-1.602895pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.252267pt;}
.ls1f{letter-spacing:-0.140267pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2e{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.011520pt;}
.ls21{letter-spacing:0.117867pt;}
.ls1{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.183467pt;}
.ls28{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.229120pt;}
.ls2b{letter-spacing:0.230933pt;}
.ls2f{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.323200pt;}
.ls16{letter-spacing:0.355200pt;}
.ls11{letter-spacing:0.489600pt;}
.ls10{letter-spacing:0.507520pt;}
.ls6{letter-spacing:0.736000pt;}
.ls18{letter-spacing:2.169600pt;}
.lsa{letter-spacing:9.472640pt;}
.lsc{letter-spacing:11.488000pt;}
.lse{letter-spacing:11.519360pt;}
.lsb{letter-spacing:12.159360pt;}
.ls15{letter-spacing:12.171520pt;}
.lsd{letter-spacing:12.707840pt;}
.ls14{letter-spacing:12.715520pt;}
.ls30{letter-spacing:14.672640pt;}
.ls9{letter-spacing:14.719360pt;}
.ls17{letter-spacing:15.371520pt;}
.ls13{letter-spacing:23.679360pt;}
.ls12{letter-spacing:28.032640pt;}
.ls19{letter-spacing:28.240640pt;}
.lsf{letter-spacing:30.091520pt;}
.ls1c{letter-spacing:37.220173pt;}
.ls1d{letter-spacing:37.354708pt;}
.ls2d{letter-spacing:40.912640pt;}
.ls2{letter-spacing:57.040640pt;}
.ls1e{letter-spacing:128.428480pt;}
.ls2c{letter-spacing:178.848000pt;}
.ls27{letter-spacing:539.546248pt;}
.ws19{word-spacing:-38.414831pt;}
.ws20{word-spacing:-38.249689pt;}
.ws24{word-spacing:-36.556996pt;}
.ws4{word-spacing:-29.162880pt;}
.wsd{word-spacing:-18.592000pt;}
.ws13{word-spacing:-16.647084pt;}
.ws16{word-spacing:-16.580425pt;}
.ws1d{word-spacing:-16.521232pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-14.918337pt;}
.ws21{word-spacing:-14.792123pt;}
.ws18{word-spacing:-14.771412pt;}
.ws0{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws25{word-spacing:-13.232640pt;}
.ws22{word-spacing:-13.127414pt;}
.ws1e{word-spacing:-13.002293pt;}
.ws26{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.556293pt;}
.ws14{word-spacing:-9.699833pt;}
.ws1b{word-spacing:-0.071809pt;}
.ws1c{word-spacing:-0.068074pt;}
.ws15{word-spacing:-0.066588pt;}
.ws9{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.wsa{word-spacing:9.131307pt;}
.ws8{word-spacing:11.478400pt;}
.wse{word-spacing:11.665280pt;}
.wsc{word-spacing:11.855360pt;}
.wsb{word-spacing:12.047360pt;}
.ws7{word-spacing:12.176000pt;}
.ws11{word-spacing:12.212907pt;}
.ws6{word-spacing:14.640960pt;}
.ws10{word-spacing:14.666240pt;}
.wsf{word-spacing:15.306240pt;}
.ws1a{word-spacing:34.236238pt;}
.ws12{word-spacing:139.407040pt;}
.ws23{word-spacing:340.439333pt;}
._42{margin-left:-1140.824074pt;}
._41{margin-left:-1136.095741pt;}
._36{margin-left:-1125.483039pt;}
._35{margin-left:-1120.530721pt;}
._37{margin-left:-1110.737371pt;}
._43{margin-left:-255.888399pt;}
._48{margin-left:-225.759820pt;}
._53{margin-left:-201.188725pt;}
._4e{margin-left:-198.372990pt;}
._49{margin-left:-196.747389pt;}
._2b{margin-left:-188.686491pt;}
._55{margin-left:-185.420502pt;}
._54{margin-left:-184.372528pt;}
._44{margin-left:-181.025143pt;}
._50{margin-left:-177.717923pt;}
._25{margin-left:-173.600544pt;}
._4d{margin-left:-172.577937pt;}
._52{margin-left:-168.518163pt;}
._4c{margin-left:-166.661081pt;}
._4f{margin-left:-165.587219pt;}
._45{margin-left:-156.703490pt;}
._4b{margin-left:-150.092484pt;}
._47{margin-left:-149.167381pt;}
._27{margin-left:-146.364858pt;}
._3f{margin-left:-145.371383pt;}
._51{margin-left:-142.696687pt;}
._29{margin-left:-140.066555pt;}
._3c{margin-left:-138.483773pt;}
._28{margin-left:-136.663443pt;}
._2d{margin-left:-134.448724pt;}
._23{margin-left:-129.168685pt;}
._40{margin-left:-126.004356pt;}
._34{margin-left:-123.598204pt;}
._24{margin-left:-122.213903pt;}
._2e{margin-left:-119.764765pt;}
._31{margin-left:-117.055693pt;}
._33{margin-left:-115.176305pt;}
._3d{margin-left:-113.421406pt;}
._3e{margin-left:-110.808795pt;}
._1b{margin-left:-109.473336pt;}
._2c{margin-left:-107.956171pt;}
._21{margin-left:-106.831206pt;}
._1c{margin-left:-105.125012pt;}
._32{margin-left:-103.473193pt;}
._3a{margin-left:-101.348337pt;}
._1d{margin-left:-98.445039pt;}
._39{margin-left:-96.394571pt;}
._1e{margin-left:-94.136879pt;}
._26{margin-left:-92.958372pt;}
._22{margin-left:-91.621584pt;}
._1f{margin-left:-89.920675pt;}
._3b{margin-left:-85.716837pt;}
._20{margin-left:-83.235418pt;}
._38{margin-left:-80.343006pt;}
._4a{margin-left:-73.838007pt;}
._30{margin-left:-71.154351pt;}
._2f{margin-left:-54.076052pt;}
._46{margin-left:-49.307076pt;}
._2a{margin-left:-4.045624pt;}
._9{margin-left:-1.881600pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.062400pt;}
._1{width:2.009387pt;}
._6{width:3.665280pt;}
._7{width:4.731520pt;}
._d{width:6.476800pt;}
._f{width:7.850880pt;}
._a{width:8.764800pt;}
._5{width:9.791573pt;}
._4{width:10.765867pt;}
._3{width:11.898880pt;}
._e{width:14.661120pt;}
._58{width:15.617280pt;}
._59{width:16.892160pt;}
._b{width:18.220160pt;}
._c{width:19.269547pt;}
._1a{width:22.313387pt;}
._57{width:29.846400pt;}
._56{width:62.302720pt;}
._18{width:84.251307pt;}
._10{width:113.786027pt;}
._17{width:119.131947pt;}
._13{width:121.098667pt;}
._16{width:125.578667pt;}
._12{width:134.449707pt;}
._15{width:149.163947pt;}
._14{width:158.034987pt;}
._11{width:160.903040pt;}
._19{width:169.383680pt;}
._8{width:178.848000pt;}
.fs3{font-size:37.120000pt;}
.fsc{font-size:38.571921pt;}
.fs7{font-size:38.720798pt;}
.fs5{font-size:38.799331pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:66.084928pt;}
.fs6{font-size:66.321701pt;}
.fs4{font-size:66.588334pt;}
.fsa{font-size:68.073867pt;}
.fsd{font-size:69.671565pt;}
.fs8{font-size:69.972370pt;}
.fs9{font-size:71.809402pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y73{bottom:4.015166pt;}
.y69{bottom:4.086595pt;}
.yb8{bottom:4.973647pt;}
.yab{bottom:4.995115pt;}
.y93{bottom:6.387105pt;}
.y8d{bottom:6.741952pt;}
.y7f{bottom:7.113431pt;}
.y98{bottom:8.081219pt;}
.y67{bottom:8.109904pt;}
.yb6{bottom:8.996956pt;}
.y85{bottom:15.459681pt;}
.ya3{bottom:16.543789pt;}
.y8e{bottom:17.322727pt;}
.y70{bottom:17.546903pt;}
.y90{bottom:19.226159pt;}
.y7e{bottom:19.442939pt;}
.ya8{bottom:19.502776pt;}
.y97{bottom:20.553681pt;}
.y6b{bottom:20.939653pt;}
.y4{bottom:21.440000pt;}
.yba{bottom:21.573828pt;}
.y84{bottom:25.386840pt;}
.ya2{bottom:27.170931pt;}
.yb9{bottom:28.226055pt;}
.y80{bottom:29.370097pt;}
.y91{bottom:29.581189pt;}
.y9a{bottom:30.606275pt;}
.y6a{bottom:30.855237pt;}
.y99{bottom:31.147651pt;}
.yb7{bottom:32.249100pt;}
.y71{bottom:32.880005pt;}
.ya9{bottom:34.807241pt;}
.y68{bottom:34.878282pt;}
.y92{bottom:39.581052pt;}
.y6c{bottom:44.192722pt;}
.y72{bottom:48.244753pt;}
.yaa{bottom:50.110379pt;}
.y7a{bottom:50.931902pt;}
.yb2{bottom:52.591682pt;}
.y81{bottom:53.998786pt;}
.y45{bottom:54.560000pt;}
.y9b{bottom:55.678051pt;}
.y11d{bottom:59.840000pt;}
.y79{bottom:60.922350pt;}
.y87{bottom:62.345036pt;}
.yb1{bottom:62.900368pt;}
.y77{bottom:63.609500pt;}
.ya5{bottom:64.172865pt;}
.yf7{bottom:64.800000pt;}
.yaf{bottom:65.413516pt;}
.y7d{bottom:66.359938pt;}
.y96{bottom:68.149584pt;}
.y44{bottom:69.920000pt;}
.y86{bottom:72.272195pt;}
.ya4{bottom:74.640779pt;}
.y11c{bottom:75.200000pt;}
.y7b{bottom:76.287097pt;}
.y74{bottom:77.108537pt;}
.y9d{bottom:78.203505pt;}
.y9c{bottom:78.649344pt;}
.yac{bottom:79.921841pt;}
.yf6{bottom:80.000000pt;}
.y43{bottom:85.280000pt;}
.yb4{bottom:88.672000pt;}
.y11b{bottom:90.592000pt;}
.y75{bottom:92.474603pt;}
.yad{bottom:95.224979pt;}
.yf5{bottom:95.392000pt;}
.y42{bottom:100.672000pt;}
.y95{bottom:100.746667pt;}
.y82{bottom:102.085316pt;}
.y9f{bottom:103.910866pt;}
.y11a{bottom:105.952000pt;}
.y76{bottom:107.839350pt;}
.y89{bottom:110.431566pt;}
.yae{bottom:110.528116pt;}
.yf4{bottom:110.752000pt;}
.ya7{bottom:112.405680pt;}
.y7c{bottom:114.414824pt;}
.y41{bottom:115.872000pt;}
.y9e{bottom:116.382399pt;}
.y88{bottom:120.358725pt;}
.y119{bottom:121.312000pt;}
.ya6{bottom:122.873594pt;}
.y78{bottom:123.172453pt;}
.y83{bottom:124.341983pt;}
.yb0{bottom:125.832581pt;}
.yf3{bottom:126.112000pt;}
.ya1{bottom:126.436320pt;}
.ya0{bottom:126.882159pt;}
.y40{bottom:131.232000pt;}
.y118{bottom:136.666667pt;}
.yf2{bottom:141.466667pt;}
.y3f{bottom:146.586667pt;}
.y117{bottom:151.546667pt;}
.yf1{bottom:157.146667pt;}
.y3e{bottom:161.946667pt;}
.y116{bottom:167.226667pt;}
.yb3{bottom:168.666667pt;}
.yf0{bottom:172.346667pt;}
.y3d{bottom:177.306667pt;}
.y115{bottom:182.586667pt;}
.yef{bottom:187.706667pt;}
.y3c{bottom:192.666667pt;}
.y114{bottom:197.946667pt;}
.yee{bottom:203.066667pt;}
.y3b{bottom:207.866667pt;}
.y113{bottom:213.306667pt;}
.yed{bottom:218.426667pt;}
.y3a{bottom:223.226667pt;}
.y112{bottom:228.666667pt;}
.yec{bottom:233.786667pt;}
.y39{bottom:238.586667pt;}
.y8f{bottom:244.746667pt;}
.yeb{bottom:249.146667pt;}
.y38{bottom:253.626667pt;}
.y111{bottom:259.226667pt;}
.y94{bottom:263.386667pt;}
.yea{bottom:264.346667pt;}
.y37{bottom:269.306667pt;}
.y110{bottom:274.586667pt;}
.ye9{bottom:279.706667pt;}
.y36{bottom:284.506667pt;}
.y10f{bottom:289.946667pt;}
.y8c{bottom:292.746667pt;}
.ye8{bottom:295.066667pt;}
.y8b{bottom:299.386667pt;}
.y35{bottom:299.866667pt;}
.y10e{bottom:305.306667pt;}
.ye7{bottom:310.426667pt;}
.y34{bottom:315.226667pt;}
.y6f{bottom:319.746667pt;}
.y10d{bottom:320.546667pt;}
.ye6{bottom:325.826667pt;}
.y33{bottom:330.626667pt;}
.y10c{bottom:335.906667pt;}
.ye5{bottom:341.026667pt;}
.y32{bottom:345.986667pt;}
.y10b{bottom:351.266667pt;}
.ye4{bottom:356.386667pt;}
.y31{bottom:362.306667pt;}
.y10a{bottom:366.626667pt;}
.ye3{bottom:371.746667pt;}
.y30{bottom:377.506667pt;}
.y109{bottom:381.666667pt;}
.y8a{bottom:386.466667pt;}
.ye2{bottom:387.106667pt;}
.y2f{bottom:392.866667pt;}
.y108{bottom:397.346667pt;}
.ye1{bottom:402.466667pt;}
.y2e{bottom:409.186667pt;}
.y107{bottom:412.546667pt;}
.ye0{bottom:417.826667pt;}
.y2d{bottom:424.546667pt;}
.y106{bottom:427.906667pt;}
.ydf{bottom:433.026667pt;}
.y2c{bottom:439.906667pt;}
.y105{bottom:443.266667pt;}
.yde{bottom:448.386667pt;}
.y2b{bottom:455.106667pt;}
.y104{bottom:458.626667pt;}
.ydd{bottom:463.746667pt;}
.y6e{bottom:464.066667pt;}
.y2a{bottom:470.466667pt;}
.y103{bottom:473.986667pt;}
.y66{bottom:476.080000pt;}
.ydc{bottom:479.106667pt;}
.y29{bottom:485.826667pt;}
.y102{bottom:489.346667pt;}
.ydb{bottom:494.466667pt;}
.y6d{bottom:497.346667pt;}
.y28{bottom:501.186667pt;}
.y101{bottom:504.546667pt;}
.yda{bottom:509.826667pt;}
.y27{bottom:516.546667pt;}
.y100{bottom:519.906667pt;}
.yd9{bottom:525.026667pt;}
.y65{bottom:530.466667pt;}
.y26{bottom:531.906667pt;}
.yd8{bottom:540.386667pt;}
.y64{bottom:545.506667pt;}
.y25{bottom:547.106667pt;}
.yff{bottom:550.653333pt;}
.yd7{bottom:555.773333pt;}
.y24{bottom:562.493333pt;}
.y63{bottom:564.733333pt;}
.yfe{bottom:566.013333pt;}
.yd6{bottom:571.133333pt;}
.y62{bottom:573.693333pt;}
.y23{bottom:577.853333pt;}
.yfd{bottom:581.213333pt;}
.yd5{bottom:586.493333pt;}
.y22{bottom:593.213333pt;}
.yfc{bottom:596.573333pt;}
.yd4{bottom:601.853333pt;}
.y61{bottom:606.813333pt;}
.y21{bottom:608.573333pt;}
.yfb{bottom:611.933333pt;}
.y60{bottom:613.533333pt;}
.yd3{bottom:617.053333pt;}
.y20{bottom:623.933333pt;}
.yfa{bottom:627.293333pt;}
.y5f{bottom:632.413333pt;}
.y1f{bottom:639.133333pt;}
.yf9{bottom:639.293333pt;}
.yd2{bottom:647.453333pt;}
.y1e{bottom:654.493333pt;}
.yd1{bottom:663.133333pt;}
.y5e{bottom:666.013333pt;}
.y1d{bottom:669.853333pt;}
.yd0{bottom:678.493333pt;}
.y5d{bottom:680.733333pt;}
.y1c{bottom:684.893333pt;}
.y5c{bottom:689.693333pt;}
.ycf{bottom:693.693333pt;}
.y1b{bottom:700.573333pt;}
.yce{bottom:709.053333pt;}
.y5b{bottom:713.853333pt;}
.y1a{bottom:715.933333pt;}
.ycd{bottom:724.413333pt;}
.y5a{bottom:728.893333pt;}
.y19{bottom:731.133333pt;}
.ycc{bottom:739.773333pt;}
.y59{bottom:744.413333pt;}
.y18{bottom:746.493333pt;}
.ycb{bottom:755.133333pt;}
.y58{bottom:759.773333pt;}
.y17{bottom:761.853333pt;}
.yca{bottom:770.493333pt;}
.y57{bottom:775.133333pt;}
.y124{bottom:775.453333pt;}
.y16{bottom:777.213333pt;}
.yc9{bottom:785.733333pt;}
.y56{bottom:790.533333pt;}
.y123{bottom:790.853333pt;}
.y15{bottom:792.293333pt;}
.yc8{bottom:801.093333pt;}
.y55{bottom:805.893333pt;}
.y122{bottom:806.213333pt;}
.y14{bottom:808.293333pt;}
.yc7{bottom:816.453333pt;}
.y54{bottom:821.253333pt;}
.y121{bottom:821.413333pt;}
.y13{bottom:823.813333pt;}
.yc6{bottom:831.813333pt;}
.y53{bottom:836.453333pt;}
.y120{bottom:836.773333pt;}
.y12{bottom:839.173333pt;}
.yc5{bottom:847.173333pt;}
.y52{bottom:851.813333pt;}
.y11f{bottom:852.133333pt;}
.y11{bottom:854.533333pt;}
.yc4{bottom:862.533333pt;}
.y51{bottom:867.493333pt;}
.y10{bottom:869.893333pt;}
.yc3{bottom:877.733333pt;}
.y50{bottom:882.853333pt;}
.yf{bottom:885.253333pt;}
.yc2{bottom:893.093333pt;}
.y4f{bottom:897.893333pt;}
.y11e{bottom:898.213333pt;}
.ye{bottom:900.613333pt;}
.yc1{bottom:908.453333pt;}
.y4e{bottom:913.413333pt;}
.yd{bottom:916.613333pt;}
.yc0{bottom:923.813333pt;}
.y4d{bottom:928.773333pt;}
.yc{bottom:931.813333pt;}
.ybf{bottom:939.173333pt;}
.y4c{bottom:944.133333pt;}
.yb{bottom:947.173333pt;}
.ybe{bottom:954.373333pt;}
.y4b{bottom:959.493333pt;}
.ya{bottom:962.533333pt;}
.ybd{bottom:969.733333pt;}
.y4a{bottom:974.853333pt;}
.y9{bottom:978.213333pt;}
.ybc{bottom:984.773333pt;}
.y49{bottom:990.213333pt;}
.y8{bottom:996.613333pt;}
.yb5{bottom:997.013333pt;}
.ybb{bottom:997.093333pt;}
.y48{bottom:1005.413333pt;}
.y7{bottom:1015.040000pt;}
.y47{bottom:1020.800000pt;}
.y6{bottom:1033.440000pt;}
.yf8{bottom:1035.840000pt;}
.y46{bottom:1036.160000pt;}
.y3{bottom:1051.200000pt;}
.y2{bottom:1066.560000pt;}
.y1{bottom:1081.760000pt;}
.h1c{height:26.999829pt;}
.h24{height:37.856232pt;}
.h19{height:38.002346pt;}
.h12{height:38.079422pt;}
.h15{height:44.414419pt;}
.h7{height:46.505938pt;}
.h1e{height:48.000148pt;}
.h10{height:51.066911pt;}
.h2{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:53.535000pt;}
.h8{height:54.598989pt;}
.h4{height:58.563750pt;}
.h25{height:61.212455pt;}
.h17{height:61.431771pt;}
.h14{height:61.678745pt;}
.h20{height:63.054749pt;}
.h3{height:64.500000pt;}
.h26{height:64.534648pt;}
.h1a{height:64.813275pt;}
.h23{height:64.858742pt;}
.h18{height:65.091123pt;}
.h13{height:65.320295pt;}
.h11{height:65.352809pt;}
.h21{height:66.777538pt;}
.h1f{height:66.810777pt;}
.h1d{height:70.477001pt;}
.he{height:79.014375pt;}
.hc{height:87.974375pt;}
.h1b{height:95.326700pt;}
.hd{height:105.364375pt;}
.h9{height:105.902812pt;}
.h16{height:141.134690pt;}
.hb{height:141.742813pt;}
.h22{height:143.995188pt;}
.ha{height:144.302812pt;}
.hf{height:149.422813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:45.931956pt;}
.w5{width:83.066645pt;}
.w2{width:100.935192pt;}
.w7{width:222.862436pt;}
.w6{width:412.921905pt;}
.w3{width:443.994524pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6d{left:1.912719pt;}
.x22{left:3.321055pt;}
.x21{left:5.893334pt;}
.x45{left:12.594668pt;}
.x20{left:14.228593pt;}
.x1f{left:17.288548pt;}
.x44{left:19.817933pt;}
.x4a{left:21.871300pt;}
.x41{left:27.028183pt;}
.x49{left:29.475479pt;}
.x64{left:31.553705pt;}
.x4b{left:36.810926pt;}
.x3a{left:38.776675pt;}
.x54{left:40.521194pt;}
.x5{left:48.000000pt;}
.x52{left:53.808923pt;}
.x53{left:55.555629pt;}
.x39{left:61.943689pt;}
.x1e{left:67.267812pt;}
.x58{left:68.776894pt;}
.x59{left:70.524929pt;}
.xe{left:72.000000pt;}
.x1c{left:73.259075pt;}
.x1d{left:78.143713pt;}
.x1a{left:79.217520pt;}
.x5f{left:81.173989pt;}
.x1b{left:87.683264pt;}
.x27{left:89.433563pt;}
.x19{left:93.674527pt;}
.xd{left:96.032000pt;}
.x15{left:98.752000pt;}
.x2d{left:111.774324pt;}
.x2e{left:113.523958pt;}
.x33{left:126.757310pt;}
.x34{left:128.505613pt;}
.x6b{left:135.509721pt;}
.x3c{left:138.507132pt;}
.x3e{left:153.821417pt;}
.x6a{left:172.671188pt;}
.x24{left:174.946667pt;}
.x68{left:179.332331pt;}
.x6f{left:180.346667pt;}
.x7{left:188.346667pt;}
.x4d{left:190.480000pt;}
.x6c{left:199.382239pt;}
.x69{left:204.886657pt;}
.x6{left:211.226667pt;}
.x5d{left:223.110493pt;}
.x51{left:224.266989pt;}
.x3{left:226.266667pt;}
.xf{left:229.946667pt;}
.xb{left:237.146667pt;}
.x57{left:239.833146pt;}
.x43{left:240.880000pt;}
.x5b{left:246.134050pt;}
.x4f{left:247.875439pt;}
.x5e{left:248.832539pt;}
.x5c{left:251.903232pt;}
.x50{left:254.242809pt;}
.x55{left:263.707458pt;}
.x60{left:264.651264pt;}
.x2{left:267.266667pt;}
.x56{left:270.367274pt;}
.x65{left:278.901410pt;}
.x38{left:280.074460pt;}
.x2c{left:281.232012pt;}
.x67{left:285.546667pt;}
.x46{left:286.786667pt;}
.x10{left:290.306667pt;}
.x32{left:296.812402pt;}
.x36{left:302.520332pt;}
.x2a{left:304.276619pt;}
.x3b{left:305.221288pt;}
.x37{left:307.669445pt;}
.x2b{left:309.984550pt;}
.x12{left:311.586667pt;}
.x1{left:313.506667pt;}
.x8{left:316.866667pt;}
.x30{left:320.149722pt;}
.x3d{left:321.094392pt;}
.x31{left:326.150368pt;}
.x5a{left:327.341272pt;}
.x4e{left:329.680848pt;}
.x40{left:334.732222pt;}
.x16{left:336.386667pt;}
.x18{left:346.480000pt;}
.x3f{left:353.239755pt;}
.x48{left:355.413333pt;}
.x9{left:359.106667pt;}
.x13{left:360.386667pt;}
.xc{left:366.306667pt;}
.x63{left:371.022223pt;}
.x71{left:374.466667pt;}
.x62{left:378.014365pt;}
.xa{left:379.746667pt;}
.x35{left:383.242981pt;}
.x29{left:385.558086pt;}
.x61{left:389.752125pt;}
.x2f{left:401.723904pt;}
.x17{left:407.453333pt;}
.x28{left:411.223816pt;}
.x47{left:412.413333pt;}
.x26{left:426.963868pt;}
.x25{left:433.962403pt;}
.x4c{left:438.493333pt;}
.x23{left:447.453333pt;}
.x11{left:468.893333pt;}
.x14{left:474.333333pt;}
.x6e{left:508.413333pt;}
.x66{left:603.493333pt;}
.x42{left:619.013333pt;}
.x70{left:653.893333pt;}
.x4{left:721.893333pt;}
}




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