
    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;}
.ff1{font-family:sans-serif;visibility:hidden;}
.ff2{font-family:sans-serif;visibility:hidden;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d451df3f21efb8a890098dd3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919000;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;}
.ff5{font-family:sans-serif;visibility:hidden;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_fd0771e0fb2ec05d16dd8d1a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.887000;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_2968efefafa7e0663cc3a940.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1.880823px;}
.ls4{letter-spacing:9.962338px;}
.ls6{letter-spacing:22.823781px;}
.ls1{letter-spacing:23.436305px;}
.ls7{letter-spacing:27.678305px;}
.ls5{letter-spacing:28.613781px;}
.ls8{letter-spacing:34.450893px;}
.ls3{letter-spacing:40.234893px;}
.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;}
}
.ws15{word-spacing:-0.059776px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:9.870566px;}
.ws1d{word-spacing:9.922750px;}
.ws14{word-spacing:9.930342px;}
.ws10{word-spacing:13.987490px;}
.ws41{word-spacing:14.465695px;}
.ws7{word-spacing:15.762931px;}
.ws9{word-spacing:15.924326px;}
.ws37{word-spacing:16.677392px;}
.ws13{word-spacing:16.856719px;}
.ws6b{word-spacing:16.928492px;}
.ws50{word-spacing:17.215373px;}
.ws49{word-spacing:18.291334px;}
.ws3{word-spacing:18.399053px;}
.wsd{word-spacing:18.452851px;}
.ws20{word-spacing:18.470660px;}
.ws2c{word-spacing:18.649987px;}
.ws44{word-spacing:18.769538px;}
.wsc{word-spacing:18.829440px;}
.ws5f{word-spacing:18.889090px;}
.ws3b{word-spacing:18.948865px;}
.ws23{word-spacing:19.008641px;}
.ws42{word-spacing:19.307519px;}
.wsf{word-spacing:19.367294px;}
.ws40{word-spacing:19.427070px;}
.ws1e{word-spacing:19.546621px;}
.ws1c{word-spacing:19.606397px;}
.ws5{word-spacing:19.744013px;}
.ws3d{word-spacing:19.785724px;}
.ws0{word-spacing:19.905275px;}
.ws3f{word-spacing:19.965050px;}
.ws1b{word-spacing:20.024826px;}
.ws12{word-spacing:20.084602px;}
.ws17{word-spacing:20.144377px;}
.ws22{word-spacing:20.443255px;}
.ws32{word-spacing:20.682358px;}
.ws53{word-spacing:20.801909px;}
.ws2b{word-spacing:21.041011px;}
.ws38{word-spacing:21.100787px;}
.ws6{word-spacing:21.196570px;}
.ws5e{word-spacing:21.339889px;}
.ws62{word-spacing:21.399665px;}
.ws2d{word-spacing:21.459440px;}
.ws35{word-spacing:21.519216px;}
.ws24{word-spacing:21.578992px;}
.ws1f{word-spacing:21.758318px;}
.ws4e{word-spacing:21.818094px;}
.ws26{word-spacing:21.877870px;}
.ws51{word-spacing:22.116972px;}
.ws43{word-spacing:22.176748px;}
.ws54{word-spacing:22.236523px;}
.ws2e{word-spacing:22.535401px;}
.ws2f{word-spacing:22.654952px;}
.ws36{word-spacing:22.774504px;}
.ws11{word-spacing:22.834279px;}
.ws4a{word-spacing:22.894055px;}
.ws21{word-spacing:23.013606px;}
.ws29{word-spacing:23.252708px;}
.ws27{word-spacing:23.312484px;}
.ws2{word-spacing:23.384371px;}
.ws4d{word-spacing:23.611362px;}
.ws31{word-spacing:23.790689px;}
.ws4f{word-spacing:23.850464px;}
.ws52{word-spacing:23.910240px;}
.wsb{word-spacing:24.101683px;}
.ws34{word-spacing:24.747098px;}
.wsa{word-spacing:25.231450px;}
.ws47{word-spacing:25.344854px;}
.ws45{word-spacing:25.524181px;}
.ws46{word-spacing:25.583957px;}
.ws8{word-spacing:25.608038px;}
.ws56{word-spacing:25.703508px;}
.ws2a{word-spacing:26.062162px;}
.ws1a{word-spacing:26.121937px;}
.ws19{word-spacing:26.181713px;}
.ws60{word-spacing:26.719693px;}
.ws28{word-spacing:26.779469px;}
.ws18{word-spacing:26.899020px;}
.ws48{word-spacing:26.899200px;}
.ws3a{word-spacing:27.078347px;}
.ws4c{word-spacing:27.138122px;}
.ws61{word-spacing:27.616327px;}
.ws39{word-spacing:29.588922px;}
.ws63{word-spacing:29.708473px;}
.ws5c{word-spacing:29.768249px;}
.ws33{word-spacing:30.007351px;}
.ws64{word-spacing:30.366005px;}
.ws66{word-spacing:30.545332px;}
.ws78{word-spacing:30.664883px;}
.ws5b{word-spacing:30.784434px;}
.ws59{word-spacing:30.844210px;}
.ws65{word-spacing:31.083312px;}
.ws30{word-spacing:31.382190px;}
.ws25{word-spacing:31.504255px;}
.ws3c{word-spacing:31.590332px;}
.ws1{word-spacing:32.330521px;}
.ws5a{word-spacing:36.642443px;}
.ws57{word-spacing:47.282500px;}
.ws5d{word-spacing:59.775600px;}
.ws55{word-spacing:60.552683px;}
.ws3e{word-spacing:71.730720px;}
.wse{word-spacing:94.684920px;}
.ws77{word-spacing:98.330862px;}
.ws75{word-spacing:107.596080px;}
.ws58{word-spacing:108.552490px;}
.ws76{word-spacing:138.141412px;}
.ws73{word-spacing:139.635802px;}
.ws69{word-spacing:157.867360px;}
.ws6a{word-spacing:158.046686px;}
.ws68{word-spacing:171.316870px;}
.ws4b{word-spacing:208.616844px;}
.ws70{word-spacing:238.205766px;}
.ws6d{word-spacing:249.802232px;}
.ws72{word-spacing:257.991490px;}
.ws74{word-spacing:264.327703px;}
.ws71{word-spacing:269.587956px;}
.ws6f{word-spacing:274.609106px;}
.ws6c{word-spacing:286.205573px;}
.ws6e{word-spacing:301.149473px;}
.ws67{word-spacing:360.805522px;}
._2{margin-left:-8.056807px;}
._4{margin-left:-6.336278px;}
._0{margin-left:-4.961375px;}
._45{margin-left:-3.819571px;}
._6{margin-left:-2.791550px;}
._1{margin-left:-1.673717px;}
._5{width:1.560154px;}
._d{width:2.791550px;}
._13{width:4.949399px;}
._46{width:6.814418px;}
._23{width:8.984567px;}
._22{width:10.920708px;}
._24{width:16.157218px;}
._10{width:20.700070px;}
._8{width:24.011986px;}
._b{width:25.882997px;}
._f{width:27.323516px;}
._14{width:30.246454px;}
._33{width:31.453499px;}
._7{width:32.978419px;}
._41{width:34.083816px;}
._e{width:35.381167px;}
._12{width:36.642443px;}
._3{width:43.072931px;}
._a{width:45.094992px;}
._9{width:46.105229px;}
._15{width:48.615545px;}
._44{width:59.775600px;}
._1e{width:71.730720px;}
._5c{width:75.018378px;}
._20{width:76.512768px;}
._25{width:80.697600px;}
._64{width:81.713245px;}
._18{width:83.207635px;}
._4b{width:86.363766px;}
._54{width:89.842727px;}
._19{width:91.456668px;}
._11{width:94.684920px;}
._47{width:110.046880px;}
._49{width:112.557455px;}
._53{width:116.084215px;}
._6b{width:121.882448px;}
._48{width:138.798943px;}
._52{width:142.265928px;}
._40{width:151.232268px;}
._21{width:153.563516px;}
._9f{width:154.579702px;}
._27{width:157.705936px;}
._29{width:161.991876px;}
._4d{width:184.168624px;}
._35{width:187.037852px;}
._50{width:191.102593px;}
._1a{width:196.835063px;}
._42{width:206.883416px;}
._4a{width:209.561278px;}
._1b{width:211.187195px;}
._3f{width:214.654180px;}
._4f{width:217.344082px;}
._2b{width:218.599369px;}
._43{width:220.153535px;}
._93{width:221.647925px;}
._2d{width:225.234461px;}
._95{width:227.924363px;}
._3e{width:229.956733px;}
._8f{width:233.244391px;}
._3d{width:234.918108px;}
._87{width:238.205766px;}
._1f{width:239.580605px;}
._3b{width:246.628138px;}
._79{width:249.915796px;}
._39{width:252.115578px;}
._3c{width:261.458474px;}
._51{width:265.463440px;}
._7d{width:271.261673px;}
._31{width:285.141527px;}
._17{width:291.824479px;}
._2a{width:295.064276px;}
._1c{width:297.042859px;}
._a7{width:301.382587px;}
._6a{width:302.643863px;}
._4c{width:307.306360px;}
._a0{width:327.624076px;}
._1d{width:331.515478px;}
._9c{width:334.737372px;}
._3a{width:337.851691px;}
._4e{width:340.541593px;}
._83{width:346.100724px;}
._a8{width:347.774441px;}
._75{width:356.262576px;}
._94{width:373.657276px;}
._34{width:375.402683px;}
._28{width:377.076400px;}
._71{width:384.835313px;}
._b0{width:391.769282px;}
._9b{width:394.692299px;}
._b1{width:396.730657px;}
._9d{width:401.327390px;}
._76{width:406.234978px;}
._55{width:407.825028px;}
._5a{width:429.487686px;}
._67{width:430.503871px;}
._57{width:431.937946px;}
._6e{width:434.628388px;}
._a3{width:443.409334px;}
._37{width:445.567322px;}
._99{width:446.691083px;}
._16{width:454.635311px;}
._70{width:462.962022px;}
._a6{width:465.831251px;}
._af{width:470.433972px;}
._69{width:472.585894px;}
._a2{width:475.987036px;}
._a4{width:482.568419px;}
._2c{width:484.122584px;}
._2f{width:487.966126px;}
._ae{width:490.339247px;}
._68{width:494.278448px;}
._6f{width:499.305587px;}
._a9{width:502.354142px;}
._36{width:504.942475px;}
._ad{width:506.956864px;}
._6d{width:512.755097px;}
._7f{width:514.303274px;}
._a5{width:519.091310px;}
._5e{width:522.737622px;}
._8c{width:526.742587px;}
._80{width:537.143542px;}
._ac{width:539.474790px;}
._5d{width:544.430177px;}
._89{width:546.827189px;}
._6c{width:549.158437px;}
._77{width:554.352926px;}
._ab{width:559.439840px;}
._5f{width:562.906825px;}
._62{width:566.254259px;}
._84{width:572.464933px;}
._86{width:578.986462px;}
._82{width:580.361300px;}
._7e{width:582.154568px;}
._8e{width:590.762255px;}
._aa{width:591.778440px;}
._63{width:596.620264px;}
._5b{width:611.564164px;}
._8a{width:613.237880px;}
._98{width:619.036114px;}
._8b{width:622.861752px;}
._a1{width:625.491878px;}
._9a{width:627.518261px;}
._85{width:628.893100px;}
._96{width:633.023604px;}
._60{width:635.952608px;}
._66{width:641.452504px;}
._91{width:644.673858px;}
._78{width:648.021292px;}
._7b{width:652.044160px;}
._61{width:654.722147px;}
._74{width:665.003550px;}
._90{width:671.160437px;}
._73{width:673.611236px;}
._58{width:675.344729px;}
._59{width:678.453060px;}
._97{width:687.957380px;}
._81{width:700.032052px;}
._7c{width:702.363300px;}
._92{width:705.830285px;}
._65{width:707.026337px;}
._88{width:709.536372px;}
._56{width:738.886256px;}
._9e{width:741.695645px;}
._26{width:745.640834px;}
._7a{width:751.134202px;}
._8d{width:752.515028px;}
._72{width:754.786501px;}
._c{width:756.639545px;}
._2e{width:758.193710px;}
._30{width:806.193517px;}
._32{width:817.371554px;}
._38{width:985.938746px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y14{bottom:40.207500px;}
.y92{bottom:85.039500px;}
.ye9{bottom:102.402000px;}
.y91{bottom:102.972000px;}
.ye8{bottom:124.519500px;}
.y90{bottom:130.554000px;}
.ye7{bottom:146.038500px;}
.ye6{bottom:167.557500px;}
.y8f{bottom:174.552000px;}
.y40{bottom:187.272000px;}
.ye5{bottom:189.076500px;}
.y3f{bottom:205.204500px;}
.y8e{bottom:208.336500px;}
.ye4{bottom:210.597000px;}
.y65{bottom:214.065000px;}
.y3e{bottom:223.137000px;}
.y8d{bottom:229.855500px;}
.y64{bottom:231.997500px;}
.ye3{bottom:232.116000px;}
.y3d{bottom:241.069500px;}
.y8c{bottom:251.374500px;}
.ye2{bottom:253.635000px;}
.y8b{bottom:272.893500px;}
.y63{bottom:274.570500px;}
.ye1{bottom:275.154000px;}
.y3c{bottom:279.909000px;}
.y8a{bottom:294.412500px;}
.ye0{bottom:296.673000px;}
.y3b{bottom:297.841500px;}
.y62{bottom:309.268500px;}
.y3a{bottom:315.774000px;}
.y89{bottom:315.931500px;}
.ydf{bottom:318.192000px;}
.y61{bottom:330.787500px;}
.y39{bottom:333.708000px;}
.y88{bottom:337.452000px;}
.yde{bottom:339.711000px;}
.y38{bottom:351.640500px;}
.y60{bottom:352.306500px;}
.y87{bottom:358.971000px;}
.ydd{bottom:361.231500px;}
.yb3{bottom:363.277500px;}
.y37{bottom:369.573000px;}
.y5f{bottom:373.825500px;}
.y86{bottom:380.490000px;}
.ydc{bottom:382.750500px;}
.yb2{bottom:387.187500px;}
.y5e{bottom:395.344500px;}
.y85{bottom:402.009000px;}
.ydb{bottom:404.269500px;}
.yb1{bottom:405.120000px;}
.y36{bottom:408.411000px;}
.y5d{bottom:416.863500px;}
.y84{bottom:423.528000px;}
.yda{bottom:425.788500px;}
.y35{bottom:426.345000px;}
.yb0{bottom:429.031500px;}
.y5c{bottom:438.981000px;}
.y83{bottom:445.047000px;}
.yaf{bottom:446.964000px;}
.yd9{bottom:447.307500px;}
.y34{bottom:456.232500px;}
.y82{bottom:466.566000px;}
.yd8{bottom:468.826500px;}
.yae{bottom:470.874000px;}
.y5b{bottom:474.069000px;}
.y33{bottom:474.165000px;}
.y81{bottom:488.086500px;}
.yd7{bottom:490.345500px;}
.y5a{bottom:492.001500px;}
.y32{bottom:492.097500px;}
.yad{bottom:494.784000px;}
.y80{bottom:509.605500px;}
.y59{bottom:509.935500px;}
.yd6{bottom:511.866000px;}
.yac{bottom:512.716500px;}
.yc8{bottom:515.410500px;}
.y104{bottom:527.305500px;}
.y31{bottom:530.937000px;}
.y7f{bottom:531.124500px;}
.yd5{bottom:533.385000px;}
.yab{bottom:536.628000px;}
.y58{bottom:537.516000px;}
.y103{bottom:549.421500px;}
.y7e{bottom:552.643500px;}
.yd4{bottom:554.904000px;}
.yaa{bottom:560.538000px;}
.y30{bottom:560.824500px;}
.y102{bottom:570.942000px;}
.y7d{bottom:574.761000px;}
.yd3{bottom:576.423000px;}
.y2f{bottom:578.757000px;}
.y57{bottom:579.345000px;}
.ya9{bottom:584.448000px;}
.y101{bottom:592.461000px;}
.y2e{bottom:596.689500px;}
.y56{bottom:597.277500px;}
.yd2{bottom:597.942000px;}
.y7c{bottom:611.047500px;}
.y100{bottom:613.980000px;}
.y55{bottom:615.210000px;}
.ya8{bottom:617.176500px;}
.yd1{bottom:619.461000px;}
.y7b{bottom:628.980000px;}
.y54{bottom:633.142500px;}
.yff{bottom:635.499000px;}
.y2d{bottom:635.529000px;}
.yd0{bottom:640.980000px;}
.y7a{bottom:646.912500px;}
.y53{bottom:651.075000px;}
.y2c{bottom:653.461500px;}
.yfe{bottom:657.018000px;}
.ycf{bottom:662.500500px;}
.ya7{bottom:663.088500px;}
.yee{bottom:665.488500px;}
.y52{bottom:669.007500px;}
.y2b{bottom:671.394000px;}
.y79{bottom:674.494500px;}
.yfd{bottom:678.537000px;}
.ya6{bottom:681.021000px;}
.yed{bottom:683.421000px;}
.yce{bottom:684.019500px;}
.y51{bottom:686.941500px;}
.yc7{bottom:687.637500px;}
.y2a{bottom:689.326500px;}
.ya5{bottom:698.953500px;}
.yfc{bottom:700.056000px;}
.y50{bottom:704.874000px;}
.ycd{bottom:705.538500px;}
.y13{bottom:710.464500px;}
.ya4{bottom:716.887500px;}
.y29{bottom:719.215500px;}
.y78{bottom:719.322000px;}
.yfb{bottom:721.576500px;}
.yc6{bottom:722.335500px;}
.y4f{bottom:722.806500px;}
.y12{bottom:726.903000px;}
.ycc{bottom:727.057500px;}
.ya3{bottom:734.820000px;}
.y28{bottom:737.148000px;}
.y4e{bottom:740.739000px;}
.yfa{bottom:743.095500px;}
.y11{bottom:743.341500px;}
.yc5{bottom:743.854500px;}
.ycb{bottom:748.576500px;}
.ya2{bottom:752.752500px;}
.y77{bottom:754.020000px;}
.y27{bottom:755.080500px;}
.y10{bottom:759.780000px;}
.yf9{bottom:764.614500px;}
.yc4{bottom:765.373500px;}
.yca{bottom:770.095500px;}
.ya1{bottom:770.685000px;}
.yec{bottom:770.694000px;}
.y4d{bottom:773.467500px;}
.y76{bottom:775.539000px;}
.yf{bottom:776.218500px;}
.y26{bottom:784.968000px;}
.yf8{bottom:786.133500px;}
.yc3{bottom:786.892500px;}
.ya0{bottom:788.617500px;}
.yc9{bottom:792.213000px;}
.ye{bottom:792.657000px;}
.yeb{bottom:792.810000px;}
.y75{bottom:797.058000px;}
.y9f{bottom:806.550000px;}
.yea{bottom:807.874500px;}
.yf7{bottom:808.251000px;}
.yc2{bottom:808.413000px;}
.yd{bottom:809.095500px;}
.y25{bottom:814.857000px;}
.y74{bottom:818.577000px;}
.y9e{bottom:824.484000px;}
.yc{bottom:825.532500px;}
.y4c{bottom:826.615500px;}
.yc1{bottom:829.932000px;}
.y73{bottom:840.096000px;}
.yb{bottom:841.971000px;}
.y9d{bottom:842.416500px;}
.y24{bottom:847.584000px;}
.yc0{bottom:851.451000px;}
.y4b{bottom:861.312000px;}
.y72{bottom:861.615000px;}
.y9c{bottom:863.935500px;}
.ya{bottom:865.398000px;}
.ybf{bottom:872.970000px;}
.yf6{bottom:881.188500px;}
.y4a{bottom:882.832500px;}
.y71{bottom:883.135500px;}
.y9b{bottom:886.053000px;}
.ybe{bottom:894.489000px;}
.y23{bottom:896.997000px;}
.yf5{bottom:903.306000px;}
.y49{bottom:904.351500px;}
.y70{bottom:905.251500px;}
.y22{bottom:914.931000px;}
.ybd{bottom:916.008000px;}
.y9{bottom:919.191000px;}
.y9a{bottom:922.186500px;}
.yf4{bottom:924.825000px;}
.y48{bottom:925.870500px;}
.y21{bottom:932.863500px;}
.ybc{bottom:937.527000px;}
.y6f{bottom:941.538000px;}
.yf3{bottom:946.344000px;}
.y47{bottom:947.389500px;}
.y20{bottom:950.796000px;}
.y8{bottom:954.718500px;}
.ybb{bottom:959.047500px;}
.y6e{bottom:959.470500px;}
.yf2{bottom:967.863000px;}
.y1f{bottom:968.728500px;}
.y46{bottom:968.908500px;}
.y99{bottom:971.599500px;}
.y6d{bottom:977.404500px;}
.yba{bottom:980.566500px;}
.y1e{bottom:986.661000px;}
.y7{bottom:988.327500px;}
.yf1{bottom:989.382000px;}
.y98{bottom:989.532000px;}
.y45{bottom:990.427500px;}
.y6{bottom:994.836000px;}
.yb9{bottom:1002.085500px;}
.y1d{bottom:1004.593500px;}
.yf0{bottom:1010.902500px;}
.y44{bottom:1011.946500px;}
.y4{bottom:1013.434500px;}
.y6c{bottom:1019.242500px;}
.y97{bottom:1019.421000px;}
.y5{bottom:1019.941500px;}
.y1c{bottom:1022.527500px;}
.yb8{bottom:1023.604500px;}
.yef{bottom:1032.421500px;}
.y43{bottom:1033.467000px;}
.y96{bottom:1037.353500px;}
.y1b{bottom:1040.460000px;}
.yb7{bottom:1045.123500px;}
.y6b{bottom:1053.940500px;}
.y42{bottom:1054.986000px;}
.y95{bottom:1055.286000px;}
.y1a{bottom:1058.392500px;}
.yb6{bottom:1066.642500px;}
.y3{bottom:1067.217000px;}
.y6a{bottom:1075.459500px;}
.y19{bottom:1076.325000px;}
.y41{bottom:1077.102000px;}
.yb5{bottom:1088.161500px;}
.y94{bottom:1094.124000px;}
.y18{bottom:1094.257500px;}
.y69{bottom:1096.978500px;}
.y2{bottom:1100.094000px;}
.yb4{bottom:1110.279000px;}
.y17{bottom:1112.190000px;}
.y68{bottom:1118.497500px;}
.y93{bottom:1124.013000px;}
.y16{bottom:1130.124000px;}
.y67{bottom:1140.016500px;}
.y66{bottom:1162.134000px;}
.y15{bottom:1162.851000px;}
.y1{bottom:1220.535000px;}
.h5{height:33.665702px;}
.h9{height:41.484266px;}
.h8{height:44.831700px;}
.hc{height:45.429570px;}
.h6{height:51.108480px;}
.h2{height:56.786820px;}
.h4{height:68.144640px;}
.h7{height:81.773340px;}
.h3{height:98.127780px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x6d{left:40.207500px;}
.xe{left:85.039500px;}
.x3c{left:94.006500px;}
.x38{left:106.285500px;}
.x17{left:107.457000px;}
.x2{left:115.533000px;}
.x70{left:118.099500px;}
.xd{left:122.400000px;}
.x2a{left:126.933000px;}
.x11{left:138.052500px;}
.x6a{left:139.312500px;}
.xc{left:143.128500px;}
.x33{left:153.246000px;}
.x46{left:168.874500px;}
.x27{left:174.600000px;}
.x1a{left:189.084000px;}
.x21{left:191.902500px;}
.x2c{left:194.665500px;}
.x5e{left:199.795500px;}
.x57{left:202.033500px;}
.x68{left:203.632500px;}
.x35{left:207.292500px;}
.x1d{left:211.366500px;}
.x58{left:216.019500px;}
.x63{left:217.887000px;}
.x5c{left:220.924500px;}
.x37{left:223.279500px;}
.x34{left:225.340500px;}
.x6f{left:227.967000px;}
.x3{left:233.881500px;}
.x71{left:244.431000px;}
.x22{left:247.503000px;}
.x15{left:257.239500px;}
.x52{left:265.317000px;}
.x2d{left:268.107000px;}
.x6{left:269.206500px;}
.x12{left:270.555000px;}
.x7{left:275.599500px;}
.x8{left:279.078000px;}
.x23{left:282.388500px;}
.x16{left:288.726000px;}
.x64{left:308.757000px;}
.x2e{left:321.667500px;}
.x59{left:325.996500px;}
.x50{left:328.164000px;}
.x1b{left:329.610000px;}
.x47{left:336.754500px;}
.x24{left:347.088000px;}
.x2b{left:352.128000px;}
.x5f{left:353.389500px;}
.x39{left:357.594000px;}
.x3d{left:364.855500px;}
.x3a{left:373.281000px;}
.x1{left:377.503500px;}
.x4{left:389.746500px;}
.xa{left:405.495000px;}
.x6e{left:412.927500px;}
.x65{left:413.962500px;}
.xb{left:416.023500px;}
.x18{left:423.051000px;}
.x25{left:433.284000px;}
.x66{left:439.792500px;}
.x48{left:441.958500px;}
.x5a{left:449.146500px;}
.x9{left:458.532000px;}
.x49{left:467.788500px;}
.x60{left:469.206000px;}
.x4a{left:476.919000px;}
.x4c{left:479.223000px;}
.x26{left:495.607500px;}
.x5{left:496.773000px;}
.x4d{left:505.054500px;}
.x61{left:506.823000px;}
.x36{left:508.755000px;}
.x4e{left:513.508500px;}
.x5d{left:515.781000px;}
.x1c{left:524.884500px;}
.x3e{left:529.572000px;}
.x2f{left:542.877000px;}
.x41{left:549.459000px;}
.x62{left:557.988000px;}
.x44{left:560.473500px;}
.x19{left:566.236500px;}
.xf{left:579.916500px;}
.x53{left:591.364500px;}
.x42{left:593.415000px;}
.x13{left:602.850000px;}
.x28{left:609.867000px;}
.x5b{left:615.150000px;}
.x6b{left:617.539500px;}
.x3f{left:621.186000px;}
.x31{left:622.309500px;}
.x3b{left:649.764000px;}
.x14{left:670.515000px;}
.x20{left:671.604000px;}
.x30{left:684.127500px;}
.x54{left:703.374000px;}
.x1e{left:708.537000px;}
.x51{left:711.481500px;}
.x67{left:724.198500px;}
.x4b{left:727.915500px;}
.x55{left:729.204000px;}
.x45{left:733.033500px;}
.x10{left:734.641500px;}
.x56{left:740.038500px;}
.x29{left:745.651500px;}
.x1f{left:756.379500px;}
.x32{left:763.560000px;}
.x43{left:778.017000px;}
.x40{left:785.902500px;}
.x4f{left:803.724000px;}
.x6c{left:990.532500px;}
.x69{left:1220.535000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1.671842pt;}
.ls4{letter-spacing:8.855412pt;}
.ls6{letter-spacing:20.287805pt;}
.ls1{letter-spacing:20.832271pt;}
.ls7{letter-spacing:24.602938pt;}
.ls5{letter-spacing:25.434472pt;}
.ls8{letter-spacing:30.623016pt;}
.ls3{letter-spacing:35.764349pt;}
.ws15{word-spacing:-0.053134pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:8.773837pt;}
.ws1d{word-spacing:8.820222pt;}
.ws14{word-spacing:8.826970pt;}
.ws10{word-spacing:12.433325pt;}
.ws41{word-spacing:12.858396pt;}
.ws7{word-spacing:14.011494pt;}
.ws9{word-spacing:14.154957pt;}
.ws37{word-spacing:14.824349pt;}
.ws13{word-spacing:14.983750pt;}
.ws6b{word-spacing:15.047549pt;}
.ws50{word-spacing:15.302554pt;}
.ws49{word-spacing:16.258963pt;}
.ws3{word-spacing:16.354714pt;}
.wsd{word-spacing:16.402534pt;}
.ws20{word-spacing:16.418365pt;}
.ws2c{word-spacing:16.577766pt;}
.ws44{word-spacing:16.684034pt;}
.wsc{word-spacing:16.737280pt;}
.ws5f{word-spacing:16.790302pt;}
.ws3b{word-spacing:16.843436pt;}
.ws23{word-spacing:16.896570pt;}
.ws42{word-spacing:17.162239pt;}
.wsf{word-spacing:17.215373pt;}
.ws40{word-spacing:17.268507pt;}
.ws1e{word-spacing:17.374774pt;}
.ws1c{word-spacing:17.427908pt;}
.ws5{word-spacing:17.550234pt;}
.ws3d{word-spacing:17.587310pt;}
.ws0{word-spacing:17.693578pt;}
.ws3f{word-spacing:17.746711pt;}
.ws1b{word-spacing:17.799845pt;}
.ws12{word-spacing:17.852979pt;}
.ws17{word-spacing:17.906113pt;}
.ws22{word-spacing:18.171782pt;}
.ws32{word-spacing:18.384318pt;}
.ws53{word-spacing:18.490586pt;}
.ws2b{word-spacing:18.703121pt;}
.ws38{word-spacing:18.756255pt;}
.ws6{word-spacing:18.841395pt;}
.ws5e{word-spacing:18.968790pt;}
.ws62{word-spacing:19.021924pt;}
.ws2d{word-spacing:19.075058pt;}
.ws35{word-spacing:19.128192pt;}
.ws24{word-spacing:19.181326pt;}
.ws1f{word-spacing:19.340727pt;}
.ws4e{word-spacing:19.393861pt;}
.ws26{word-spacing:19.446995pt;}
.ws51{word-spacing:19.659531pt;}
.ws43{word-spacing:19.712665pt;}
.ws54{word-spacing:19.765798pt;}
.ws2e{word-spacing:20.031468pt;}
.ws2f{word-spacing:20.137735pt;}
.ws36{word-spacing:20.244003pt;}
.ws11{word-spacing:20.297137pt;}
.ws4a{word-spacing:20.350271pt;}
.ws21{word-spacing:20.456539pt;}
.ws29{word-spacing:20.669074pt;}
.ws27{word-spacing:20.722208pt;}
.ws2{word-spacing:20.786108pt;}
.ws4d{word-spacing:20.987877pt;}
.ws31{word-spacing:21.147279pt;}
.ws4f{word-spacing:21.200413pt;}
.ws52{word-spacing:21.253547pt;}
.wsb{word-spacing:21.423718pt;}
.ws34{word-spacing:21.997421pt;}
.wsa{word-spacing:22.427955pt;}
.ws47{word-spacing:22.528759pt;}
.ws45{word-spacing:22.688161pt;}
.ws46{word-spacing:22.741295pt;}
.ws8{word-spacing:22.762701pt;}
.ws56{word-spacing:22.847563pt;}
.ws2a{word-spacing:23.166366pt;}
.ws1a{word-spacing:23.219500pt;}
.ws19{word-spacing:23.272634pt;}
.ws60{word-spacing:23.750838pt;}
.ws28{word-spacing:23.803972pt;}
.ws18{word-spacing:23.910240pt;}
.ws48{word-spacing:23.910400pt;}
.ws3a{word-spacing:24.069642pt;}
.ws4c{word-spacing:24.122775pt;}
.ws61{word-spacing:24.547846pt;}
.ws39{word-spacing:26.301264pt;}
.ws63{word-spacing:26.407532pt;}
.ws5c{word-spacing:26.460666pt;}
.ws33{word-spacing:26.673201pt;}
.ws64{word-spacing:26.992004pt;}
.ws66{word-spacing:27.151406pt;}
.ws78{word-spacing:27.257674pt;}
.ws5b{word-spacing:27.363941pt;}
.ws59{word-spacing:27.417075pt;}
.ws65{word-spacing:27.629611pt;}
.ws30{word-spacing:27.895280pt;}
.ws25{word-spacing:28.003782pt;}
.ws3c{word-spacing:28.080295pt;}
.ws1{word-spacing:28.738241pt;}
.ws5a{word-spacing:32.571060pt;}
.ws57{word-spacing:42.028889pt;}
.ws5d{word-spacing:53.133867pt;}
.ws55{word-spacing:53.824607pt;}
.ws3e{word-spacing:63.760640pt;}
.wse{word-spacing:84.164373pt;}
.ws77{word-spacing:87.405211pt;}
.ws75{word-spacing:95.640960pt;}
.ws58{word-spacing:96.491102pt;}
.ws76{word-spacing:122.792366pt;}
.ws73{word-spacing:124.120713pt;}
.ws69{word-spacing:140.326542pt;}
.ws6a{word-spacing:140.485943pt;}
.ws68{word-spacing:152.281662pt;}
.ws4b{word-spacing:185.437195pt;}
.ws70{word-spacing:211.738459pt;}
.ws6d{word-spacing:222.046429pt;}
.ws72{word-spacing:229.325769pt;}
.ws74{word-spacing:234.957958pt;}
.ws71{word-spacing:239.633739pt;}
.ws6f{word-spacing:244.096983pt;}
.ws6c{word-spacing:254.404954pt;}
.ws6e{word-spacing:267.688420pt;}
.ws67{word-spacing:320.716019pt;}
._2{margin-left:-7.161606pt;}
._4{margin-left:-5.632247pt;}
._0{margin-left:-4.410111pt;}
._45{margin-left:-3.395174pt;}
._6{margin-left:-2.481378pt;}
._1{margin-left:-1.487748pt;}
._5{width:1.386803pt;}
._d{width:2.481378pt;}
._13{width:4.399466pt;}
._46{width:6.057261pt;}
._23{width:7.986282pt;}
._22{width:9.707296pt;}
._24{width:14.361971pt;}
._10{width:18.400062pt;}
._8{width:21.343987pt;}
._b{width:23.007108pt;}
._f{width:24.287570pt;}
._14{width:26.885737pt;}
._33{width:27.958666pt;}
._7{width:29.314150pt;}
._41{width:30.296725pt;}
._e{width:31.449926pt;}
._12{width:32.571060pt;}
._3{width:38.287050pt;}
._a{width:40.084437pt;}
._9{width:40.982426pt;}
._15{width:43.213818pt;}
._44{width:53.133867pt;}
._1e{width:63.760640pt;}
._5c{width:66.683003pt;}
._20{width:68.011349pt;}
._25{width:71.731200pt;}
._64{width:72.633996pt;}
._18{width:73.962342pt;}
._4b{width:76.767792pt;}
._54{width:79.860202pt;}
._19{width:81.294816pt;}
._11{width:84.164373pt;}
._47{width:97.819449pt;}
._49{width:100.051071pt;}
._53{width:103.185969pt;}
._6b{width:108.339954pt;}
._48{width:123.376838pt;}
._52{width:126.458603pt;}
._40{width:134.428683pt;}
._21{width:136.500903pt;}
._9f{width:137.404179pt;}
._27{width:140.183054pt;}
._29{width:143.992779pt;}
._4d{width:163.705443pt;}
._35{width:166.255869pt;}
._50{width:169.868972pt;}
._1a{width:174.964500pt;}
._42{width:183.896370pt;}
._4a{width:186.276691pt;}
._1b{width:187.721951pt;}
._3f{width:190.803715pt;}
._4f{width:193.194739pt;}
._2b{width:194.310550pt;}
._43{width:195.692031pt;}
._93{width:197.020378pt;}
._2d{width:200.208410pt;}
._95{width:202.599434pt;}
._3e{width:204.405985pt;}
._8f{width:207.328348pt;}
._3d{width:208.816096pt;}
._87{width:211.738459pt;}
._1f{width:212.960538pt;}
._3b{width:219.225011pt;}
._79{width:222.147374pt;}
._39{width:224.102736pt;}
._3c{width:232.407533pt;}
._51{width:235.967502pt;}
._7d{width:241.121487pt;}
._31{width:253.459135pt;}
._17{width:259.399537pt;}
._2a{width:262.279357pt;}
._1c{width:264.038097pt;}
._a7{width:267.895633pt;}
._6a{width:269.016767pt;}
._4c{width:273.161209pt;}
._a0{width:291.221401pt;}
._1d{width:294.680425pt;}
._9c{width:297.544331pt;}
._3a{width:300.312614pt;}
._4e{width:302.703638pt;}
._83{width:307.645088pt;}
._a8{width:309.132836pt;}
._75{width:316.677845pt;}
._94{width:332.139801pt;}
._34{width:333.691274pt;}
._28{width:335.179022pt;}
._71{width:342.075834pt;}
._b0{width:348.239362pt;}
._9b{width:350.837599pt;}
._b1{width:352.649473pt;}
._9d{width:356.735458pt;}
._76{width:361.097758pt;}
._55{width:362.511136pt;}
._5a{width:381.766832pt;}
._67{width:382.670108pt;}
._57{width:383.944841pt;}
._6e{width:386.336345pt;}
._a3{width:394.141630pt;}
._37{width:396.059842pt;}
._99{width:397.058740pt;}
._16{width:404.120276pt;}
._70{width:411.521797pt;}
._a6{width:414.072223pt;}
._af{width:418.163531pt;}
._69{width:420.076350pt;}
._a2{width:423.099587pt;}
._a4{width:428.949706pt;}
._2c{width:430.331186pt;}
._2f{width:433.747667pt;}
._ae{width:435.857108pt;}
._68{width:439.358621pt;}
._6f{width:443.827188pt;}
._a9{width:446.537015pt;}
._36{width:448.837756pt;}
._ad{width:450.628323pt;}
._6d{width:455.782308pt;}
._7f{width:457.158466pt;}
._a5{width:461.414498pt;}
._5e{width:464.655664pt;}
._8c{width:468.215633pt;}
._80{width:477.460926pt;}
._ac{width:479.533147pt;}
._5d{width:483.937935pt;}
._89{width:486.068612pt;}
._6c{width:488.140833pt;}
._77{width:492.758157pt;}
._ab{width:497.279858pt;}
._5f{width:500.361622pt;}
._62{width:503.337119pt;}
._84{width:508.857718pt;}
._86{width:514.654633pt;}
._82{width:515.876711pt;}
._7e{width:517.470727pt;}
._8e{width:525.122004pt;}
._aa{width:526.025280pt;}
._63{width:530.329123pt;}
._5b{width:543.612590pt;}
._8a{width:545.100338pt;}
._98{width:550.254323pt;}
._8b{width:553.654891pt;}
._a1{width:555.992781pt;}
._9a{width:557.794010pt;}
._85{width:559.016089pt;}
._96{width:562.687648pt;}
._60{width:565.291207pt;}
._66{width:570.180003pt;}
._91{width:573.043429pt;}
._78{width:576.018926pt;}
._7b{width:579.594809pt;}
._61{width:581.975242pt;}
._74{width:591.114267pt;}
._90{width:596.587055pt;}
._73{width:598.765543pt;}
._58{width:600.306426pt;}
._59{width:603.069387pt;}
._97{width:611.517671pt;}
._81{width:622.250713pt;}
._7c{width:624.322933pt;}
._92{width:627.404698pt;}
._65{width:628.467855pt;}
._88{width:630.698997pt;}
._56{width:656.787783pt;}
._9e{width:659.285018pt;}
._26{width:662.791853pt;}
._7a{width:667.674846pt;}
._8d{width:668.902247pt;}
._72{width:670.921334pt;}
._c{width:672.568484pt;}
._2e{width:673.949965pt;}
._30{width:716.616460pt;}
._32{width:726.552493pt;}
._38{width:876.389997pt;}
.fs3{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:35.740000pt;}
.y92{bottom:75.590667pt;}
.ye9{bottom:91.024000pt;}
.y91{bottom:91.530667pt;}
.ye8{bottom:110.684000pt;}
.y90{bottom:116.048000pt;}
.ye7{bottom:129.812000pt;}
.ye6{bottom:148.940000pt;}
.y8f{bottom:155.157333pt;}
.y40{bottom:166.464000pt;}
.ye5{bottom:168.068000pt;}
.y3f{bottom:182.404000pt;}
.y8e{bottom:185.188000pt;}
.ye4{bottom:187.197333pt;}
.y65{bottom:190.280000pt;}
.y3e{bottom:198.344000pt;}
.y8d{bottom:204.316000pt;}
.y64{bottom:206.220000pt;}
.ye3{bottom:206.325333pt;}
.y3d{bottom:214.284000pt;}
.y8c{bottom:223.444000pt;}
.ye2{bottom:225.453333pt;}
.y8b{bottom:242.572000pt;}
.y63{bottom:244.062667pt;}
.ye1{bottom:244.581333pt;}
.y3c{bottom:248.808000pt;}
.y8a{bottom:261.700000pt;}
.ye0{bottom:263.709333pt;}
.y3b{bottom:264.748000pt;}
.y62{bottom:274.905333pt;}
.y3a{bottom:280.688000pt;}
.y89{bottom:280.828000pt;}
.ydf{bottom:282.837333pt;}
.y61{bottom:294.033333pt;}
.y39{bottom:296.629333pt;}
.y88{bottom:299.957333pt;}
.yde{bottom:301.965333pt;}
.y38{bottom:312.569333pt;}
.y60{bottom:313.161333pt;}
.y87{bottom:319.085333pt;}
.ydd{bottom:321.094667pt;}
.yb3{bottom:322.913333pt;}
.y37{bottom:328.509333pt;}
.y5f{bottom:332.289333pt;}
.y86{bottom:338.213333pt;}
.ydc{bottom:340.222667pt;}
.yb2{bottom:344.166667pt;}
.y5e{bottom:351.417333pt;}
.y85{bottom:357.341333pt;}
.ydb{bottom:359.350667pt;}
.yb1{bottom:360.106667pt;}
.y36{bottom:363.032000pt;}
.y5d{bottom:370.545333pt;}
.y84{bottom:376.469333pt;}
.yda{bottom:378.478667pt;}
.y35{bottom:378.973333pt;}
.yb0{bottom:381.361333pt;}
.y5c{bottom:390.205333pt;}
.y83{bottom:395.597333pt;}
.yaf{bottom:397.301333pt;}
.yd9{bottom:397.606667pt;}
.y34{bottom:405.540000pt;}
.y82{bottom:414.725333pt;}
.yd8{bottom:416.734667pt;}
.yae{bottom:418.554667pt;}
.y5b{bottom:421.394667pt;}
.y33{bottom:421.480000pt;}
.y81{bottom:433.854667pt;}
.yd7{bottom:435.862667pt;}
.y5a{bottom:437.334667pt;}
.y32{bottom:437.420000pt;}
.yad{bottom:439.808000pt;}
.y80{bottom:452.982667pt;}
.y59{bottom:453.276000pt;}
.yd6{bottom:454.992000pt;}
.yac{bottom:455.748000pt;}
.yc8{bottom:458.142667pt;}
.y104{bottom:468.716000pt;}
.y31{bottom:471.944000pt;}
.y7f{bottom:472.110667pt;}
.yd5{bottom:474.120000pt;}
.yab{bottom:477.002667pt;}
.y58{bottom:477.792000pt;}
.y103{bottom:488.374667pt;}
.y7e{bottom:491.238667pt;}
.yd4{bottom:493.248000pt;}
.yaa{bottom:498.256000pt;}
.y30{bottom:498.510667pt;}
.y102{bottom:507.504000pt;}
.y7d{bottom:510.898667pt;}
.yd3{bottom:512.376000pt;}
.y2f{bottom:514.450667pt;}
.y57{bottom:514.973333pt;}
.ya9{bottom:519.509333pt;}
.y101{bottom:526.632000pt;}
.y2e{bottom:530.390667pt;}
.y56{bottom:530.913333pt;}
.yd2{bottom:531.504000pt;}
.y7c{bottom:543.153333pt;}
.y100{bottom:545.760000pt;}
.y55{bottom:546.853333pt;}
.ya8{bottom:548.601333pt;}
.yd1{bottom:550.632000pt;}
.y7b{bottom:559.093333pt;}
.y54{bottom:562.793333pt;}
.yff{bottom:564.888000pt;}
.y2d{bottom:564.914667pt;}
.yd0{bottom:569.760000pt;}
.y7a{bottom:575.033333pt;}
.y53{bottom:578.733333pt;}
.y2c{bottom:580.854667pt;}
.yfe{bottom:584.016000pt;}
.ycf{bottom:588.889333pt;}
.ya7{bottom:589.412000pt;}
.yee{bottom:591.545333pt;}
.y52{bottom:594.673333pt;}
.y2b{bottom:596.794667pt;}
.y79{bottom:599.550667pt;}
.yfd{bottom:603.144000pt;}
.ya6{bottom:605.352000pt;}
.yed{bottom:607.485333pt;}
.yce{bottom:608.017333pt;}
.y51{bottom:610.614667pt;}
.yc7{bottom:611.233333pt;}
.y2a{bottom:612.734667pt;}
.ya5{bottom:621.292000pt;}
.yfc{bottom:622.272000pt;}
.y50{bottom:626.554667pt;}
.ycd{bottom:627.145333pt;}
.y13{bottom:631.524000pt;}
.ya4{bottom:637.233333pt;}
.y29{bottom:639.302667pt;}
.y78{bottom:639.397333pt;}
.yfb{bottom:641.401333pt;}
.yc6{bottom:642.076000pt;}
.y4f{bottom:642.494667pt;}
.y12{bottom:646.136000pt;}
.ycc{bottom:646.273333pt;}
.ya3{bottom:653.173333pt;}
.y28{bottom:655.242667pt;}
.y4e{bottom:658.434667pt;}
.yfa{bottom:660.529333pt;}
.y11{bottom:660.748000pt;}
.yc5{bottom:661.204000pt;}
.ycb{bottom:665.401333pt;}
.ya2{bottom:669.113333pt;}
.y77{bottom:670.240000pt;}
.y27{bottom:671.182667pt;}
.y10{bottom:675.360000pt;}
.yf9{bottom:679.657333pt;}
.yc4{bottom:680.332000pt;}
.yca{bottom:684.529333pt;}
.ya1{bottom:685.053333pt;}
.yec{bottom:685.061333pt;}
.y4d{bottom:687.526667pt;}
.y76{bottom:689.368000pt;}
.yf{bottom:689.972000pt;}
.y26{bottom:697.749333pt;}
.yf8{bottom:698.785333pt;}
.yc3{bottom:699.460000pt;}
.ya0{bottom:700.993333pt;}
.yc9{bottom:704.189333pt;}
.ye{bottom:704.584000pt;}
.yeb{bottom:704.720000pt;}
.y75{bottom:708.496000pt;}
.y9f{bottom:716.933333pt;}
.yea{bottom:718.110667pt;}
.yf7{bottom:718.445333pt;}
.yc2{bottom:718.589333pt;}
.yd{bottom:719.196000pt;}
.y25{bottom:724.317333pt;}
.y74{bottom:727.624000pt;}
.y9e{bottom:732.874667pt;}
.yc{bottom:733.806667pt;}
.y4c{bottom:734.769333pt;}
.yc1{bottom:737.717333pt;}
.y73{bottom:746.752000pt;}
.yb{bottom:748.418667pt;}
.y9d{bottom:748.814667pt;}
.y24{bottom:753.408000pt;}
.yc0{bottom:756.845333pt;}
.y4b{bottom:765.610667pt;}
.y72{bottom:765.880000pt;}
.y9c{bottom:767.942667pt;}
.ya{bottom:769.242667pt;}
.ybf{bottom:775.973333pt;}
.yf6{bottom:783.278667pt;}
.y4a{bottom:784.740000pt;}
.y71{bottom:785.009333pt;}
.y9b{bottom:787.602667pt;}
.ybe{bottom:795.101333pt;}
.y23{bottom:797.330667pt;}
.yf5{bottom:802.938667pt;}
.y49{bottom:803.868000pt;}
.y70{bottom:804.668000pt;}
.y22{bottom:813.272000pt;}
.ybd{bottom:814.229333pt;}
.y9{bottom:817.058667pt;}
.y9a{bottom:819.721333pt;}
.yf4{bottom:822.066667pt;}
.y48{bottom:822.996000pt;}
.y21{bottom:829.212000pt;}
.ybc{bottom:833.357333pt;}
.y6f{bottom:836.922667pt;}
.yf3{bottom:841.194667pt;}
.y47{bottom:842.124000pt;}
.y20{bottom:845.152000pt;}
.y8{bottom:848.638667pt;}
.ybb{bottom:852.486667pt;}
.y6e{bottom:852.862667pt;}
.yf2{bottom:860.322667pt;}
.y1f{bottom:861.092000pt;}
.y46{bottom:861.252000pt;}
.y99{bottom:863.644000pt;}
.y6d{bottom:868.804000pt;}
.yba{bottom:871.614667pt;}
.y1e{bottom:877.032000pt;}
.y7{bottom:878.513333pt;}
.yf1{bottom:879.450667pt;}
.y98{bottom:879.584000pt;}
.y45{bottom:880.380000pt;}
.y6{bottom:884.298667pt;}
.yb9{bottom:890.742667pt;}
.y1d{bottom:892.972000pt;}
.yf0{bottom:898.580000pt;}
.y44{bottom:899.508000pt;}
.y4{bottom:900.830667pt;}
.y6c{bottom:905.993333pt;}
.y97{bottom:906.152000pt;}
.y5{bottom:906.614667pt;}
.y1c{bottom:908.913333pt;}
.yb8{bottom:909.870667pt;}
.yef{bottom:917.708000pt;}
.y43{bottom:918.637333pt;}
.y96{bottom:922.092000pt;}
.y1b{bottom:924.853333pt;}
.yb7{bottom:928.998667pt;}
.y6b{bottom:936.836000pt;}
.y42{bottom:937.765333pt;}
.y95{bottom:938.032000pt;}
.y1a{bottom:940.793333pt;}
.yb6{bottom:948.126667pt;}
.y3{bottom:948.637333pt;}
.y6a{bottom:955.964000pt;}
.y19{bottom:956.733333pt;}
.y41{bottom:957.424000pt;}
.yb5{bottom:967.254667pt;}
.y94{bottom:972.554667pt;}
.y18{bottom:972.673333pt;}
.y69{bottom:975.092000pt;}
.y2{bottom:977.861333pt;}
.yb4{bottom:986.914667pt;}
.y17{bottom:988.613333pt;}
.y68{bottom:994.220000pt;}
.y93{bottom:999.122667pt;}
.y16{bottom:1004.554667pt;}
.y67{bottom:1013.348000pt;}
.y66{bottom:1033.008000pt;}
.y15{bottom:1033.645333pt;}
.y1{bottom:1084.920000pt;}
.h5{height:29.925069pt;}
.h9{height:36.874903pt;}
.h8{height:39.850400pt;}
.hc{height:40.381840pt;}
.h6{height:45.429760pt;}
.h2{height:50.477173pt;}
.h4{height:60.573013pt;}
.h7{height:72.687413pt;}
.h3{height:87.224693pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x6d{left:35.740000pt;}
.xe{left:75.590667pt;}
.x3c{left:83.561333pt;}
.x38{left:94.476000pt;}
.x17{left:95.517333pt;}
.x2{left:102.696000pt;}
.x70{left:104.977333pt;}
.xd{left:108.800000pt;}
.x2a{left:112.829333pt;}
.x11{left:122.713333pt;}
.x6a{left:123.833333pt;}
.xc{left:127.225333pt;}
.x33{left:136.218667pt;}
.x46{left:150.110667pt;}
.x27{left:155.200000pt;}
.x1a{left:168.074667pt;}
.x21{left:170.580000pt;}
.x2c{left:173.036000pt;}
.x5e{left:177.596000pt;}
.x57{left:179.585333pt;}
.x68{left:181.006667pt;}
.x35{left:184.260000pt;}
.x1d{left:187.881333pt;}
.x58{left:192.017333pt;}
.x63{left:193.677333pt;}
.x5c{left:196.377333pt;}
.x37{left:198.470667pt;}
.x34{left:200.302667pt;}
.x6f{left:202.637333pt;}
.x3{left:207.894667pt;}
.x71{left:217.272000pt;}
.x22{left:220.002667pt;}
.x15{left:228.657333pt;}
.x52{left:235.837333pt;}
.x2d{left:238.317333pt;}
.x6{left:239.294667pt;}
.x12{left:240.493333pt;}
.x7{left:244.977333pt;}
.x8{left:248.069333pt;}
.x23{left:251.012000pt;}
.x16{left:256.645333pt;}
.x64{left:274.450667pt;}
.x2e{left:285.926667pt;}
.x59{left:289.774667pt;}
.x50{left:291.701333pt;}
.x1b{left:292.986667pt;}
.x47{left:299.337333pt;}
.x24{left:308.522667pt;}
.x2b{left:313.002667pt;}
.x5f{left:314.124000pt;}
.x39{left:317.861333pt;}
.x3d{left:324.316000pt;}
.x3a{left:331.805333pt;}
.x1{left:335.558667pt;}
.x4{left:346.441333pt;}
.xa{left:360.440000pt;}
.x6e{left:367.046667pt;}
.x65{left:367.966667pt;}
.xb{left:369.798667pt;}
.x18{left:376.045333pt;}
.x25{left:385.141333pt;}
.x66{left:390.926667pt;}
.x48{left:392.852000pt;}
.x5a{left:399.241333pt;}
.x9{left:407.584000pt;}
.x49{left:415.812000pt;}
.x60{left:417.072000pt;}
.x4a{left:423.928000pt;}
.x4c{left:425.976000pt;}
.x26{left:440.540000pt;}
.x5{left:441.576000pt;}
.x4d{left:448.937333pt;}
.x61{left:450.509333pt;}
.x36{left:452.226667pt;}
.x4e{left:456.452000pt;}
.x5d{left:458.472000pt;}
.x1c{left:466.564000pt;}
.x3e{left:470.730667pt;}
.x2f{left:482.557333pt;}
.x41{left:488.408000pt;}
.x62{left:495.989333pt;}
.x44{left:498.198667pt;}
.x19{left:503.321333pt;}
.xf{left:515.481333pt;}
.x53{left:525.657333pt;}
.x42{left:527.480000pt;}
.x13{left:535.866667pt;}
.x28{left:542.104000pt;}
.x5b{left:546.800000pt;}
.x6b{left:548.924000pt;}
.x3f{left:552.165333pt;}
.x31{left:553.164000pt;}
.x3b{left:577.568000pt;}
.x14{left:596.013333pt;}
.x20{left:596.981333pt;}
.x30{left:608.113333pt;}
.x54{left:625.221333pt;}
.x1e{left:629.810667pt;}
.x51{left:632.428000pt;}
.x67{left:643.732000pt;}
.x4b{left:647.036000pt;}
.x55{left:648.181333pt;}
.x45{left:651.585333pt;}
.x10{left:653.014667pt;}
.x56{left:657.812000pt;}
.x29{left:662.801333pt;}
.x1f{left:672.337333pt;}
.x32{left:678.720000pt;}
.x43{left:691.570667pt;}
.x40{left:698.580000pt;}
.x4f{left:714.421333pt;}
.x6c{left:880.473333pt;}
.x69{left:1084.920000pt;}
}




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