
    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_6d282ff83713d77dad3950e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_68ce258524cbcfa364548fde.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5fec9b2638292d05d5183385.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_233587a2b664dc9546c7f3fc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_3e9f2b13be15697231e4f8ba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.384000;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_4754570e2a503ba65be1dc95.woff')format("woff");}.ff6{font-family:ff6;line-height:1.368000;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_820ac260d7a567d1512cba2a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.374000;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_24439e6ea9f25073690d6ee4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.975098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_65d674c5c8d80678dc881a9b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.099609;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_60dc549e0e98337055d1f55e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-69.120072px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.506601px;}
.ls5{letter-spacing:23.407049px;}
.ls3{letter-spacing:49.327094px;}
.ls2{letter-spacing:1194.835770px;}
.ls0{letter-spacing:1198.652164px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(128,0,0),0 0.015em rgb(128,0,0),0.015em 0 rgb(128,0,0),0 -0.015em  rgb(128,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(128,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.918732px;}
.ws0{word-spacing:-15.565086px;}
.ws2{word-spacing:-15.446864px;}
.ws6{word-spacing:-13.171626px;}
.ws5{word-spacing:-12.665025px;}
.ws3{word-spacing:-10.754859px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-9.929380px;}
._13{margin-left:-2.246606px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._3{width:2.693754px;}
._15{width:3.804267px;}
._1d{width:4.927517px;}
._9{width:5.946284px;}
._16{width:7.002226px;}
._12{width:8.079043px;}
._1c{width:9.485023px;}
._34{width:10.485816px;}
._21{width:11.495438px;}
._1b{width:12.667654px;}
._8{width:13.848366px;}
._32{width:15.330204px;}
._1a{width:16.561771px;}
._5{width:18.571215px;}
._6{width:20.435498px;}
._14{width:21.676896px;}
._a{width:22.859550px;}
._b{width:23.905539px;}
._22{width:25.339961px;}
._23{width:26.771949px;}
._7{width:28.246065px;}
._17{width:29.320940px;}
._2c{width:30.377852px;}
._29{width:31.443261px;}
._2e{width:32.579065px;}
._11{width:34.149626px;}
._d{width:35.596387px;}
._c{width:36.645288px;}
._e{width:38.235269px;}
._1f{width:39.997841px;}
._27{width:41.253319px;}
._2b{width:42.629927px;}
._20{width:44.027896px;}
._18{width:45.654531px;}
._19{width:46.742757px;}
._31{width:51.061435px;}
._30{width:52.076110px;}
._f{width:55.775788px;}
._10{width:56.985387px;}
._25{width:58.623917px;}
._26{width:69.361747px;}
._2f{width:70.439050px;}
._2d{width:106.438636px;}
._2a{width:113.088396px;}
._33{width:114.922271px;}
._1e{width:271.357484px;}
._28{width:331.469429px;}
._2{width:549.563316px;}
._24{width:707.267061px;}
.fc7{color:rgb(128,0,0);}
.fc5{color:rgb(196,188,150);}
.fc4{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(118,113,113);}
.fc2{color:rgb(127,127,127);}
.fc1{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs8{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fs3{font-size:56.063700px;}
.fs9{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs6{font-size:62.260346px;}
.fs7{font-size:67.674930px;}
.fsb{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs5{font-size:275.590341px;}
.y7e{bottom:-7.920816px;}
.y0{bottom:0.000000px;}
.y7b{bottom:2.518537px;}
.y75{bottom:2.878173px;}
.y77{bottom:3.599789px;}
.y79{bottom:4.142086px;}
.y63{bottom:4.679971px;}
.y82{bottom:6.839950px;}
.y81{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y80{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.y7d{bottom:65.529033px;}
.ya8{bottom:70.379998px;}
.y7c{bottom:70.569031px;}
.yba{bottom:70.740006px;}
.y142{bottom:71.639992px;}
.ye2{bottom:73.440033px;}
.y7a{bottom:81.187946px;}
.y109{bottom:82.980011px;}
.ya7{bottom:88.200027px;}
.yb9{bottom:88.559967px;}
.y141{bottom:89.639992px;}
.ye1{bottom:91.440033px;}
.y108{bottom:100.799973px;}
.ya6{bottom:106.019989px;}
.yb8{bottom:106.379998px;}
.y140{bottom:107.460022px;}
.ye0{bottom:109.259994px;}
.y61{bottom:109.799973px;}
.y38{bottom:112.500000px;}
.y107{bottom:118.799973px;}
.ya5{bottom:124.019989px;}
.yb7{bottom:124.379998px;}
.y13f{bottom:125.279983px;}
.ydf{bottom:127.259994px;}
.y60{bottom:127.799973px;}
.y37{bottom:130.500000px;}
.y106{bottom:136.440033px;}
.ya4{bottom:142.019989px;}
.yb6{bottom:142.200027px;}
.y13e{bottom:143.279983px;}
.yde{bottom:144.899986px;}
.y5f{bottom:145.620002px;}
.y36{bottom:148.320030px;}
.y105{bottom:154.440033px;}
.ya3{bottom:159.659981px;}
.yb5{bottom:160.019989px;}
.y13d{bottom:161.100013px;}
.ydd{bottom:162.899986px;}
.y5e{bottom:163.440033px;}
.y35{bottom:166.139992px;}
.y104{bottom:172.440033px;}
.ya2{bottom:177.659981px;}
.yb4{bottom:178.019989px;}
.y13c{bottom:178.919975px;}
.ydc{bottom:180.899986px;}
.y5d{bottom:181.440033px;}
.y34{bottom:184.139992px;}
.y103{bottom:190.259994px;}
.ya1{bottom:195.659981px;}
.yb3{bottom:195.840019px;}
.y13b{bottom:196.919975px;}
.ydb{bottom:198.539977px;}
.y5c{bottom:199.259994px;}
.y33{bottom:201.960022px;}
.y102{bottom:208.080025px;}
.ya0{bottom:213.299973px;}
.yb2{bottom:213.659981px;}
.y13a{bottom:214.919975px;}
.yda{bottom:216.539977px;}
.y5b{bottom:217.080025px;}
.y32{bottom:219.779983px;}
.y101{bottom:226.080025px;}
.y9f{bottom:231.299973px;}
.yb1{bottom:231.659981px;}
.y139{bottom:232.559967px;}
.yd9{bottom:234.539977px;}
.y5a{bottom:235.080025px;}
.y31{bottom:237.779983px;}
.y100{bottom:243.899986px;}
.y9e{bottom:249.120002px;}
.yb0{bottom:249.480011px;}
.y138{bottom:250.559967px;}
.yd8{bottom:252.360008px;}
.y59{bottom:252.899986px;}
.y30{bottom:255.600013px;}
.yff{bottom:261.899986px;}
.y9d{bottom:267.120002px;}
.yaf{bottom:267.480011px;}
.y137{bottom:268.559967px;}
.yd7{bottom:270.179970px;}
.y58{bottom:270.899986px;}
.y2f{bottom:273.600013px;}
.yfe{bottom:279.720017px;}
.y9c{bottom:284.940033px;}
.yae{bottom:285.299973px;}
.y136{bottom:286.200027px;}
.yd6{bottom:288.179970px;}
.y57{bottom:288.539977px;}
.y2e{bottom:291.419975px;}
.yfd{bottom:297.539977px;}
.y9b{bottom:302.759994px;}
.yad{bottom:303.120002px;}
.y135{bottom:304.200027px;}
.yd5{bottom:306.000000px;}
.y56{bottom:306.539977px;}
.y2d{bottom:309.240006px;}
.yfc{bottom:315.539977px;}
.yac{bottom:320.580025px;}
.y9a{bottom:320.759994px;}
.y134{bottom:322.200027px;}
.yd4{bottom:324.000000px;}
.y55{bottom:324.539977px;}
.y2c{bottom:327.240006px;}
.yfb{bottom:333.360008px;}
.yab{bottom:335.159981px;}
.y99{bottom:338.759994px;}
.y133{bottom:340.019989px;}
.yd3{bottom:341.820030px;}
.y54{bottom:342.360008px;}
.y2b{bottom:345.059967px;}
.yaa{bottom:347.220017px;}
.yfa{bottom:351.179970px;}
.y171{bottom:352.440033px;}
.y98{bottom:356.399986px;}
.y132{bottom:357.840019px;}
.yd2{bottom:359.639992px;}
.y53{bottom:360.179970px;}
.y2a{bottom:362.879998px;}
.y170{bottom:367.200027px;}
.yf9{bottom:369.179970px;}
.y97{bottom:374.399986px;}
.y131{bottom:375.840019px;}
.yd1{bottom:377.639992px;}
.y52{bottom:378.179970px;}
.y29{bottom:380.879998px;}
.y16f{bottom:381.600013px;}
.yf8{bottom:387.179970px;}
.y96{bottom:392.399986px;}
.y130{bottom:393.659981px;}
.yd0{bottom:395.460022px;}
.y51{bottom:396.000000px;}
.y16e{bottom:396.360008px;}
.y28{bottom:398.700027px;}
.yf7{bottom:404.820030px;}
.y95{bottom:410.039977px;}
.y16d{bottom:410.940033px;}
.y12f{bottom:411.480011px;}
.ycf{bottom:413.279983px;}
.y50{bottom:413.820030px;}
.y27{bottom:416.519989px;}
.yf6{bottom:422.820030px;}
.y16c{bottom:425.700027px;}
.y94{bottom:428.039977px;}
.y12e{bottom:429.480011px;}
.yce{bottom:431.279983px;}
.y4f{bottom:431.820030px;}
.y26{bottom:434.519989px;}
.y16b{bottom:440.279983px;}
.yf5{bottom:440.639992px;}
.y93{bottom:446.039977px;}
.y12d{bottom:447.299973px;}
.ycd{bottom:449.100013px;}
.y4e{bottom:449.639992px;}
.y25{bottom:452.340019px;}
.y16a{bottom:454.860008px;}
.yf4{bottom:458.460022px;}
.y92{bottom:463.860008px;}
.y12c{bottom:465.299973px;}
.ycc{bottom:466.919975px;}
.y4d{bottom:467.639992px;}
.y169{bottom:469.440033px;}
.y24{bottom:470.340019px;}
.yf3{bottom:476.460022px;}
.y91{bottom:481.679970px;}
.y12b{bottom:482.940033px;}
.y168{bottom:484.200027px;}
.ycb{bottom:484.919975px;}
.y4c{bottom:485.460022px;}
.y23{bottom:488.159981px;}
.yf2{bottom:494.279983px;}
.y167{bottom:498.779983px;}
.y90{bottom:499.679970px;}
.y12a{bottom:500.940033px;}
.yca{bottom:502.740006px;}
.y4b{bottom:503.279983px;}
.y22{bottom:505.980011px;}
.yf1{bottom:512.279983px;}
.y166{bottom:513.539977px;}
.y8f{bottom:517.500000px;}
.y129{bottom:518.940033px;}
.yc9{bottom:520.559967px;}
.y4a{bottom:521.279983px;}
.y21{bottom:523.980011px;}
.y165{bottom:527.940033px;}
.yf0{bottom:530.100013px;}
.y8e{bottom:535.320030px;}
.y128{bottom:536.759994px;}
.yc8{bottom:538.559967px;}
.y49{bottom:539.100013px;}
.y20{bottom:541.799973px;}
.y164{bottom:542.700027px;}
.yef{bottom:547.919975px;}
.y8d{bottom:553.320030px;}
.y127{bottom:554.580025px;}
.y62{bottom:556.200027px;}
.yc7{bottom:556.379998px;}
.y48{bottom:556.919975px;}
.y163{bottom:557.279983px;}
.y1f{bottom:559.620002px;}
.yee{bottom:565.919975px;}
.y8c{bottom:571.139992px;}
.y162{bottom:572.039977px;}
.y126{bottom:572.580025px;}
.yc6{bottom:574.379998px;}
.y47{bottom:574.919975px;}
.y1e{bottom:577.620002px;}
.yed{bottom:583.919975px;}
.y161{bottom:586.620002px;}
.y8b{bottom:589.139992px;}
.y125{bottom:590.399986px;}
.yc5{bottom:592.200027px;}
.y46{bottom:592.740006px;}
.y1d{bottom:595.620002px;}
.y160{bottom:601.200027px;}
.yec{bottom:601.559967px;}
.y8a{bottom:606.779983px;}
.y124{bottom:608.220017px;}
.yc4{bottom:610.019989px;}
.y45{bottom:610.559967px;}
.y1c{bottom:613.259994px;}
.y15f{bottom:615.779983px;}
.yeb{bottom:619.560001px;}
.y89{bottom:624.779983px;}
.y123{bottom:626.220017px;}
.yc3{bottom:628.019989px;}
.y44{bottom:628.560001px;}
.y15e{bottom:630.540012px;}
.y1b{bottom:631.259994px;}
.yea{bottom:637.560001px;}
.y88{bottom:642.779983px;}
.y122{bottom:644.040012px;}
.y15d{bottom:645.120002px;}
.yc2{bottom:646.019989px;}
.y43{bottom:646.379998px;}
.y1a{bottom:649.079990px;}
.ye9{bottom:655.199993px;}
.y15c{bottom:659.879998px;}
.y87{bottom:660.600013px;}
.y121{bottom:662.040012px;}
.yc1{bottom:663.660015px;}
.y42{bottom:664.199993px;}
.y19{bottom:667.079990px;}
.ye8{bottom:673.199993px;}
.y15b{bottom:674.459988px;}
.y86{bottom:677.879998px;}
.y74{bottom:678.413320px;}
.y120{bottom:679.860008px;}
.yc0{bottom:681.660015px;}
.y41{bottom:682.199993px;}
.y18{bottom:684.899986px;}
.y15a{bottom:689.040012px;}
.y85{bottom:692.639992px;}
.y11f{bottom:697.680004px;}
.ybf{bottom:699.660015px;}
.y40{bottom:700.019989px;}
.y17{bottom:702.720017px;}
.ye7{bottom:702.899986px;}
.y73{bottom:703.081699px;}
.y159{bottom:703.620002px;}
.y84{bottom:704.519989px;}
.y76{bottom:705.058383px;}
.ya9{bottom:705.240006px;}
.y11e{bottom:715.680004px;}
.ybe{bottom:716.759994px;}
.y3f{bottom:718.019989px;}
.y158{bottom:718.379998px;}
.ye6{bottom:718.740006px;}
.y16{bottom:720.720017px;}
.ybd{bottom:731.519989px;}
.y157{bottom:732.959988px;}
.y11d{bottom:733.500000px;}
.ye5{bottom:734.579990px;}
.y72{bottom:735.122854px;}
.y3e{bottom:735.839985px;}
.y15{bottom:739.620002px;}
.ybc{bottom:746.100013px;}
.y156{bottom:747.720017px;}
.ye4{bottom:750.420010px;}
.y11c{bottom:751.319995px;}
.y3d{bottom:753.660015px;}
.y71{bottom:754.206794px;}
.y14{bottom:757.079990px;}
.ybb{bottom:757.980011px;}
.ye3{bottom:762.120002px;}
.y11b{bottom:769.319995px;}
.y3c{bottom:771.660015px;}
.y70{bottom:773.465570px;}
.y13{bottom:774.540012px;}
.y155{bottom:776.879998px;}
.y11a{bottom:787.139992px;}
.y3b{bottom:789.660015px;}
.y154{bottom:791.459988px;}
.y12{bottom:792.000000px;}
.y6f{bottom:792.724298px;}
.y119{bottom:804.959988px;}
.y153{bottom:806.220017px;}
.y3a{bottom:807.300007px;}
.y6e{bottom:812.347889px;}
.y152{bottom:820.800007px;}
.y118{bottom:822.959988px;}
.y39{bottom:825.300007px;}
.y11{bottom:826.740006px;}
.y6d{bottom:831.606641px;}
.y151{bottom:835.379998px;}
.y117{bottom:840.779983px;}
.y10{bottom:844.379998px;}
.y150{bottom:849.959988px;}
.y6c{bottom:850.865393px;}
.y116{bottom:858.779983px;}
.yf{bottom:861.660015px;}
.y14f{bottom:864.720017px;}
.y6b{bottom:870.124144px;}
.y115{bottom:876.600013px;}
.ye{bottom:879.120002px;}
.y14e{bottom:879.300007px;}
.y6a{bottom:889.382896px;}
.y14d{bottom:894.060001px;}
.y114{bottom:894.420010px;}
.yd{bottom:896.399987px;}
.y83{bottom:896.939999px;}
.y14c{bottom:908.460004px;}
.y69{bottom:908.641648px;}
.y113{bottom:912.419992px;}
.yc{bottom:913.860008px;}
.y14b{bottom:923.219999px;}
.y68{bottom:927.900400px;}
.y112{bottom:930.240006px;}
.yb{bottom:931.139992px;}
.y14a{bottom:937.800007px;}
.y67{bottom:947.341572px;}
.y111{bottom:948.060001px;}
.ya{bottom:948.419992px;}
.y149{bottom:952.560001px;}
.y9{bottom:965.879998px;}
.y110{bottom:966.060001px;}
.y66{bottom:966.600324px;}
.y148{bottom:967.139992px;}
.y147{bottom:981.719999px;}
.y8{bottom:983.159998px;}
.y10f{bottom:984.060001px;}
.y65{bottom:985.859075px;}
.y146{bottom:996.300007px;}
.y7{bottom:1000.620002px;}
.y78{bottom:1000.983349px;}
.y10e{bottom:1001.699993px;}
.y64{bottom:1005.125435px;}
.y145{bottom:1011.060001px;}
.y6{bottom:1018.080008px;}
.y10d{bottom:1019.699993px;}
.y144{bottom:1025.639992px;}
.y10c{bottom:1037.699993px;}
.y5{bottom:1039.500000px;}
.y143{bottom:1040.400003px;}
.y10b{bottom:1055.340002px;}
.y4{bottom:1072.980002px;}
.y10a{bottom:1073.340002px;}
.y7f{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h13{height:2.877776px;}
.h11{height:12.960814px;}
.hb{height:14.941020px;}
.hd{height:18.543205px;}
.hf{height:18.719149px;}
.hc{height:33.564239px;}
.h12{height:33.942419px;}
.h16{height:38.316648px;}
.he{height:41.579270px;}
.h1{height:47.001523px;}
.h9{height:47.090466px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.ha{height:51.185775px;}
.h6{height:51.369341px;}
.h7{height:53.819962px;}
.h3{height:55.762577px;}
.h14{height:61.808975px;}
.h10{height:61.925939px;}
.h15{height:83.979548px;}
.h4{height:123.810048px;}
.h8{height:208.442109px;}
.h0{height:1188.000000px;}
.w10{width:2.338800px;}
.w17{width:2.701140px;}
.w9{width:2.879633px;}
.wd{width:2.879648px;}
.w11{width:2.880818px;}
.w1a{width:4.681219px;}
.w19{width:5.216635px;}
.w3{width:5.756414px;}
.w18{width:5.941373px;}
.w6{width:7.377859px;}
.w7{width:8.998563px;}
.wa{width:13.679513px;}
.w8{width:22.323231px;}
.w14{width:31.503587px;}
.w4{width:34.023130px;}
.w16{width:34.201743px;}
.wb{width:36.180017px;}
.w5{width:45.364194px;}
.w1{width:49.859999px;}
.w12{width:53.463228px;}
.w15{width:55.260069px;}
.w13{width:58.679922px;}
.w2{width:85.322022px;}
.we{width:95.761313px;}
.wc{width:97.735390px;}
.wf{width:159.476408px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.xd{left:114.658682px;}
.xe{left:136.799837px;}
.xf{left:139.502190px;}
.x3{left:152.819996px;}
.x7{left:154.802876px;}
.x10{left:155.879260px;}
.x9{left:157.677598px;}
.xa{left:191.700728px;}
.xb{left:237.064922px;}
.x8{left:240.124898px;}
.x2{left:248.939999px;}
.x11{left:289.258031px;}
.x12{left:291.960399px;}
.xc{left:310.678522px;}
.x6{left:313.376562px;}
.x13{left:387.721712px;}
.x1f{left:445.500000px;}
.x5{left:472.139992px;}
.x21{left:497.519989px;}
.x4{left:522.899987px;}
.x14{left:547.198120px;}
.x15{left:549.360283px;}
.x16{left:552.058440px;}
.x17{left:605.339007px;}
.x25{left:628.559967px;}
.x18{left:663.476911px;}
.x24{left:667.799973px;}
.x23{left:670.860008px;}
.x19{left:694.980498px;}
.x1a{left:697.136637px;}
.x1b{left:752.396706px;}
.x1c{left:786.239093px;}
.x1d{left:788.757571px;}
.x1e{left:793.800552px;}
.x22{left:814.320030px;}
.x20{left:815.580025px;}
@media print{
.v1{vertical-align:-61.440064pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.450312pt;}
.ls5{letter-spacing:20.806266pt;}
.ls3{letter-spacing:43.846306pt;}
.ls2{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws1{word-spacing:-15.038873pt;}
.ws0{word-spacing:-13.835632pt;}
.ws2{word-spacing:-13.730545pt;}
.ws6{word-spacing:-11.708112pt;}
.ws5{word-spacing:-11.257800pt;}
.ws3{word-spacing:-9.559875pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-8.826115pt;}
._13{margin-left:-1.996983pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._3{width:2.394448pt;}
._15{width:3.381571pt;}
._1d{width:4.380016pt;}
._9{width:5.285586pt;}
._16{width:6.224201pt;}
._12{width:7.181372pt;}
._1c{width:8.431131pt;}
._34{width:9.320725pt;}
._21{width:10.218167pt;}
._1b{width:11.260137pt;}
._8{width:12.309659pt;}
._32{width:13.626848pt;}
._1a{width:14.721574pt;}
._5{width:16.507747pt;}
._6{width:18.164887pt;}
._14{width:19.268352pt;}
._a{width:20.319600pt;}
._b{width:21.249368pt;}
._22{width:22.524409pt;}
._23{width:23.797288pt;}
._7{width:25.107613pt;}
._17{width:26.063058pt;}
._2c{width:27.002535pt;}
._29{width:27.949565pt;}
._2e{width:28.959169pt;}
._11{width:30.355223pt;}
._d{width:31.641233pt;}
._c{width:32.573590pt;}
._e{width:33.986906pt;}
._1f{width:35.553637pt;}
._27{width:36.669617pt;}
._2b{width:37.893268pt;}
._20{width:39.135907pt;}
._18{width:40.581805pt;}
._19{width:41.549117pt;}
._31{width:45.387943pt;}
._30{width:46.289876pt;}
._f{width:49.578478pt;}
._10{width:50.653678pt;}
._25{width:52.110148pt;}
._26{width:61.654886pt;}
._2f{width:62.612489pt;}
._2d{width:94.612121pt;}
._2a{width:100.523019pt;}
._33{width:102.153130pt;}
._1e{width:241.206653pt;}
._28{width:294.639492pt;}
._2{width:488.500725pt;}
._24{width:628.681832pt;}
.fsa{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs8{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fs3{font-size:49.834400pt;}
.fs9{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs6{font-size:55.342529pt;}
.fs7{font-size:60.155493pt;}
.fsb{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs5{font-size:244.969192pt;}
.y7e{bottom:-7.040726pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:2.238699pt;}
.y75{bottom:2.558376pt;}
.y77{bottom:3.199812pt;}
.y79{bottom:3.681854pt;}
.y63{bottom:4.159974pt;}
.y82{bottom:6.079956pt;}
.y81{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y80{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.y7d{bottom:58.248029pt;}
.ya8{bottom:62.559998pt;}
.y7c{bottom:62.728028pt;}
.yba{bottom:62.880005pt;}
.y142{bottom:63.679993pt;}
.ye2{bottom:65.280029pt;}
.y7a{bottom:72.167063pt;}
.y109{bottom:73.760010pt;}
.ya7{bottom:78.400024pt;}
.yb9{bottom:78.719971pt;}
.y141{bottom:79.679993pt;}
.ye1{bottom:81.280029pt;}
.y108{bottom:89.599976pt;}
.ya6{bottom:94.239990pt;}
.yb8{bottom:94.559998pt;}
.y140{bottom:95.520020pt;}
.ye0{bottom:97.119995pt;}
.y61{bottom:97.599976pt;}
.y38{bottom:100.000000pt;}
.y107{bottom:105.599976pt;}
.ya5{bottom:110.239990pt;}
.yb7{bottom:110.559998pt;}
.y13f{bottom:111.359985pt;}
.ydf{bottom:113.119995pt;}
.y60{bottom:113.599976pt;}
.y37{bottom:116.000000pt;}
.y106{bottom:121.280029pt;}
.ya4{bottom:126.239990pt;}
.yb6{bottom:126.400024pt;}
.y13e{bottom:127.359985pt;}
.yde{bottom:128.799988pt;}
.y5f{bottom:129.440002pt;}
.y36{bottom:131.840027pt;}
.y105{bottom:137.280029pt;}
.ya3{bottom:141.919983pt;}
.yb5{bottom:142.239990pt;}
.y13d{bottom:143.200012pt;}
.ydd{bottom:144.799988pt;}
.y5e{bottom:145.280029pt;}
.y35{bottom:147.679993pt;}
.y104{bottom:153.280029pt;}
.ya2{bottom:157.919983pt;}
.yb4{bottom:158.239990pt;}
.y13c{bottom:159.039978pt;}
.ydc{bottom:160.799988pt;}
.y5d{bottom:161.280029pt;}
.y34{bottom:163.679993pt;}
.y103{bottom:169.119995pt;}
.ya1{bottom:173.919983pt;}
.yb3{bottom:174.080017pt;}
.y13b{bottom:175.039978pt;}
.ydb{bottom:176.479980pt;}
.y5c{bottom:177.119995pt;}
.y33{bottom:179.520020pt;}
.y102{bottom:184.960022pt;}
.ya0{bottom:189.599976pt;}
.yb2{bottom:189.919983pt;}
.y13a{bottom:191.039978pt;}
.yda{bottom:192.479980pt;}
.y5b{bottom:192.960022pt;}
.y32{bottom:195.359985pt;}
.y101{bottom:200.960022pt;}
.y9f{bottom:205.599976pt;}
.yb1{bottom:205.919983pt;}
.y139{bottom:206.719971pt;}
.yd9{bottom:208.479980pt;}
.y5a{bottom:208.960022pt;}
.y31{bottom:211.359985pt;}
.y100{bottom:216.799988pt;}
.y9e{bottom:221.440002pt;}
.yb0{bottom:221.760010pt;}
.y138{bottom:222.719971pt;}
.yd8{bottom:224.320007pt;}
.y59{bottom:224.799988pt;}
.y30{bottom:227.200012pt;}
.yff{bottom:232.799988pt;}
.y9d{bottom:237.440002pt;}
.yaf{bottom:237.760010pt;}
.y137{bottom:238.719971pt;}
.yd7{bottom:240.159973pt;}
.y58{bottom:240.799988pt;}
.y2f{bottom:243.200012pt;}
.yfe{bottom:248.640015pt;}
.y9c{bottom:253.280029pt;}
.yae{bottom:253.599976pt;}
.y136{bottom:254.400024pt;}
.yd6{bottom:256.159973pt;}
.y57{bottom:256.479980pt;}
.y2e{bottom:259.039978pt;}
.yfd{bottom:264.479980pt;}
.y9b{bottom:269.119995pt;}
.yad{bottom:269.440002pt;}
.y135{bottom:270.400024pt;}
.yd5{bottom:272.000000pt;}
.y56{bottom:272.479980pt;}
.y2d{bottom:274.880005pt;}
.yfc{bottom:280.479980pt;}
.yac{bottom:284.960022pt;}
.y9a{bottom:285.119995pt;}
.y134{bottom:286.400024pt;}
.yd4{bottom:288.000000pt;}
.y55{bottom:288.479980pt;}
.y2c{bottom:290.880005pt;}
.yfb{bottom:296.320007pt;}
.yab{bottom:297.919983pt;}
.y99{bottom:301.119995pt;}
.y133{bottom:302.239990pt;}
.yd3{bottom:303.840027pt;}
.y54{bottom:304.320007pt;}
.y2b{bottom:306.719971pt;}
.yaa{bottom:308.640015pt;}
.yfa{bottom:312.159973pt;}
.y171{bottom:313.280029pt;}
.y98{bottom:316.799988pt;}
.y132{bottom:318.080017pt;}
.yd2{bottom:319.679993pt;}
.y53{bottom:320.159973pt;}
.y2a{bottom:322.559998pt;}
.y170{bottom:326.400024pt;}
.yf9{bottom:328.159973pt;}
.y97{bottom:332.799988pt;}
.y131{bottom:334.080017pt;}
.yd1{bottom:335.679993pt;}
.y52{bottom:336.159973pt;}
.y29{bottom:338.559998pt;}
.y16f{bottom:339.200012pt;}
.yf8{bottom:344.159973pt;}
.y96{bottom:348.799988pt;}
.y130{bottom:349.919983pt;}
.yd0{bottom:351.520020pt;}
.y51{bottom:352.000000pt;}
.y16e{bottom:352.320007pt;}
.y28{bottom:354.400024pt;}
.yf7{bottom:359.840027pt;}
.y95{bottom:364.479980pt;}
.y16d{bottom:365.280029pt;}
.y12f{bottom:365.760010pt;}
.ycf{bottom:367.359985pt;}
.y50{bottom:367.840027pt;}
.y27{bottom:370.239990pt;}
.yf6{bottom:375.840027pt;}
.y16c{bottom:378.400024pt;}
.y94{bottom:380.479980pt;}
.y12e{bottom:381.760010pt;}
.yce{bottom:383.359985pt;}
.y4f{bottom:383.840027pt;}
.y26{bottom:386.239990pt;}
.y16b{bottom:391.359985pt;}
.yf5{bottom:391.679993pt;}
.y93{bottom:396.479980pt;}
.y12d{bottom:397.599976pt;}
.ycd{bottom:399.200012pt;}
.y4e{bottom:399.679993pt;}
.y25{bottom:402.080017pt;}
.y16a{bottom:404.320007pt;}
.yf4{bottom:407.520020pt;}
.y92{bottom:412.320007pt;}
.y12c{bottom:413.599976pt;}
.ycc{bottom:415.039978pt;}
.y4d{bottom:415.679993pt;}
.y169{bottom:417.280029pt;}
.y24{bottom:418.080017pt;}
.yf3{bottom:423.520020pt;}
.y91{bottom:428.159973pt;}
.y12b{bottom:429.280029pt;}
.y168{bottom:430.400024pt;}
.ycb{bottom:431.039978pt;}
.y4c{bottom:431.520020pt;}
.y23{bottom:433.919983pt;}
.yf2{bottom:439.359985pt;}
.y167{bottom:443.359985pt;}
.y90{bottom:444.159973pt;}
.y12a{bottom:445.280029pt;}
.yca{bottom:446.880005pt;}
.y4b{bottom:447.359985pt;}
.y22{bottom:449.760010pt;}
.yf1{bottom:455.359985pt;}
.y166{bottom:456.479980pt;}
.y8f{bottom:460.000000pt;}
.y129{bottom:461.280029pt;}
.yc9{bottom:462.719971pt;}
.y4a{bottom:463.359985pt;}
.y21{bottom:465.760010pt;}
.y165{bottom:469.280029pt;}
.yf0{bottom:471.200012pt;}
.y8e{bottom:475.840027pt;}
.y128{bottom:477.119995pt;}
.yc8{bottom:478.719971pt;}
.y49{bottom:479.200012pt;}
.y20{bottom:481.599976pt;}
.y164{bottom:482.400024pt;}
.yef{bottom:487.039978pt;}
.y8d{bottom:491.840027pt;}
.y127{bottom:492.960022pt;}
.y62{bottom:494.400024pt;}
.yc7{bottom:494.559998pt;}
.y48{bottom:495.039978pt;}
.y163{bottom:495.359985pt;}
.y1f{bottom:497.440002pt;}
.yee{bottom:503.039978pt;}
.y8c{bottom:507.679993pt;}
.y162{bottom:508.479980pt;}
.y126{bottom:508.960022pt;}
.yc6{bottom:510.559998pt;}
.y47{bottom:511.039978pt;}
.y1e{bottom:513.440002pt;}
.yed{bottom:519.039978pt;}
.y161{bottom:521.440002pt;}
.y8b{bottom:523.679993pt;}
.y125{bottom:524.799988pt;}
.yc5{bottom:526.400024pt;}
.y46{bottom:526.880005pt;}
.y1d{bottom:529.440002pt;}
.y160{bottom:534.400024pt;}
.yec{bottom:534.719971pt;}
.y8a{bottom:539.359985pt;}
.y124{bottom:540.640015pt;}
.yc4{bottom:542.239990pt;}
.y45{bottom:542.719971pt;}
.y1c{bottom:545.119995pt;}
.y15f{bottom:547.359985pt;}
.yeb{bottom:550.720001pt;}
.y89{bottom:555.359985pt;}
.y123{bottom:556.640015pt;}
.yc3{bottom:558.239990pt;}
.y44{bottom:558.720001pt;}
.y15e{bottom:560.480011pt;}
.y1b{bottom:561.119995pt;}
.yea{bottom:566.720001pt;}
.y88{bottom:571.359985pt;}
.y122{bottom:572.480011pt;}
.y15d{bottom:573.440002pt;}
.yc2{bottom:574.239990pt;}
.y43{bottom:574.559998pt;}
.y1a{bottom:576.959991pt;}
.ye9{bottom:582.399994pt;}
.y15c{bottom:586.559998pt;}
.y87{bottom:587.200012pt;}
.y121{bottom:588.480011pt;}
.yc1{bottom:589.920013pt;}
.y42{bottom:590.399994pt;}
.y19{bottom:592.959991pt;}
.ye8{bottom:598.399994pt;}
.y15b{bottom:599.519989pt;}
.y86{bottom:602.559998pt;}
.y74{bottom:603.034062pt;}
.y120{bottom:604.320007pt;}
.yc0{bottom:605.920013pt;}
.y41{bottom:606.399994pt;}
.y18{bottom:608.799988pt;}
.y15a{bottom:612.480011pt;}
.y85{bottom:615.679993pt;}
.y11f{bottom:620.160004pt;}
.ybf{bottom:621.920013pt;}
.y40{bottom:622.239990pt;}
.y17{bottom:624.640015pt;}
.ye7{bottom:624.799988pt;}
.y73{bottom:624.961510pt;}
.y159{bottom:625.440002pt;}
.y84{bottom:626.239990pt;}
.y76{bottom:626.718563pt;}
.ya9{bottom:626.880005pt;}
.y11e{bottom:636.160004pt;}
.ybe{bottom:637.119995pt;}
.y3f{bottom:638.239990pt;}
.y158{bottom:638.559998pt;}
.ye6{bottom:638.880005pt;}
.y16{bottom:640.640015pt;}
.ybd{bottom:650.239990pt;}
.y157{bottom:651.519989pt;}
.y11d{bottom:652.000000pt;}
.ye5{bottom:652.959991pt;}
.y72{bottom:653.442537pt;}
.y3e{bottom:654.079987pt;}
.y15{bottom:657.440002pt;}
.ybc{bottom:663.200012pt;}
.y156{bottom:664.640015pt;}
.ye4{bottom:667.040009pt;}
.y11c{bottom:667.839996pt;}
.y3d{bottom:669.920013pt;}
.y71{bottom:670.406039pt;}
.y14{bottom:672.959991pt;}
.ybb{bottom:673.760010pt;}
.ye3{bottom:677.440002pt;}
.y11b{bottom:683.839996pt;}
.y3c{bottom:685.920013pt;}
.y70{bottom:687.524951pt;}
.y13{bottom:688.480011pt;}
.y155{bottom:690.559998pt;}
.y11a{bottom:699.679993pt;}
.y3b{bottom:701.920013pt;}
.y154{bottom:703.519989pt;}
.y12{bottom:704.000000pt;}
.y6f{bottom:704.643821pt;}
.y119{bottom:715.519989pt;}
.y153{bottom:716.640015pt;}
.y3a{bottom:717.600006pt;}
.y6e{bottom:722.087012pt;}
.y152{bottom:729.600006pt;}
.y118{bottom:731.519989pt;}
.y39{bottom:733.600006pt;}
.y11{bottom:734.880005pt;}
.y6d{bottom:739.205903pt;}
.y151{bottom:742.559998pt;}
.y117{bottom:747.359985pt;}
.y10{bottom:750.559998pt;}
.y150{bottom:755.519989pt;}
.y6c{bottom:756.324793pt;}
.y116{bottom:763.359985pt;}
.yf{bottom:765.920013pt;}
.y14f{bottom:768.640015pt;}
.y6b{bottom:773.443684pt;}
.y115{bottom:779.200012pt;}
.ye{bottom:781.440002pt;}
.y14e{bottom:781.600006pt;}
.y6a{bottom:790.562575pt;}
.y14d{bottom:794.720001pt;}
.y114{bottom:795.040009pt;}
.yd{bottom:796.799988pt;}
.y83{bottom:797.279999pt;}
.y14c{bottom:807.520004pt;}
.y69{bottom:807.681465pt;}
.y113{bottom:811.039993pt;}
.yc{bottom:812.320007pt;}
.y14b{bottom:820.639999pt;}
.y68{bottom:824.800356pt;}
.y112{bottom:826.880005pt;}
.yb{bottom:827.679993pt;}
.y14a{bottom:833.600006pt;}
.y67{bottom:842.081397pt;}
.y111{bottom:842.720001pt;}
.ya{bottom:843.039993pt;}
.y149{bottom:846.720001pt;}
.y9{bottom:858.559998pt;}
.y110{bottom:858.720001pt;}
.y66{bottom:859.200288pt;}
.y148{bottom:859.679993pt;}
.y147{bottom:872.639999pt;}
.y8{bottom:873.919998pt;}
.y10f{bottom:874.720001pt;}
.y65{bottom:876.319178pt;}
.y146{bottom:885.600006pt;}
.y7{bottom:889.440002pt;}
.y78{bottom:889.762977pt;}
.y10e{bottom:890.399994pt;}
.y64{bottom:893.444831pt;}
.y145{bottom:898.720001pt;}
.y6{bottom:904.960007pt;}
.y10d{bottom:906.399994pt;}
.y144{bottom:911.679993pt;}
.y10c{bottom:922.399994pt;}
.y5{bottom:924.000000pt;}
.y143{bottom:924.800003pt;}
.y10b{bottom:938.080002pt;}
.y4{bottom:953.760002pt;}
.y10a{bottom:954.080002pt;}
.y7f{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h13{height:2.558024pt;}
.h11{height:11.520724pt;}
.hb{height:13.280907pt;}
.hd{height:16.482849pt;}
.hf{height:16.639243pt;}
.hc{height:29.834879pt;}
.h12{height:30.171039pt;}
.h16{height:34.059243pt;}
.he{height:36.959352pt;}
.h1{height:41.779132pt;}
.h9{height:41.858192pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.ha{height:45.498466pt;}
.h6{height:45.661637pt;}
.h7{height:47.839966pt;}
.h3{height:49.566735pt;}
.h14{height:54.941312pt;}
.h10{height:55.045279pt;}
.h15{height:74.648487pt;}
.h4{height:110.053376pt;}
.h8{height:185.281874pt;}
.h0{height:1056.000000pt;}
.w10{width:2.078934pt;}
.w17{width:2.401013pt;}
.w9{width:2.559674pt;}
.wd{width:2.559687pt;}
.w11{width:2.560727pt;}
.w1a{width:4.161084pt;}
.w19{width:4.637009pt;}
.w3{width:5.116812pt;}
.w18{width:5.281220pt;}
.w6{width:6.558097pt;}
.w7{width:7.998723pt;}
.wa{width:12.159567pt;}
.w8{width:19.842872pt;}
.w14{width:28.003188pt;}
.w4{width:30.242782pt;}
.w16{width:30.401550pt;}
.wb{width:32.160015pt;}
.w5{width:40.323728pt;}
.w1{width:44.319999pt;}
.w12{width:47.522870pt;}
.w15{width:49.120061pt;}
.w13{width:52.159930pt;}
.w2{width:75.841797pt;}
.we{width:85.121167pt;}
.wc{width:86.875903pt;}
.wf{width:141.756807pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.xd{left:101.918829pt;}
.xe{left:121.599855pt;}
.xf{left:124.001947pt;}
.x3{left:135.839996pt;}
.x7{left:137.602556pt;}
.x10{left:138.559343pt;}
.x9{left:140.157865pt;}
.xa{left:170.400647pt;}
.xb{left:210.724375pt;}
.x8{left:213.444353pt;}
.x2{left:221.279999pt;}
.x11{left:257.118250pt;}
.x12{left:259.520355pt;}
.xc{left:276.158686pt;}
.x6{left:278.556944pt;}
.x13{left:344.641522pt;}
.x1f{left:396.000000pt;}
.x5{left:419.679993pt;}
.x21{left:442.239990pt;}
.x4{left:464.799988pt;}
.x14{left:486.398329pt;}
.x15{left:488.320252pt;}
.x16{left:490.718614pt;}
.x17{left:538.079117pt;}
.x25{left:558.719971pt;}
.x18{left:589.757255pt;}
.x24{left:593.599976pt;}
.x23{left:596.320007pt;}
.x19{left:617.760443pt;}
.x1a{left:619.677011pt;}
.x1b{left:668.797072pt;}
.x1c{left:698.879194pt;}
.x1d{left:701.117841pt;}
.x1e{left:705.600491pt;}
.x22{left:723.840027pt;}
.x20{left:724.960022pt;}
}




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