
    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_392275b468469b0ae0dbe495.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971000;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_d5ea1c424866b59b4c99026e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_cc391bf654ef6f0120c12d50.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_e87811100ad561d5e72d8a2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_577610f14b87e63a0130ca61.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_af924d7f69b75265777337c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_b1edaaa6f229e1f15dbe5c80.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_0f415a79779c2d6cdab5213e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);-ms-transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);-webkit-transform:matrix(0.143394,0.204788,-0.204788,0.143394,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.m4{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:-64.770000px;}
.v9{vertical-align:-40.962000px;}
.v3{vertical-align:-32.124000px;}
.v4{vertical-align:-27.831867px;}
.v5{vertical-align:-26.772000px;}
.v8{vertical-align:-11.995124px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.990248px;}
.v7{vertical-align:35.578758px;}
.v1{vertical-align:77.724000px;}
.ls2a{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000247px;}
.ls1f{letter-spacing:0.001562px;}
.ls1a{letter-spacing:0.001699px;}
.ls16{letter-spacing:0.002303px;}
.ls28{letter-spacing:0.003817px;}
.ls5{letter-spacing:0.004611px;}
.ls18{letter-spacing:0.699685px;}
.ls8{letter-spacing:2.981735px;}
.ls0{letter-spacing:2.993220px;}
.ls1{letter-spacing:2.995232px;}
.ls29{letter-spacing:6.395851px;}
.ls19{letter-spacing:18.315813px;}
.ls25{letter-spacing:46.819232px;}
.ls27{letter-spacing:47.989011px;}
.ls26{letter-spacing:50.227011px;}
.ls17{letter-spacing:51.391490px;}
.lsc{letter-spacing:56.247441px;}
.ls1d{letter-spacing:58.298303px;}
.ls2{letter-spacing:60.685805px;}
.ls24{letter-spacing:61.297232px;}
.ls1e{letter-spacing:64.096167px;}
.ls23{letter-spacing:64.120167px;}
.ls1c{letter-spacing:65.959490px;}
.ls14{letter-spacing:67.829220px;}
.ls15{letter-spacing:67.835220px;}
.ls13{letter-spacing:68.361441px;}
.ls20{letter-spacing:69.550344px;}
.ls21{letter-spacing:70.375490px;}
.ls22{letter-spacing:70.525011px;}
.lsa{letter-spacing:70.541735px;}
.ls9{letter-spacing:70.547220px;}
.ls12{letter-spacing:76.043176px;}
.ls1b{letter-spacing:80.099157px;}
.lsb{letter-spacing:81.141441px;}
.lsf{letter-spacing:88.423361px;}
.ls4{letter-spacing:126.468782px;}
.lsd{letter-spacing:146.123735px;}
.ls11{letter-spacing:146.209361px;}
.ls3{letter-spacing:148.668507px;}
.ls10{letter-spacing:181.931683px;}
.ls7{letter-spacing:191.682782px;}
.ls6{letter-spacing:213.882507px;}
.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;}
}
.ws1a{word-spacing:-136.344824px;}
.ws58{word-spacing:-113.626989px;}
.ws26{word-spacing:-0.214177px;}
.ws4{word-spacing:-0.178490px;}
.ws27{word-spacing:-0.149923px;}
.ws3{word-spacing:-0.148723px;}
.ws65{word-spacing:-0.124943px;}
.ws53{word-spacing:0.000000px;}
.ws60{word-spacing:16.316618px;}
.ws5f{word-spacing:20.766482px;}
.ws5e{word-spacing:20.766560px;}
.ws7d{word-spacing:34.354921px;}
.ws7a{word-spacing:41.047438px;}
.ws7c{word-spacing:41.196160px;}
.ws77{word-spacing:41.231282px;}
.ws78{word-spacing:41.409773px;}
.ws75{word-spacing:43.373167px;}
.ws76{word-spacing:43.551658px;}
.ws2{word-spacing:45.158071px;}
.ws20{word-spacing:46.047969px;}
.ws30{word-spacing:46.690499px;}
.ws79{word-spacing:47.888677px;}
.ws5a{word-spacing:48.013918px;}
.ws7b{word-spacing:48.037400px;}
.ws6c{word-spacing:48.186122px;}
.ws57{word-spacing:48.192408px;}
.ws59{word-spacing:48.234115px;}
.ws73{word-spacing:48.334845px;}
.ws3f{word-spacing:48.618088px;}
.ws5b{word-spacing:49.263350px;}
.ws66{word-spacing:49.798822px;}
.ws51{word-spacing:51.188207px;}
.ws2b{word-spacing:53.688859px;}
.ws22{word-spacing:53.758327px;}
.ws4d{word-spacing:53.972503px;}
.ws62{word-spacing:53.986304px;}
.ws1{word-spacing:54.186680px;}
.ws72{word-spacing:55.919698px;}
.ws29{word-spacing:56.051046px;}
.ws69{word-spacing:57.941242px;}
.ws74{word-spacing:58.009380px;}
.ws6d{word-spacing:58.187870px;}
.ws15{word-spacing:59.112742px;}
.ws52{word-spacing:59.326918px;}
.ws2a{word-spacing:60.183625px;}
.ws67{word-spacing:62.828621px;}
.ws6a{word-spacing:63.899563px;}
.ws4e{word-spacing:64.467157px;}
.ws63{word-spacing:64.613525px;}
.ws4f{word-spacing:64.681333px;}
.ws61{word-spacing:64.792015px;}
.ws70{word-spacing:66.933900px;}
.ws6e{word-spacing:66.963521px;}
.ws71{word-spacing:67.112390px;}
.ws25{word-spacing:67.251452px;}
.ws18{word-spacing:67.893982px;}
.ws2f{word-spacing:68.536512px;}
.ws49{word-spacing:71.963338px;}
.ws48{word-spacing:71.986018px;}
.ws28{word-spacing:72.177514px;}
.ws38{word-spacing:74.533457px;}
.ws39{word-spacing:74.747633px;}
.ws64{word-spacing:75.144458px;}
.ws68{word-spacing:75.322949px;}
.ws2c{word-spacing:77.746106px;}
.ws47{word-spacing:78.102262px;}
.ws16{word-spacing:78.971701px;}
.ws34{word-spacing:80.102048px;}
.wsf{word-spacing:81.601285px;}
.ws21{word-spacing:82.457991px;}
.ws9{word-spacing:84.171404px;}
.wsb{word-spacing:84.385580px;}
.ws56{word-spacing:85.139921px;}
.ws55{word-spacing:85.318411px;}
.ws54{word-spacing:85.774839px;}
.ws0{word-spacing:85.870670px;}
.ws40{word-spacing:85.884817px;}
.ws6f{word-spacing:87.061644px;}
.ws6b{word-spacing:87.231888px;}
.ws24{word-spacing:88.454936px;}
.ws10{word-spacing:90.596702px;}
.ws3a{word-spacing:94.237704px;}
.ws4c{word-spacing:94.666057px;}
.ws23{word-spacing:95.308587px;}
.ws3b{word-spacing:95.736940px;}
.ws3c{word-spacing:95.842018px;}
.ws19{word-spacing:99.163766px;}
.ws1b{word-spacing:99.257046px;}
.ws4a{word-spacing:103.875651px;}
.ws31{word-spacing:104.920018px;}
.ws32{word-spacing:104.946534px;}
.wse{word-spacing:107.088300px;}
.ws1c{word-spacing:107.945006px;}
.ws50{word-spacing:108.587536px;}
.ws1f{word-spacing:109.872596px;}
.ws2e{word-spacing:110.300949px;}
.ws17{word-spacing:113.941951px;}
.wsd{word-spacing:117.582953px;}
.ws37{word-spacing:118.868013px;}
.ws35{word-spacing:119.082190px;}
.ws36{word-spacing:119.132305px;}
.ws3e{word-spacing:132.361139px;}
.ws4b{word-spacing:132.789492px;}
.ws1d{word-spacing:137.929730px;}
.ws1e{word-spacing:138.227046px;}
.ws2d{word-spacing:142.855792px;}
.ws41{word-spacing:143.024305px;}
.ws42{word-spacing:143.069969px;}
.ws8{word-spacing:143.498322px;}
.wsa{word-spacing:144.569205px;}
.ws14{word-spacing:147.781854px;}
.ws46{word-spacing:151.208680px;}
.ws6{word-spacing:157.205624px;}
.ws5{word-spacing:162.131686px;}
.ws13{word-spacing:165.344335px;}
.ws12{word-spacing:166.415218px;}
.ws45{word-spacing:173.483046px;}
.ws11{word-spacing:182.264287px;}
.ws3d{word-spacing:184.762518px;}
.ws43{word-spacing:186.976172px;}
.ws44{word-spacing:197.256649px;}
.ws7{word-spacing:205.609536px;}
.wsc{word-spacing:208.393832px;}
.ws33{word-spacing:301.989006px;}
.ws5d{word-spacing:390.254046px;}
.ws5c{word-spacing:537.618402px;}
._36{margin-left:-1077.929391px;}
._37{margin-left:-922.993301px;}
._35{margin-left:-891.587005px;}
._34{margin-left:-860.438585px;}
._12{margin-left:-20.989307px;}
._6{margin-left:-18.849295px;}
._4d{margin-left:-17.689909px;}
._5{margin-left:-16.432176px;}
._23{margin-left:-13.236311px;}
._8{margin-left:-10.735580px;}
._1{margin-left:-9.623437px;}
._a{margin-left:-8.567064px;}
._3{margin-left:-7.067828px;}
._4{margin-left:-5.568592px;}
._c{margin-left:-4.497709px;}
._7{margin-left:-2.971722px;}
._0{margin-left:-1.850661px;}
._17{width:2.141766px;}
._10{width:3.349897px;}
._18{width:4.444208px;}
._e{width:5.568592px;}
._9{width:6.853651px;}
._2b{width:7.920401px;}
._1c{width:9.423770px;}
._49{width:11.727201px;}
._31{width:13.493126px;}
._4c{width:42.260758px;}
._3f{width:44.467343px;}
._25{width:47.941989px;}
._2c{width:50.227822px;}
._2d{width:51.589810px;}
._33{width:52.610515px;}
._30{width:56.221072px;}
._43{width:58.100767px;}
._4a{width:59.179696px;}
._41{width:61.793246px;}
._46{width:63.869414px;}
._4b{width:64.900733px;}
._45{width:66.112286px;}
._1a{width:70.276675px;}
._20{width:71.990088px;}
._24{width:77.966365px;}
._48{width:79.043738px;}
._47{width:82.500146px;}
._2{width:85.130406px;}
._40{width:86.445277px;}
._14{width:87.598229px;}
._f{width:90.355775px;}
._44{width:91.374998px;}
._21{width:95.847438px;}
._22{width:97.231278px;}
._15{width:98.521236px;}
._1b{width:100.448825px;}
._2a{width:103.206371px;}
._3c{width:106.416496px;}
._32{width:109.819095px;}
._19{width:114.820769px;}
._42{width:116.057499px;}
._1e{width:120.367249px;}
._13{width:132.146962px;}
._28{width:134.047801px;}
._3a{width:144.839902px;}
._29{width:149.413663px;}
._3e{width:150.730320px;}
._2f{width:152.604237px;}
._3d{width:173.398275px;}
._2e{width:185.604467px;}
._1d{width:193.160543px;}
._16{width:211.948661px;}
._b{width:242.608587px;}
._3b{width:248.591339px;}
._27{width:303.327566px;}
._1f{width:310.529320px;}
._d{width:327.261845px;}
._26{width:362.600984px;}
._39{width:507.227346px;}
._11{width:520.174642px;}
._38{width:1160.580883px;}
.fc3{color:transparent;}
.fc2{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(245,246,250);}
.fs17{font-size:66.793188px;}
.fs15{font-size:85.009512px;}
.fsb{font-size:90.571500px;}
.fse{font-size:93.621420px;}
.fs16{font-size:95.418840px;}
.fsa{font-size:100.635000px;}
.fs10{font-size:104.093280px;}
.fs6{font-size:120.762000px;}
.fs14{font-size:121.442160px;}
.fs9{font-size:122.774700px;}
.fsc{font-size:124.828560px;}
.fs3{font-size:124.942800px;}
.fs12{font-size:133.586376px;}
.fs5{font-size:148.722600px;}
.fs2{font-size:149.923200px;}
.fs8{font-size:154.977900px;}
.fsf{font-size:156.035700px;}
.fs13{font-size:173.488800px;}
.fs4{font-size:178.490400px;}
.fs11{font-size:190.837680px;}
.fs1{font-size:214.176600px;}
.fs7{font-size:221.397000px;}
.fsd{font-size:228.852360px;}
.fs0{font-size:370.132200px;}
.y0{bottom:0.000000px;}
.y89{bottom:25.440506px;}
.y45{bottom:29.514359px;}
.y67{bottom:30.508230px;}
.yad{bottom:44.803500px;}
.y88{bottom:91.447573px;}
.y44{bottom:104.086466px;}
.y66{bottom:105.937181px;}
.y65{bottom:105.965914px;}
.y62{bottom:117.401563px;}
.y63{bottom:117.430296px;}
.y64{bottom:117.459029px;}
.y46{bottom:130.758672px;}
.y99{bottom:156.816378px;}
.y71{bottom:157.948524px;}
.y42{bottom:165.253500px;}
.y98{bottom:165.508993px;}
.y8a{bottom:165.966631px;}
.y54{bottom:186.536407px;}
.y68{bottom:193.075574px;}
.yac{bottom:195.400500px;}
.y97{bottom:201.358827px;}
.y53{bottom:222.191073px;}
.y41{bottom:232.501500px;}
.y96{bottom:237.208661px;}
.yab{bottom:244.716000px;}
.y7c{bottom:248.686697px;}
.y52{bottom:257.845739px;}
.y8b{bottom:259.520901px;}
.y47{bottom:268.590010px;}
.y9a{bottom:270.398437px;}
.y95{bottom:274.315611px;}
.y69{bottom:284.670365px;}
.y51{bottom:293.500405px;}
.yaa{bottom:294.031500px;}
.y40{bottom:299.749500px;}
.y83{bottom:315.284522px;}
.y50{bottom:329.155071px;}
.y4d{bottom:329.315458px;}
.ya9{bottom:343.347000px;}
.y8c{bottom:353.075170px;}
.y7d{bottom:359.908944px;}
.y4f{bottom:364.809737px;}
.y3f{bottom:366.997500px;}
.y9b{bottom:371.842399px;}
.y6a{bottom:376.265157px;}
.y92{bottom:376.714665px;}
.y93{bottom:397.659110px;}
.y4e{bottom:400.464403px;}
.y48{bottom:406.421348px;}
.y55{bottom:420.671421px;}
.y3e{bottom:434.245500px;}
.y5f{bottom:442.567787px;}
.y8d{bottom:446.629440px;}
.ya8{bottom:458.583000px;}
.y9c{bottom:460.361129px;}
.y6b{bottom:467.859948px;}
.y7e{bottom:471.131191px;}
.y3d{bottom:501.493500px;}
.y9d{bottom:534.237955px;}
.y8e{bottom:540.183709px;}
.ya7{bottom:541.522500px;}
.y49{bottom:544.252686px;}
.y6c{bottom:559.454740px;}
.y3c{bottom:568.741500px;}
.y56{bottom:572.285893px;}
.y7f{bottom:582.353438px;}
.y5c{bottom:586.069026px;}
.y9e{bottom:596.327458px;}
.y77{bottom:617.909719px;}
.ya6{bottom:624.460500px;}
.y8f{bottom:633.737979px;}
.y3b{bottom:635.989500px;}
.y6d{bottom:651.049532px;}
.y57{bottom:654.984695px;}
.y9f{bottom:655.672668px;}
.y75{bottom:663.707115px;}
.y4a{bottom:682.084023px;}
.y80{bottom:693.575685px;}
.y3a{bottom:703.236000px;}
.ya5{bottom:707.400000px;}
.y58{bottom:710.117231px;}
.y5d{bottom:723.900364px;}
.y90{bottom:727.292248px;}
.y6e{bottom:742.644323px;}
.y76{bottom:755.301907px;}
.y39{bottom:770.484000px;}
.y78{bottom:782.780344px;}
.ya4{bottom:790.339500px;}
.y5a{bottom:791.951201px;}
.y7b{bottom:803.171652px;}
.y81{bottom:804.797932px;}
.y59{bottom:814.389661px;}
.y4b{bottom:819.915361px;}
.y91{bottom:820.846518px;}
.y6f{bottom:834.239115px;}
.y38{bottom:837.732000px;}
.y7a{bottom:846.896698px;}
.y5b{bottom:847.948568px;}
.ya3{bottom:873.277500px;}
.y79{bottom:874.739319px;}
.y37{bottom:904.980000px;}
.y82{bottom:916.020179px;}
.y94{bottom:921.333958px;}
.y70{bottom:925.833907px;}
.y5e{bottom:929.350123px;}
.ya2{bottom:956.217000px;}
.y4c{bottom:957.746699px;}
.y36{bottom:972.228000px;}
.y60{bottom:999.775704px;}
.y73{bottom:1005.695372px;}
.y72{bottom:1033.326693px;}
.y74{bottom:1034.870797px;}
.ya1{bottom:1039.156500px;}
.y35{bottom:1039.476000px;}
.y34{bottom:1106.724000px;}
.ya0{bottom:1122.094500px;}
.y33{bottom:1173.972000px;}
.y32{bottom:1241.218500px;}
.y31{bottom:1308.466500px;}
.y30{bottom:1375.714500px;}
.y2f{bottom:1442.962500px;}
.y2e{bottom:1510.210500px;}
.y2d{bottom:1577.458500px;}
.y2c{bottom:1644.706500px;}
.y2b{bottom:1711.954500px;}
.y2a{bottom:1779.202500px;}
.y29{bottom:1888.969500px;}
.y28{bottom:1956.217500px;}
.y27{bottom:2023.465500px;}
.y26{bottom:2090.712000px;}
.y87{bottom:2156.035123px;}
.y25{bottom:2157.960000px;}
.y24{bottom:2225.208000px;}
.y23{bottom:2343.480000px;}
.y22{bottom:2410.728000px;}
.y21{bottom:2477.976000px;}
.y20{bottom:2545.222500px;}
.y1f{bottom:2612.470500px;}
.y1e{bottom:2679.718500px;}
.y1d{bottom:2746.966500px;}
.y1c{bottom:2814.214500px;}
.y1b{bottom:2881.462500px;}
.y1a{bottom:2948.710500px;}
.y19{bottom:3015.958500px;}
.y18{bottom:3083.205000px;}
.y17{bottom:3150.453000px;}
.y16{bottom:3217.701000px;}
.y86{bottom:3230.823000px;}
.y15{bottom:3284.949000px;}
.y85{bottom:3313.762500px;}
.y84{bottom:3396.702000px;}
.y14{bottom:3403.221000px;}
.y13{bottom:3470.469000px;}
.y61{bottom:3486.808404px;}
.y43{bottom:3486.809054px;}
.y12{bottom:3537.715500px;}
.y11{bottom:3604.963500px;}
.y10{bottom:3672.211500px;}
.yf{bottom:3739.459500px;}
.ye{bottom:3806.707500px;}
.yd{bottom:3873.955500px;}
.yc{bottom:3941.203500px;}
.yb{bottom:4008.451500px;}
.ya{bottom:4075.698000px;}
.y9{bottom:4142.946000px;}
.y8{bottom:4210.194000px;}
.y7{bottom:4277.442000px;}
.y6{bottom:4344.690000px;}
.y5{bottom:4411.938000px;}
.y4{bottom:4479.186000px;}
.y3{bottom:4770.877500px;}
.y2{bottom:4843.404000px;}
.y1{bottom:4941.666000px;}
.hd{height:72.457200px;}
.h11{height:74.897136px;}
.h1c{height:76.335072px;}
.hc{height:80.508000px;}
.h16{height:83.274624px;}
.h4{height:93.582157px;}
.h9{height:96.609600px;}
.h1a{height:97.153728px;}
.hb{height:98.219760px;}
.hf{height:99.862848px;}
.h1b{height:103.586367px;}
.h1e{height:110.054724px;}
.h1d{height:110.203447px;}
.h12{height:124.828560px;}
.h13{height:132.261386px;}
.h14{height:133.867800px;}
.h19{height:138.791040px;}
.h17{height:152.670144px;}
.h5{height:158.704861px;}
.h7{height:160.418273px;}
.h6{height:160.632450px;}
.h18{height:176.660392px;}
.ha{height:177.117600px;}
.h10{height:183.081888px;}
.h3{height:190.016477px;}
.h2{height:273.897828px;}
.h15{height:962.971271px;}
.h8{height:1036.012166px;}
.he{height:1080.137403px;}
.h1{height:5102.250000px;}
.h0{height:5102.355000px;}
.w2{width:1125.122886px;}
.w4{width:1125.159712px;}
.w3{width:1125.183315px;}
.w1{width:3826.500000px;}
.w0{width:3826.770000px;}
.x0{left:0.000000px;}
.x3a{left:49.159678px;}
.x3b{left:55.157240px;}
.xf{left:57.031741px;}
.x28{left:58.992872px;}
.x39{left:85.009512px;}
.xe{left:98.622300px;}
.x27{left:101.943324px;}
.xd{left:114.267898px;}
.x8{left:122.012075px;}
.x37{left:127.297407px;}
.xc{left:129.913495px;}
.x4{left:134.437500px;}
.x9{left:137.657673px;}
.x1f{left:140.624044px;}
.xb{left:145.559093px;}
.x2c{left:159.786929px;}
.xa{left:161.204691px;}
.x29{left:169.788407px;}
.x20{left:193.459616px;}
.x21{left:246.266455px;}
.x2d{left:263.301469px;}
.x7{left:278.405155px;}
.x22{left:299.116393px;}
.x26{left:314.760415px;}
.x10{left:318.281774px;}
.x23{left:351.923231px;}
.x3c{left:370.049710px;}
.x1d{left:378.553060px;}
.x2e{left:382.906858px;}
.x24{left:399.012245px;}
.x1a{left:442.478299px;}
.x2a{left:458.486959px;}
.x2f{left:485.303622px;}
.x3e{left:520.889220px;}
.x1c{left:540.443380px;}
.x19{left:565.666666px;}
.x38{left:585.888112px;}
.x3f{left:631.604236px;}
.x30{left:647.391059px;}
.x31{left:665.331101px;}
.x2b{left:680.504631px;}
.x40{left:715.027564px;}
.x41{left:781.889387px;}
.x1{left:788.832000px;}
.x18{left:791.733382px;}
.x32{left:795.521169px;}
.x42{left:838.418473px;}
.x1b{left:844.699989px;}
.x16{left:864.134700px;}
.x15{left:879.642710px;}
.x43{left:887.933014px;}
.x11{left:912.287942px;}
.x3d{left:920.442928px;}
.x6{left:922.569235px;}
.x25{left:927.209931px;}
.x2{left:933.421500px;}
.x44{left:939.816978px;}
.x12{left:941.858654px;}
.x13{left:952.046206px;}
.x14{left:992.905164px;}
.x34{left:1020.639396px;}
.x17{left:1034.516261px;}
.x33{left:1041.641772px;}
.x35{left:1097.478851px;}
.x3{left:1356.156000px;}
.x36{left:1406.583000px;}
.x5{left:1424.364519px;}
.x45{left:1452.849000px;}
.x1e{left:2559.796045px;}
@media print{
.v2{vertical-align:-57.573333pt;}
.v9{vertical-align:-36.410667pt;}
.v3{vertical-align:-28.554667pt;}
.v4{vertical-align:-24.739438pt;}
.v5{vertical-align:-23.797333pt;}
.v8{vertical-align:-10.662332pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.324665pt;}
.v7{vertical-align:31.625563pt;}
.v1{vertical-align:69.088000pt;}
.ls2a{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000220pt;}
.ls1f{letter-spacing:0.001389pt;}
.ls1a{letter-spacing:0.001510pt;}
.ls16{letter-spacing:0.002047pt;}
.ls28{letter-spacing:0.003393pt;}
.ls5{letter-spacing:0.004099pt;}
.ls18{letter-spacing:0.621942pt;}
.ls8{letter-spacing:2.650431pt;}
.ls0{letter-spacing:2.660640pt;}
.ls1{letter-spacing:2.662428pt;}
.ls29{letter-spacing:5.685201pt;}
.ls19{letter-spacing:16.280722pt;}
.ls25{letter-spacing:41.617095pt;}
.ls27{letter-spacing:42.656899pt;}
.ls26{letter-spacing:44.646232pt;}
.ls17{letter-spacing:45.681325pt;}
.lsc{letter-spacing:49.997725pt;}
.ls1d{letter-spacing:51.820713pt;}
.ls2{letter-spacing:53.942938pt;}
.ls24{letter-spacing:54.486428pt;}
.ls1e{letter-spacing:56.974371pt;}
.ls23{letter-spacing:56.995704pt;}
.ls1c{letter-spacing:58.630658pt;}
.ls14{letter-spacing:60.292640pt;}
.ls15{letter-spacing:60.297974pt;}
.ls13{letter-spacing:60.765725pt;}
.ls20{letter-spacing:61.822528pt;}
.ls21{letter-spacing:62.555991pt;}
.ls22{letter-spacing:62.688899pt;}
.lsa{letter-spacing:62.703764pt;}
.ls9{letter-spacing:62.708640pt;}
.ls12{letter-spacing:67.593935pt;}
.ls1b{letter-spacing:71.199250pt;}
.lsb{letter-spacing:72.125725pt;}
.lsf{letter-spacing:78.598543pt;}
.ls4{letter-spacing:112.416695pt;}
.lsd{letter-spacing:129.887764pt;}
.ls11{letter-spacing:129.963876pt;}
.ls3{letter-spacing:132.149784pt;}
.ls10{letter-spacing:161.717052pt;}
.ls7{letter-spacing:170.384695pt;}
.ls6{letter-spacing:190.117784pt;}
.ws1a{word-spacing:-121.195399pt;}
.ws58{word-spacing:-101.001768pt;}
.ws26{word-spacing:-0.190379pt;}
.ws4{word-spacing:-0.158658pt;}
.ws27{word-spacing:-0.133265pt;}
.ws3{word-spacing:-0.132198pt;}
.ws65{word-spacing:-0.111060pt;}
.ws53{word-spacing:0.000000pt;}
.ws60{word-spacing:14.503661pt;}
.ws5f{word-spacing:18.459095pt;}
.ws5e{word-spacing:18.459164pt;}
.ws7d{word-spacing:30.537707pt;}
.ws7a{word-spacing:36.486611pt;}
.ws7c{word-spacing:36.618809pt;}
.ws77{word-spacing:36.650029pt;}
.ws78{word-spacing:36.808687pt;}
.ws75{word-spacing:38.553926pt;}
.ws76{word-spacing:38.712585pt;}
.ws2{word-spacing:40.140508pt;}
.ws20{word-spacing:40.931528pt;}
.ws30{word-spacing:41.502666pt;}
.ws79{word-spacing:42.567713pt;}
.ws5a{word-spacing:42.679038pt;}
.ws7b{word-spacing:42.699911pt;}
.ws6c{word-spacing:42.832109pt;}
.ws57{word-spacing:42.837696pt;}
.ws59{word-spacing:42.874769pt;}
.ws73{word-spacing:42.964307pt;}
.ws3f{word-spacing:43.216078pt;}
.ws5b{word-spacing:43.789645pt;}
.ws66{word-spacing:44.265619pt;}
.ws51{word-spacing:45.500629pt;}
.ws2b{word-spacing:47.723430pt;}
.ws22{word-spacing:47.785179pt;}
.ws4d{word-spacing:47.975558pt;}
.ws62{word-spacing:47.987826pt;}
.ws1{word-spacing:48.165938pt;}
.ws72{word-spacing:49.706398pt;}
.ws29{word-spacing:49.823152pt;}
.ws69{word-spacing:51.503326pt;}
.ws74{word-spacing:51.563893pt;}
.ws6d{word-spacing:51.722551pt;}
.ws15{word-spacing:52.544659pt;}
.ws52{word-spacing:52.735038pt;}
.ws2a{word-spacing:53.496555pt;}
.ws67{word-spacing:55.847663pt;}
.ws6a{word-spacing:56.799612pt;}
.ws4e{word-spacing:57.304139pt;}
.ws63{word-spacing:57.434244pt;}
.ws4f{word-spacing:57.494518pt;}
.ws61{word-spacing:57.592902pt;}
.ws70{word-spacing:59.496800pt;}
.ws6e{word-spacing:59.523130pt;}
.ws71{word-spacing:59.655458pt;}
.ws25{word-spacing:59.779069pt;}
.ws18{word-spacing:60.350206pt;}
.ws2f{word-spacing:60.921344pt;}
.ws49{word-spacing:63.967411pt;}
.ws48{word-spacing:63.987572pt;}
.ws28{word-spacing:64.157790pt;}
.ws38{word-spacing:66.251962pt;}
.ws39{word-spacing:66.442341pt;}
.ws64{word-spacing:66.795074pt;}
.ws68{word-spacing:66.953732pt;}
.ws2c{word-spacing:69.107650pt;}
.ws47{word-spacing:69.424233pt;}
.ws16{word-spacing:70.197067pt;}
.ws34{word-spacing:71.201821pt;}
.wsf{word-spacing:72.534475pt;}
.ws21{word-spacing:73.295992pt;}
.ws9{word-spacing:74.819026pt;}
.wsb{word-spacing:75.009405pt;}
.ws56{word-spacing:75.679930pt;}
.ws55{word-spacing:75.838588pt;}
.ws54{word-spacing:76.244302pt;}
.ws0{word-spacing:76.329485pt;}
.ws40{word-spacing:76.342059pt;}
.ws6f{word-spacing:77.388128pt;}
.ws6b{word-spacing:77.539456pt;}
.ws24{word-spacing:78.626610pt;}
.ws10{word-spacing:80.530402pt;}
.ws3a{word-spacing:83.766848pt;}
.ws4c{word-spacing:84.147606pt;}
.ws23{word-spacing:84.718744pt;}
.ws3b{word-spacing:85.099502pt;}
.ws3c{word-spacing:85.192905pt;}
.ws19{word-spacing:88.145570pt;}
.ws1b{word-spacing:88.228485pt;}
.ws4a{word-spacing:92.333912pt;}
.ws31{word-spacing:93.262238pt;}
.ws32{word-spacing:93.285808pt;}
.wse{word-spacing:95.189600pt;}
.ws1c{word-spacing:95.951117pt;}
.ws50{word-spacing:96.522254pt;}
.ws1f{word-spacing:97.664530pt;}
.ws2e{word-spacing:98.045288pt;}
.ws17{word-spacing:101.281734pt;}
.wsd{word-spacing:104.518181pt;}
.ws37{word-spacing:105.660456pt;}
.ws35{word-spacing:105.850835pt;}
.ws36{word-spacing:105.895382pt;}
.ws3e{word-spacing:117.654346pt;}
.ws4b{word-spacing:118.035104pt;}
.ws1d{word-spacing:122.604205pt;}
.ws1e{word-spacing:122.868485pt;}
.ws2d{word-spacing:126.982926pt;}
.ws41{word-spacing:127.132716pt;}
.ws42{word-spacing:127.173306pt;}
.ws8{word-spacing:127.554064pt;}
.wsa{word-spacing:128.505960pt;}
.ws14{word-spacing:131.361648pt;}
.ws46{word-spacing:134.407715pt;}
.ws6{word-spacing:139.738333pt;}
.ws5{word-spacing:144.117054pt;}
.ws13{word-spacing:146.972742pt;}
.ws12{word-spacing:147.924638pt;}
.ws45{word-spacing:154.207152pt;}
.ws11{word-spacing:162.012699pt;}
.ws3d{word-spacing:164.233349pt;}
.ws43{word-spacing:166.201042pt;}
.ws44{word-spacing:175.339243pt;}
.ws7{word-spacing:182.764032pt;}
.wsc{word-spacing:185.238962pt;}
.ws33{word-spacing:268.434672pt;}
.ws5d{word-spacing:346.892486pt;}
.ws5c{word-spacing:477.883024pt;}
._36{margin-left:-958.159459pt;}
._37{margin-left:-820.438490pt;}
._35{margin-left:-792.521782pt;}
._34{margin-left:-764.834298pt;}
._12{margin-left:-18.657162pt;}
._6{margin-left:-16.754929pt;}
._4d{margin-left:-15.724364pt;}
._5{margin-left:-14.606379pt;}
._23{margin-left:-11.765610pt;}
._8{margin-left:-9.542738pt;}
._1{margin-left:-8.554166pt;}
._a{margin-left:-7.615168pt;}
._3{margin-left:-6.282514pt;}
._4{margin-left:-4.949859pt;}
._c{margin-left:-3.997963pt;}
._7{margin-left:-2.641531pt;}
._0{margin-left:-1.645032pt;}
._17{width:1.903792pt;}
._10{width:2.977686pt;}
._18{width:3.950407pt;}
._e{width:4.949859pt;}
._9{width:6.092134pt;}
._2b{width:7.040356pt;}
._1c{width:8.376685pt;}
._49{width:10.424179pt;}
._31{width:11.993890pt;}
._4c{width:37.565118pt;}
._3f{width:39.526527pt;}
._25{width:42.615101pt;}
._2c{width:44.646953pt;}
._2d{width:45.857609pt;}
._33{width:46.764902pt;}
._30{width:49.974286pt;}
._43{width:51.645126pt;}
._4a{width:52.604174pt;}
._41{width:54.927330pt;}
._46{width:56.772812pt;}
._4b{width:57.689540pt;}
._45{width:58.766476pt;}
._1a{width:62.468156pt;}
._20{width:63.991189pt;}
._24{width:69.303435pt;}
._48{width:70.261100pt;}
._47{width:73.333463pt;}
._2{width:75.671472pt;}
._40{width:76.840246pt;}
._14{width:77.865093pt;}
._f{width:80.316244pt;}
._44{width:81.222220pt;}
._21{width:85.197723pt;}
._22{width:86.427802pt;}
._15{width:87.574432pt;}
._1b{width:89.287845pt;}
._2a{width:91.738996pt;}
._3c{width:94.592441pt;}
._32{width:97.616973pt;}
._19{width:102.062906pt;}
._42{width:103.162222pt;}
._1e{width:106.993110pt;}
._13{width:117.463966pt;}
._28{width:119.153601pt;}
._3a{width:128.746580pt;}
._29{width:132.812145pt;}
._3e{width:133.982507pt;}
._2f{width:135.648211pt;}
._3d{width:154.131800pt;}
._2e{width:164.981748pt;}
._1d{width:171.698260pt;}
._16{width:188.398810pt;}
._b{width:215.652077pt;}
._3b{width:220.970079pt;}
._27{width:269.624503pt;}
._1f{width:276.026062pt;}
._d{width:290.899418pt;}
._26{width:322.311986pt;}
._39{width:450.868752pt;}
._11{width:462.377459pt;}
._38{width:1031.627451pt;}
.fs17{font-size:59.371723pt;}
.fs15{font-size:75.564011pt;}
.fsb{font-size:80.508000pt;}
.fse{font-size:83.219040pt;}
.fs16{font-size:84.816747pt;}
.fsa{font-size:89.453333pt;}
.fs10{font-size:92.527360pt;}
.fs6{font-size:107.344000pt;}
.fs14{font-size:107.948587pt;}
.fs9{font-size:109.133067pt;}
.fsc{font-size:110.958720pt;}
.fs3{font-size:111.060267pt;}
.fs12{font-size:118.743445pt;}
.fs5{font-size:132.197867pt;}
.fs2{font-size:133.265067pt;}
.fs8{font-size:137.758133pt;}
.fsf{font-size:138.698400pt;}
.fs13{font-size:154.212267pt;}
.fs4{font-size:158.658133pt;}
.fs11{font-size:169.633493pt;}
.fs1{font-size:190.379200pt;}
.fs7{font-size:196.797333pt;}
.fsd{font-size:203.424320pt;}
.fs0{font-size:329.006400pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:22.613783pt;}
.y45{bottom:26.234985pt;}
.y67{bottom:27.118427pt;}
.yad{bottom:39.825333pt;}
.y88{bottom:81.286732pt;}
.y44{bottom:92.521303pt;}
.y66{bottom:94.166383pt;}
.y65{bottom:94.191924pt;}
.y62{bottom:104.356945pt;}
.y63{bottom:104.382485pt;}
.y64{bottom:104.408026pt;}
.y46{bottom:116.229931pt;}
.y99{bottom:139.392336pt;}
.y71{bottom:140.398688pt;}
.y42{bottom:146.892000pt;}
.y98{bottom:147.119105pt;}
.y8a{bottom:147.525894pt;}
.y54{bottom:165.810140pt;}
.y68{bottom:171.622732pt;}
.yac{bottom:173.689333pt;}
.y97{bottom:178.985624pt;}
.y53{bottom:197.503176pt;}
.y41{bottom:206.668000pt;}
.y96{bottom:210.852143pt;}
.yab{bottom:217.525333pt;}
.y7c{bottom:221.054842pt;}
.y52{bottom:229.196212pt;}
.y8b{bottom:230.685245pt;}
.y47{bottom:238.746675pt;}
.y9a{bottom:240.354166pt;}
.y95{bottom:243.836099pt;}
.y69{bottom:253.040325pt;}
.y51{bottom:260.889249pt;}
.yaa{bottom:261.361333pt;}
.y40{bottom:266.444000pt;}
.y83{bottom:280.252908pt;}
.y50{bottom:292.582285pt;}
.y4d{bottom:292.724852pt;}
.ya9{bottom:305.197333pt;}
.y8c{bottom:313.844596pt;}
.y7d{bottom:319.919061pt;}
.y4f{bottom:324.275322pt;}
.y3f{bottom:326.220000pt;}
.y9b{bottom:330.526577pt;}
.y6a{bottom:334.457917pt;}
.y92{bottom:334.857480pt;}
.y93{bottom:353.474765pt;}
.y4e{bottom:355.968358pt;}
.y48{bottom:361.263420pt;}
.y55{bottom:373.930152pt;}
.y3e{bottom:385.996000pt;}
.y5f{bottom:393.393588pt;}
.y8d{bottom:397.003946pt;}
.ya8{bottom:407.629333pt;}
.y9c{bottom:409.209892pt;}
.y6b{bottom:415.875510pt;}
.y7e{bottom:418.783281pt;}
.y3d{bottom:445.772000pt;}
.y9d{bottom:474.878182pt;}
.y8e{bottom:480.163297pt;}
.ya7{bottom:481.353333pt;}
.y49{bottom:483.780165pt;}
.y6c{bottom:497.293102pt;}
.y3c{bottom:505.548000pt;}
.y56{bottom:508.698571pt;}
.y7f{bottom:517.647500pt;}
.y5c{bottom:520.950246pt;}
.y9e{bottom:530.068852pt;}
.y77{bottom:549.253084pt;}
.ya6{bottom:555.076000pt;}
.y8f{bottom:563.322648pt;}
.y3b{bottom:565.324000pt;}
.y6d{bottom:578.710695pt;}
.y57{bottom:582.208618pt;}
.y9f{bottom:582.820149pt;}
.y75{bottom:589.961880pt;}
.y4a{bottom:606.296910pt;}
.y80{bottom:616.511720pt;}
.y3a{bottom:625.098667pt;}
.ya5{bottom:628.800000pt;}
.y58{bottom:631.215316pt;}
.y5d{bottom:643.466990pt;}
.y90{bottom:646.481999pt;}
.y6e{bottom:660.128287pt;}
.y76{bottom:671.379473pt;}
.y39{bottom:684.874667pt;}
.y78{bottom:695.804750pt;}
.ya4{bottom:702.524000pt;}
.y5a{bottom:703.956623pt;}
.y7b{bottom:713.930357pt;}
.y81{bottom:715.375939pt;}
.y59{bottom:723.901921pt;}
.y4b{bottom:728.813655pt;}
.y91{bottom:729.641349pt;}
.y6f{bottom:741.545880pt;}
.y38{bottom:744.650667pt;}
.y7a{bottom:752.797065pt;}
.y5b{bottom:753.732061pt;}
.ya3{bottom:776.246667pt;}
.y79{bottom:777.546061pt;}
.y37{bottom:804.426667pt;}
.y82{bottom:814.240159pt;}
.y94{bottom:818.963519pt;}
.y70{bottom:822.963472pt;}
.y5e{bottom:826.088998pt;}
.ya2{bottom:849.970667pt;}
.y4c{bottom:851.330399pt;}
.y36{bottom:864.202667pt;}
.y60{bottom:888.689515pt;}
.y73{bottom:893.951441pt;}
.y72{bottom:918.512616pt;}
.y74{bottom:919.885153pt;}
.ya1{bottom:923.694667pt;}
.y35{bottom:923.978667pt;}
.y34{bottom:983.754667pt;}
.ya0{bottom:997.417333pt;}
.y33{bottom:1043.530667pt;}
.y32{bottom:1103.305333pt;}
.y31{bottom:1163.081333pt;}
.y30{bottom:1222.857333pt;}
.y2f{bottom:1282.633333pt;}
.y2e{bottom:1342.409333pt;}
.y2d{bottom:1402.185333pt;}
.y2c{bottom:1461.961333pt;}
.y2b{bottom:1521.737333pt;}
.y2a{bottom:1581.513333pt;}
.y29{bottom:1679.084000pt;}
.y28{bottom:1738.860000pt;}
.y27{bottom:1798.636000pt;}
.y26{bottom:1858.410667pt;}
.y87{bottom:1916.475665pt;}
.y25{bottom:1918.186667pt;}
.y24{bottom:1977.962667pt;}
.y23{bottom:2083.093333pt;}
.y22{bottom:2142.869333pt;}
.y21{bottom:2202.645333pt;}
.y20{bottom:2262.420000pt;}
.y1f{bottom:2322.196000pt;}
.y1e{bottom:2381.972000pt;}
.y1d{bottom:2441.748000pt;}
.y1c{bottom:2501.524000pt;}
.y1b{bottom:2561.300000pt;}
.y1a{bottom:2621.076000pt;}
.y19{bottom:2680.852000pt;}
.y18{bottom:2740.626667pt;}
.y17{bottom:2800.402667pt;}
.y16{bottom:2860.178667pt;}
.y86{bottom:2871.842667pt;}
.y15{bottom:2919.954667pt;}
.y85{bottom:2945.566667pt;}
.y84{bottom:3019.290667pt;}
.y14{bottom:3025.085333pt;}
.y13{bottom:3084.861333pt;}
.y61{bottom:3099.385248pt;}
.y43{bottom:3099.385825pt;}
.y12{bottom:3144.636000pt;}
.y11{bottom:3204.412000pt;}
.y10{bottom:3264.188000pt;}
.yf{bottom:3323.964000pt;}
.ye{bottom:3383.740000pt;}
.yd{bottom:3443.516000pt;}
.yc{bottom:3503.292000pt;}
.yb{bottom:3563.068000pt;}
.ya{bottom:3622.842667pt;}
.y9{bottom:3682.618667pt;}
.y8{bottom:3742.394667pt;}
.y7{bottom:3802.170667pt;}
.y6{bottom:3861.946667pt;}
.y5{bottom:3921.722667pt;}
.y4{bottom:3981.498667pt;}
.y3{bottom:4240.780000pt;}
.y2{bottom:4305.248000pt;}
.y1{bottom:4392.592000pt;}
.hd{height:64.406400pt;}
.h11{height:66.575232pt;}
.h1c{height:67.853397pt;}
.hc{height:71.562667pt;}
.h16{height:74.021888pt;}
.h4{height:83.184140pt;}
.h9{height:85.875200pt;}
.h1a{height:86.358869pt;}
.hb{height:87.306453pt;}
.hf{height:88.766976pt;}
.h1b{height:92.076771pt;}
.h1e{height:97.826421pt;}
.h1d{height:97.958619pt;}
.h12{height:110.958720pt;}
.h13{height:117.565677pt;}
.h14{height:118.993600pt;}
.h19{height:123.369813pt;}
.h17{height:135.706795pt;}
.h5{height:141.070987pt;}
.h7{height:142.594021pt;}
.h6{height:142.784400pt;}
.h18{height:157.031460pt;}
.ha{height:157.437867pt;}
.h10{height:162.739456pt;}
.h3{height:168.903535pt;}
.h2{height:243.464736pt;}
.h15{height:855.974463pt;}
.h8{height:920.899703pt;}
.he{height:960.122136pt;}
.h1{height:4535.333333pt;}
.h0{height:4535.426667pt;}
.w2{width:1000.109232pt;}
.w4{width:1000.141966pt;}
.w3{width:1000.162947pt;}
.w1{width:3401.333333pt;}
.w0{width:3401.573333pt;}
.x0{left:0.000000pt;}
.x3a{left:43.697491pt;}
.x3b{left:49.028658pt;}
.xf{left:50.694881pt;}
.x28{left:52.438109pt;}
.x39{left:75.564011pt;}
.xe{left:87.664267pt;}
.x27{left:90.616288pt;}
.xd{left:101.571465pt;}
.x8{left:108.455178pt;}
.x37{left:113.153251pt;}
.xc{left:115.478663pt;}
.x4{left:119.500000pt;}
.x9{left:122.362376pt;}
.x1f{left:124.999150pt;}
.xb{left:129.385860pt;}
.x2c{left:142.032826pt;}
.xa{left:143.293058pt;}
.x29{left:150.923028pt;}
.x20{left:171.964103pt;}
.x21{left:218.903515pt;}
.x2d{left:234.045750pt;}
.x7{left:247.471249pt;}
.x22{left:265.881238pt;}
.x26{left:279.787036pt;}
.x10{left:282.917132pt;}
.x23{left:312.820650pt;}
.x3c{left:328.933075pt;}
.x1d{left:336.491609pt;}
.x2e{left:340.361652pt;}
.x24{left:354.677552pt;}
.x1a{left:393.314043pt;}
.x2a{left:407.543964pt;}
.x2f{left:431.380997pt;}
.x3e{left:463.012640pt;}
.x1c{left:480.394115pt;}
.x19{left:502.814814pt;}
.x38{left:520.789433pt;}
.x3f{left:561.425988pt;}
.x30{left:575.458719pt;}
.x31{left:591.405423pt;}
.x2b{left:604.893005pt;}
.x40{left:635.580057pt;}
.x41{left:695.012788pt;}
.x1{left:701.184000pt;}
.x18{left:703.763006pt;}
.x32{left:707.129928pt;}
.x42{left:745.260865pt;}
.x1b{left:750.844435pt;}
.x16{left:768.119733pt;}
.x15{left:781.904632pt;}
.x43{left:789.273790pt;}
.x11{left:810.922615pt;}
.x3d{left:818.171491pt;}
.x6{left:820.061542pt;}
.x25{left:824.186605pt;}
.x2{left:829.708000pt;}
.x44{left:835.392869pt;}
.x12{left:837.207692pt;}
.x13{left:846.263294pt;}
.x14{left:882.582368pt;}
.x34{left:907.235019pt;}
.x17{left:919.570010pt;}
.x33{left:925.903797pt;}
.x35{left:975.536757pt;}
.x3{left:1205.472000pt;}
.x36{left:1250.296000pt;}
.x5{left:1266.101795pt;}
.x45{left:1291.421333pt;}
.x1e{left:2275.374263pt;}
}




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