
    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_1fabb6d8e0aa082bc1317af0.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_7151ea17634be63c2109cfc3.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_3498180a562b258e85a69687.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_5a741ecb5a7f0c287c935697.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_c702b59ee5fb6dde734028b4.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_02fbc9876c1b7ccb9846c745.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_f3c36db601a744c1adf998c6.woff')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_6715aea89cb77029e6425bdb.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;}
.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;}
.ls1{letter-spacing:0.000000px;}
.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(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{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);}
.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(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.565086px;}
.ws2{word-spacing:-15.446864px;}
.ws1{word-spacing:-12.469248px;}
.ws3{word-spacing:-10.754859px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-2.299282px;}
._0{margin-left:-1.242855px;}
._1{width:1.182169px;}
._9{width:3.175834px;}
._e{width:4.557783px;}
._5{width:5.604256px;}
._6{width:6.846626px;}
._1a{width:8.234643px;}
._1d{width:9.592061px;}
._b{width:10.714527px;}
._a{width:11.964179px;}
._7{width:13.102653px;}
._8{width:14.298416px;}
._28{width:15.523793px;}
._19{width:16.644790px;}
._f{width:18.126263px;}
._2e{width:19.143771px;}
._12{width:20.187412px;}
._1b{width:21.489497px;}
._14{width:23.217599px;}
._13{width:24.402196px;}
._1f{width:26.707246px;}
._1e{width:28.139324px;}
._20{width:29.584106px;}
._1c{width:31.186193px;}
._10{width:33.061399px;}
._11{width:34.230460px;}
._22{width:35.953708px;}
._23{width:37.005279px;}
._27{width:38.067532px;}
._c{width:40.085472px;}
._d{width:41.119081px;}
._4{width:42.125259px;}
._3{width:43.363745px;}
._15{width:47.042062px;}
._16{width:48.846629px;}
._29{width:53.370645px;}
._2a{width:63.698709px;}
._2b{width:65.101215px;}
._24{width:70.034879px;}
._25{width:71.453724px;}
._2d{width:72.459936px;}
._2c{width:73.468263px;}
._17{width:78.600626px;}
._26{width:123.603872px;}
._2{width:549.563316px;}
._21{width:680.322451px;}
.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);}
.fs9{font-size:39.251312px;}
.fs1{font-size:45.256050px;}
.fs7{font-size:45.342719px;}
.fs2{font-size:50.660100px;}
.fsb{font-size:50.755829px;}
.fs3{font-size:56.063700px;}
.fs8{font-size:56.170413px;}
.fs0{font-size:62.142750px;}
.fs6{font-size:62.260346px;}
.fsa{font-size:84.433046px;}
.fs4{font-size:120.908250px;}
.fs5{font-size:289.774809px;}
.y88{bottom:-8.280173px;}
.y0{bottom:0.000000px;}
.y85{bottom:2.518537px;}
.y7e{bottom:2.878534px;}
.y80{bottom:2.885132px;}
.y82{bottom:3.599788px;}
.y65{bottom:3.599945px;}
.y110{bottom:4.137308px;}
.y113{bottom:4.142039px;}
.y8c{bottom:6.839950px;}
.y8b{bottom:30.420044px;}
.y3{bottom:31.500000px;}
.y8a{bottom:47.340019px;}
.y2{bottom:48.240006px;}
.yb1{bottom:70.740006px;}
.y10d{bottom:71.639992px;}
.y87{bottom:71.823738px;}
.yd4{bottom:72.899986px;}
.y86{bottom:76.863736px;}
.y84{bottom:87.306014px;}
.yb0{bottom:88.559967px;}
.y10c{bottom:89.639992px;}
.yd3{bottom:90.899986px;}
.yaf{bottom:106.379998px;}
.y10b{bottom:107.460022px;}
.yd2{bottom:108.720017px;}
.y3a{bottom:109.620002px;}
.y63{bottom:110.340019px;}
.yae{bottom:124.379998px;}
.y10a{bottom:125.279983px;}
.yd1{bottom:126.539977px;}
.y39{bottom:127.440033px;}
.y62{bottom:128.159981px;}
.yad{bottom:142.200027px;}
.y109{bottom:143.279983px;}
.yd0{bottom:144.539977px;}
.y38{bottom:145.259994px;}
.y61{bottom:145.980011px;}
.yac{bottom:160.019989px;}
.y108{bottom:161.100013px;}
.ycf{bottom:162.360008px;}
.y37{bottom:163.259994px;}
.y60{bottom:163.980011px;}
.yab{bottom:178.019989px;}
.y107{bottom:178.919975px;}
.yce{bottom:180.360008px;}
.y36{bottom:181.259994px;}
.y5f{bottom:181.799973px;}
.y112{bottom:192.609701px;}
.yaa{bottom:195.840019px;}
.y111{bottom:196.748790px;}
.y106{bottom:196.919975px;}
.ycd{bottom:198.179970px;}
.y35{bottom:198.899986px;}
.y5e{bottom:199.799973px;}
.ya9{bottom:213.840019px;}
.y105{bottom:214.919975px;}
.ycc{bottom:216.000000px;}
.y34{bottom:216.899986px;}
.y5d{bottom:217.620002px;}
.ya8{bottom:231.659981px;}
.y104{bottom:232.559967px;}
.ycb{bottom:234.000000px;}
.y33{bottom:234.899986px;}
.y5c{bottom:235.440033px;}
.ya7{bottom:249.480011px;}
.y103{bottom:250.559967px;}
.yca{bottom:252.000000px;}
.y32{bottom:252.539977px;}
.y5b{bottom:253.440033px;}
.ya6{bottom:267.480011px;}
.y102{bottom:268.559967px;}
.yc9{bottom:269.639992px;}
.y31{bottom:270.539977px;}
.y5a{bottom:271.259994px;}
.ya5{bottom:285.299973px;}
.y101{bottom:286.200027px;}
.yc8{bottom:287.639992px;}
.y30{bottom:288.539977px;}
.y59{bottom:289.080025px;}
.ya4{bottom:303.120002px;}
.y100{bottom:304.200027px;}
.yc7{bottom:305.460022px;}
.y2f{bottom:306.360008px;}
.y58{bottom:307.080025px;}
.ya3{bottom:321.120002px;}
.yff{bottom:322.200027px;}
.yc6{bottom:323.279983px;}
.y2e{bottom:324.179970px;}
.y57{bottom:325.080025px;}
.ya2{bottom:339.120002px;}
.yfe{bottom:340.019989px;}
.yc5{bottom:341.279983px;}
.y2d{bottom:342.000000px;}
.y56{bottom:342.720017px;}
.ya1{bottom:356.759994px;}
.yfd{bottom:357.840019px;}
.yc4{bottom:359.100013px;}
.y2c{bottom:360.000000px;}
.y55{bottom:360.720017px;}
.ya0{bottom:374.759994px;}
.yfc{bottom:375.840019px;}
.yc3{bottom:377.100013px;}
.y2b{bottom:377.820030px;}
.y54{bottom:378.720017px;}
.y9f{bottom:392.759994px;}
.yfb{bottom:393.659981px;}
.yc2{bottom:394.919975px;}
.y2a{bottom:395.639992px;}
.y53{bottom:396.360008px;}
.y9e{bottom:410.399986px;}
.yfa{bottom:411.480011px;}
.yc1{bottom:412.740006px;}
.y29{bottom:413.639992px;}
.y52{bottom:414.360008px;}
.y9d{bottom:428.399986px;}
.yf9{bottom:429.480011px;}
.yc0{bottom:430.740006px;}
.y28{bottom:431.639992px;}
.y51{bottom:432.179970px;}
.y9c{bottom:446.220017px;}
.yf8{bottom:447.299973px;}
.ybf{bottom:448.559967px;}
.y27{bottom:449.279983px;}
.y50{bottom:450.179970px;}
.y9b{bottom:464.220017px;}
.yf7{bottom:465.299973px;}
.ybe{bottom:466.379998px;}
.y26{bottom:467.279983px;}
.y4f{bottom:468.000000px;}
.y13a{bottom:469.440033px;}
.y9a{bottom:482.039977px;}
.yf6{bottom:482.940033px;}
.y139{bottom:484.200027px;}
.ybd{bottom:484.379998px;}
.y25{bottom:485.279983px;}
.y4e{bottom:485.820030px;}
.y138{bottom:498.779983px;}
.y99{bottom:499.860008px;}
.yf5{bottom:500.940033px;}
.ybc{bottom:502.379998px;}
.y24{bottom:503.100013px;}
.y4d{bottom:503.820030px;}
.y137{bottom:513.539977px;}
.y98{bottom:517.860008px;}
.yf4{bottom:518.940033px;}
.ybb{bottom:520.019989px;}
.y23{bottom:520.919975px;}
.y4c{bottom:521.820030px;}
.y136{bottom:527.940033px;}
.y97{bottom:535.860008px;}
.yf3{bottom:536.759994px;}
.yba{bottom:538.019989px;}
.y22{bottom:538.919975px;}
.y4b{bottom:539.460022px;}
.y135{bottom:542.700027px;}
.y64{bottom:553.320030px;}
.y96{bottom:553.500000px;}
.yf2{bottom:554.580025px;}
.yb9{bottom:556.019989px;}
.y21{bottom:556.740006px;}
.y134{bottom:557.279983px;}
.y4a{bottom:557.460022px;}
.y95{bottom:571.500000px;}
.y133{bottom:572.039977px;}
.yf1{bottom:572.580025px;}
.yb8{bottom:573.840019px;}
.y20{bottom:574.559967px;}
.y49{bottom:575.460022px;}
.y132{bottom:586.620002px;}
.y94{bottom:589.500000px;}
.yf0{bottom:590.399986px;}
.yb7{bottom:591.659981px;}
.y1f{bottom:592.559967px;}
.y48{bottom:593.100013px;}
.y131{bottom:601.200027px;}
.y93{bottom:607.139992px;}
.yef{bottom:608.220017px;}
.yb6{bottom:609.659981px;}
.y1e{bottom:610.379998px;}
.y47{bottom:610.919975px;}
.y130{bottom:615.779983px;}
.y92{bottom:625.139992px;}
.yee{bottom:626.220017px;}
.y46{bottom:627.300007px;}
.yb5{bottom:627.480011px;}
.y7d{bottom:627.489675px;}
.y1d{bottom:628.379998px;}
.y12f{bottom:630.540012px;}
.y10f{bottom:639.906422px;}
.y91{bottom:643.139992px;}
.yed{bottom:644.040012px;}
.y10e{bottom:644.049240px;}
.yb4{bottom:644.759994px;}
.y12e{bottom:645.120002px;}
.y45{bottom:645.300007px;}
.y1c{bottom:646.199993px;}
.y7c{bottom:649.629814px;}
.yb3{bottom:659.519989px;}
.y12d{bottom:659.879998px;}
.y90{bottom:660.959988px;}
.yec{bottom:662.040012px;}
.y44{bottom:663.120002px;}
.y1b{bottom:664.019989px;}
.y7b{bottom:667.808408px;}
.yb2{bottom:671.399986px;}
.y12c{bottom:674.459988px;}
.y8f{bottom:678.240006px;}
.yeb{bottom:679.860008px;}
.y43{bottom:680.939999px;}
.y1a{bottom:682.019989px;}
.y7a{bottom:685.621237px;}
.y12b{bottom:689.040012px;}
.y8e{bottom:693.000000px;}
.yea{bottom:697.680004px;}
.y42{bottom:698.939999px;}
.y19{bottom:699.839985px;}
.y79{bottom:703.443574px;}
.y12a{bottom:703.620002px;}
.y8d{bottom:704.879998px;}
.ye9{bottom:715.680004px;}
.y41{bottom:716.759994px;}
.y18{bottom:717.660015px;}
.y129{bottom:718.379998px;}
.y78{bottom:721.442602px;}
.y128{bottom:732.959988px;}
.ye8{bottom:733.500000px;}
.y40{bottom:734.759994px;}
.y17{bottom:735.660015px;}
.y77{bottom:739.082544px;}
.y7f{bottom:746.991950px;}
.y127{bottom:747.720017px;}
.ye7{bottom:751.319995px;}
.y3f{bottom:752.579990px;}
.y16{bottom:753.480011px;}
.y76{bottom:757.087277px;}
.y126{bottom:762.120002px;}
.ye6{bottom:769.319995px;}
.y3e{bottom:770.399986px;}
.y15{bottom:771.300007px;}
.y81{bottom:773.640347px;}
.y75{bottom:775.084403px;}
.y125{bottom:776.879998px;}
.ye5{bottom:787.139992px;}
.y3d{bottom:788.399986px;}
.y14{bottom:789.300007px;}
.y124{bottom:791.459988px;}
.y74{bottom:792.906741px;}
.ye4{bottom:804.959988px;}
.y3c{bottom:806.220017px;}
.y13{bottom:808.199993px;}
.y73{bottom:810.721447px;}
.y123{bottom:820.800007px;}
.ye3{bottom:822.959988px;}
.y3b{bottom:824.040012px;}
.y12{bottom:825.660015px;}
.y72{bottom:828.726181px;}
.y122{bottom:835.379998px;}
.ye2{bottom:840.779983px;}
.y11{bottom:843.300007px;}
.y71{bottom:846.540911px;}
.y121{bottom:849.959988px;}
.ye1{bottom:858.779983px;}
.y10{bottom:860.399986px;}
.y70{bottom:864.363249px;}
.y120{bottom:864.720017px;}
.ye0{bottom:876.600013px;}
.yf{bottom:877.860008px;}
.y11f{bottom:879.300007px;}
.y6f{bottom:882.360375px;}
.y11e{bottom:894.060001px;}
.ydf{bottom:894.420010px;}
.ye{bottom:895.319996px;}
.y6e{bottom:900.182689px;}
.y11d{bottom:908.460004px;}
.yde{bottom:912.419992px;}
.yd{bottom:912.599997px;}
.y6d{bottom:918.179838px;}
.y11c{bottom:923.219999px;}
.yc{bottom:930.060001px;}
.ydd{bottom:930.240006px;}
.y6c{bottom:936.002152px;}
.y11b{bottom:937.800007px;}
.yb{bottom:947.340002px;}
.ydc{bottom:948.060001px;}
.y11a{bottom:952.560001px;}
.y6b{bottom:953.824490px;}
.ya{bottom:964.620002px;}
.ydb{bottom:966.060001px;}
.y119{bottom:967.139992px;}
.y6a{bottom:971.821616px;}
.y118{bottom:981.719999px;}
.y9{bottom:982.080008px;}
.yda{bottom:984.060001px;}
.y69{bottom:989.818742px;}
.y117{bottom:996.300007px;}
.y8{bottom:999.360008px;}
.yd9{bottom:1001.699993px;}
.y68{bottom:1007.458672px;}
.y116{bottom:1011.060001px;}
.y7{bottom:1016.819996px;}
.yd8{bottom:1019.699993px;}
.y67{bottom:1025.463405px;}
.y115{bottom:1025.639992px;}
.y6{bottom:1034.099997px;}
.yd7{bottom:1037.699993px;}
.y83{bottom:1038.604042px;}
.y114{bottom:1040.400003px;}
.y66{bottom:1043.278135px;}
.y5{bottom:1051.560001px;}
.yd6{bottom:1055.340002px;}
.y4{bottom:1072.980002px;}
.yd5{bottom:1073.340002px;}
.y89{bottom:1105.379998px;}
.y1{bottom:1123.380001px;}
.h13{height:2.521461px;}
.h11{height:12.960814px;}
.hc{height:14.764606px;}
.hb{height:16.012526px;}
.h19{height:16.021989px;}
.h18{height:16.022036px;}
.he{height:18.362328px;}
.h12{height:33.942419px;}
.h16{height:38.316648px;}
.h17{height:38.389052px;}
.hd{height:39.232079px;}
.h7{height:42.403648px;}
.h1{height:47.001523px;}
.ha{height:47.090466px;}
.hf{height:48.600572px;}
.h2{height:50.388000px;}
.h5{height:51.065381px;}
.h6{height:51.369341px;}
.h8{height:53.639992px;}
.h3{height:55.762577px;}
.h14{height:61.808975px;}
.h10{height:61.925939px;}
.h15{height:83.979548px;}
.h4{height:123.810048px;}
.h9{height:219.170498px;}
.h0{height:1188.000000px;}
.w19{width:2.338800px;}
.w1f{width:2.877835px;}
.w16{width:2.879633px;}
.w1c{width:2.880818px;}
.w1a{width:2.880847px;}
.wf{width:3.060854px;}
.w8{width:3.956814px;}
.w3{width:3.959666px;}
.wb{width:3.961592px;}
.w22{width:4.681219px;}
.w5{width:5.403688px;}
.w11{width:5.756397px;}
.wd{width:7.025398px;}
.w14{width:7.377859px;}
.wa{width:8.098899px;}
.w7{width:8.103631px;}
.w24{width:8.998563px;}
.w23{width:9.001416px;}
.w1d{width:10.798651px;}
.w17{width:13.679513px;}
.w15{width:22.323231px;}
.w1e{width:31.323908px;}
.w12{width:34.023130px;}
.we{width:34.377894px;}
.w4{width:35.097441px;}
.w10{width:41.401793px;}
.w13{width:45.364194px;}
.w1{width:52.380006px;}
.w21{width:57.422174px;}
.w2{width:67.139634px;}
.w6{width:69.124210px;}
.wc{width:84.062261px;}
.w1b{width:87.482339px;}
.w20{width:133.378171px;}
.w9{width:153.366084px;}
.w18{width:287.461848px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:102.959997px;}
.x26{left:113.401361px;}
.x18{left:114.658682px;}
.x19{left:136.799837px;}
.x1a{left:139.502190px;}
.x4{left:153.539996px;}
.x3{left:155.340002px;}
.x14{left:158.223502px;}
.x29{left:162.900003px;}
.x15{left:192.601396px;}
.x16{left:195.662250px;}
.x17{left:236.704272px;}
.x2{left:248.939999px;}
.x2a{left:256.500000px;}
.x7{left:310.321314px;}
.x2c{left:323.639992px;}
.x2b{left:328.139992px;}
.x2d{left:329.759994px;}
.x28{left:331.016504px;}
.x8{left:377.278553px;}
.x9{left:381.238219px;}
.xa{left:416.153264px;}
.xb{left:421.374556px;}
.x24{left:439.199993px;}
.x1b{left:443.341109px;}
.x1c{left:445.500231px;}
.x1d{left:448.198417px;}
.x5{left:472.139992px;}
.xc{left:490.313541px;}
.xd{left:498.236678px;}
.xe{left:502.193491px;}
.x6{left:522.899987px;}
.x1e{left:535.321400px;}
.x1f{left:538.019556px;}
.x20{left:548.276190px;}
.x21{left:579.600098px;}
.x22{left:581.759220px;}
.x27{left:621.895696px;}
.xf{left:655.193810px;}
.x10{left:663.292709px;}
.x11{left:667.073807px;}
.x23{left:715.137391px;}
.x12{left:750.955574px;}
.x13{left:754.912387px;}
.x25{left:812.700027px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1062.076240pt;}
.ls0{letter-spacing:1065.468590pt;}
.ws0{word-spacing:-13.835632pt;}
.ws2{word-spacing:-13.730545pt;}
.ws1{word-spacing:-11.083776pt;}
.ws3{word-spacing:-9.559875pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-2.043806pt;}
._0{margin-left:-1.104760pt;}
._1{width:1.050817pt;}
._9{width:2.822964pt;}
._e{width:4.051362pt;}
._5{width:4.981561pt;}
._6{width:6.085890pt;}
._1a{width:7.319682pt;}
._1d{width:8.526276pt;}
._b{width:9.524024pt;}
._a{width:10.634825pt;}
._7{width:11.646803pt;}
._8{width:12.709703pt;}
._28{width:13.798927pt;}
._19{width:14.795369pt;}
._f{width:16.112234pt;}
._2e{width:17.016685pt;}
._12{width:17.944366pt;}
._1b{width:19.101775pt;}
._14{width:20.637866pt;}
._13{width:21.690841pt;}
._1f{width:23.739774pt;}
._1e{width:25.012733pt;}
._20{width:26.296983pt;}
._1c{width:27.721061pt;}
._10{width:29.387911pt;}
._11{width:30.427075pt;}
._22{width:31.958851pt;}
._23{width:32.893582pt;}
._27{width:33.837806pt;}
._c{width:35.631531pt;}
._d{width:36.550294pt;}
._4{width:37.444675pt;}
._3{width:38.545551pt;}
._15{width:41.815166pt;}
._16{width:43.419226pt;}
._29{width:47.440574pt;}
._2a{width:56.621075pt;}
._2b{width:57.867747pt;}
._24{width:62.253226pt;}
._25{width:63.514422pt;}
._2d{width:64.408832pt;}
._2c{width:65.305123pt;}
._17{width:69.867223pt;}
._26{width:109.870108pt;}
._2{width:488.500725pt;}
._21{width:604.731067pt;}
.fs9{font-size:34.890055pt;}
.fs1{font-size:40.227600pt;}
.fs7{font-size:40.304639pt;}
.fs2{font-size:45.031200pt;}
.fsb{font-size:45.116292pt;}
.fs3{font-size:49.834400pt;}
.fs8{font-size:49.929256pt;}
.fs0{font-size:55.238000pt;}
.fs6{font-size:55.342529pt;}
.fsa{font-size:75.051596pt;}
.fs4{font-size:107.474000pt;}
.fs5{font-size:257.577608pt;}
.y88{bottom:-7.360153pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:2.238699pt;}
.y7e{bottom:2.558697pt;}
.y80{bottom:2.564562pt;}
.y82{bottom:3.199812pt;}
.y65{bottom:3.199951pt;}
.y110{bottom:3.677607pt;}
.y113{bottom:3.681813pt;}
.y8c{bottom:6.079956pt;}
.y8b{bottom:27.040039pt;}
.y3{bottom:28.000000pt;}
.y8a{bottom:42.080017pt;}
.y2{bottom:42.880005pt;}
.yb1{bottom:62.880005pt;}
.y10d{bottom:63.679993pt;}
.y87{bottom:63.843322pt;}
.yd4{bottom:64.799988pt;}
.y86{bottom:68.323321pt;}
.y84{bottom:77.605345pt;}
.yb0{bottom:78.719971pt;}
.y10c{bottom:79.679993pt;}
.yd3{bottom:80.799988pt;}
.yaf{bottom:94.559998pt;}
.y10b{bottom:95.520020pt;}
.yd2{bottom:96.640015pt;}
.y3a{bottom:97.440002pt;}
.y63{bottom:98.080017pt;}
.yae{bottom:110.559998pt;}
.y10a{bottom:111.359985pt;}
.yd1{bottom:112.479980pt;}
.y39{bottom:113.280029pt;}
.y62{bottom:113.919983pt;}
.yad{bottom:126.400024pt;}
.y109{bottom:127.359985pt;}
.yd0{bottom:128.479980pt;}
.y38{bottom:129.119995pt;}
.y61{bottom:129.760010pt;}
.yac{bottom:142.239990pt;}
.y108{bottom:143.200012pt;}
.ycf{bottom:144.320007pt;}
.y37{bottom:145.119995pt;}
.y60{bottom:145.760010pt;}
.yab{bottom:158.239990pt;}
.y107{bottom:159.039978pt;}
.yce{bottom:160.320007pt;}
.y36{bottom:161.119995pt;}
.y5f{bottom:161.599976pt;}
.y112{bottom:171.208623pt;}
.yaa{bottom:174.080017pt;}
.y111{bottom:174.887813pt;}
.y106{bottom:175.039978pt;}
.ycd{bottom:176.159973pt;}
.y35{bottom:176.799988pt;}
.y5e{bottom:177.599976pt;}
.ya9{bottom:190.080017pt;}
.y105{bottom:191.039978pt;}
.ycc{bottom:192.000000pt;}
.y34{bottom:192.799988pt;}
.y5d{bottom:193.440002pt;}
.ya8{bottom:205.919983pt;}
.y104{bottom:206.719971pt;}
.ycb{bottom:208.000000pt;}
.y33{bottom:208.799988pt;}
.y5c{bottom:209.280029pt;}
.ya7{bottom:221.760010pt;}
.y103{bottom:222.719971pt;}
.yca{bottom:224.000000pt;}
.y32{bottom:224.479980pt;}
.y5b{bottom:225.280029pt;}
.ya6{bottom:237.760010pt;}
.y102{bottom:238.719971pt;}
.yc9{bottom:239.679993pt;}
.y31{bottom:240.479980pt;}
.y5a{bottom:241.119995pt;}
.ya5{bottom:253.599976pt;}
.y101{bottom:254.400024pt;}
.yc8{bottom:255.679993pt;}
.y30{bottom:256.479980pt;}
.y59{bottom:256.960022pt;}
.ya4{bottom:269.440002pt;}
.y100{bottom:270.400024pt;}
.yc7{bottom:271.520020pt;}
.y2f{bottom:272.320007pt;}
.y58{bottom:272.960022pt;}
.ya3{bottom:285.440002pt;}
.yff{bottom:286.400024pt;}
.yc6{bottom:287.359985pt;}
.y2e{bottom:288.159973pt;}
.y57{bottom:288.960022pt;}
.ya2{bottom:301.440002pt;}
.yfe{bottom:302.239990pt;}
.yc5{bottom:303.359985pt;}
.y2d{bottom:304.000000pt;}
.y56{bottom:304.640015pt;}
.ya1{bottom:317.119995pt;}
.yfd{bottom:318.080017pt;}
.yc4{bottom:319.200012pt;}
.y2c{bottom:320.000000pt;}
.y55{bottom:320.640015pt;}
.ya0{bottom:333.119995pt;}
.yfc{bottom:334.080017pt;}
.yc3{bottom:335.200012pt;}
.y2b{bottom:335.840027pt;}
.y54{bottom:336.640015pt;}
.y9f{bottom:349.119995pt;}
.yfb{bottom:349.919983pt;}
.yc2{bottom:351.039978pt;}
.y2a{bottom:351.679993pt;}
.y53{bottom:352.320007pt;}
.y9e{bottom:364.799988pt;}
.yfa{bottom:365.760010pt;}
.yc1{bottom:366.880005pt;}
.y29{bottom:367.679993pt;}
.y52{bottom:368.320007pt;}
.y9d{bottom:380.799988pt;}
.yf9{bottom:381.760010pt;}
.yc0{bottom:382.880005pt;}
.y28{bottom:383.679993pt;}
.y51{bottom:384.159973pt;}
.y9c{bottom:396.640015pt;}
.yf8{bottom:397.599976pt;}
.ybf{bottom:398.719971pt;}
.y27{bottom:399.359985pt;}
.y50{bottom:400.159973pt;}
.y9b{bottom:412.640015pt;}
.yf7{bottom:413.599976pt;}
.ybe{bottom:414.559998pt;}
.y26{bottom:415.359985pt;}
.y4f{bottom:416.000000pt;}
.y13a{bottom:417.280029pt;}
.y9a{bottom:428.479980pt;}
.yf6{bottom:429.280029pt;}
.y139{bottom:430.400024pt;}
.ybd{bottom:430.559998pt;}
.y25{bottom:431.359985pt;}
.y4e{bottom:431.840027pt;}
.y138{bottom:443.359985pt;}
.y99{bottom:444.320007pt;}
.yf5{bottom:445.280029pt;}
.ybc{bottom:446.559998pt;}
.y24{bottom:447.200012pt;}
.y4d{bottom:447.840027pt;}
.y137{bottom:456.479980pt;}
.y98{bottom:460.320007pt;}
.yf4{bottom:461.280029pt;}
.ybb{bottom:462.239990pt;}
.y23{bottom:463.039978pt;}
.y4c{bottom:463.840027pt;}
.y136{bottom:469.280029pt;}
.y97{bottom:476.320007pt;}
.yf3{bottom:477.119995pt;}
.yba{bottom:478.239990pt;}
.y22{bottom:479.039978pt;}
.y4b{bottom:479.520020pt;}
.y135{bottom:482.400024pt;}
.y64{bottom:491.840027pt;}
.y96{bottom:492.000000pt;}
.yf2{bottom:492.960022pt;}
.yb9{bottom:494.239990pt;}
.y21{bottom:494.880005pt;}
.y134{bottom:495.359985pt;}
.y4a{bottom:495.520020pt;}
.y95{bottom:508.000000pt;}
.y133{bottom:508.479980pt;}
.yf1{bottom:508.960022pt;}
.yb8{bottom:510.080017pt;}
.y20{bottom:510.719971pt;}
.y49{bottom:511.520020pt;}
.y132{bottom:521.440002pt;}
.y94{bottom:524.000000pt;}
.yf0{bottom:524.799988pt;}
.yb7{bottom:525.919983pt;}
.y1f{bottom:526.719971pt;}
.y48{bottom:527.200012pt;}
.y131{bottom:534.400024pt;}
.y93{bottom:539.679993pt;}
.yef{bottom:540.640015pt;}
.yb6{bottom:541.919983pt;}
.y1e{bottom:542.559998pt;}
.y47{bottom:543.039978pt;}
.y130{bottom:547.359985pt;}
.y92{bottom:555.679993pt;}
.yee{bottom:556.640015pt;}
.y46{bottom:557.600006pt;}
.yb5{bottom:557.760010pt;}
.y7d{bottom:557.768600pt;}
.y1d{bottom:558.559998pt;}
.y12f{bottom:560.480011pt;}
.y10f{bottom:568.805709pt;}
.y91{bottom:571.679993pt;}
.yed{bottom:572.480011pt;}
.y10e{bottom:572.488213pt;}
.yb4{bottom:573.119995pt;}
.y12e{bottom:573.440002pt;}
.y45{bottom:573.600006pt;}
.y1c{bottom:574.399994pt;}
.y7c{bottom:577.448724pt;}
.yb3{bottom:586.239990pt;}
.y12d{bottom:586.559998pt;}
.y90{bottom:587.519989pt;}
.yec{bottom:588.480011pt;}
.y44{bottom:589.440002pt;}
.y1b{bottom:590.239990pt;}
.y7b{bottom:593.607474pt;}
.yb2{bottom:596.799988pt;}
.y12c{bottom:599.519989pt;}
.y8f{bottom:602.880005pt;}
.yeb{bottom:604.320007pt;}
.y43{bottom:605.279999pt;}
.y1a{bottom:606.239990pt;}
.y7a{bottom:609.441099pt;}
.y12b{bottom:612.480011pt;}
.y8e{bottom:616.000000pt;}
.yea{bottom:620.160004pt;}
.y42{bottom:621.279999pt;}
.y19{bottom:622.079987pt;}
.y79{bottom:625.283177pt;}
.y12a{bottom:625.440002pt;}
.y8d{bottom:626.559998pt;}
.ye9{bottom:636.160004pt;}
.y41{bottom:637.119995pt;}
.y18{bottom:637.920013pt;}
.y129{bottom:638.559998pt;}
.y78{bottom:641.282313pt;}
.y128{bottom:651.519989pt;}
.ye8{bottom:652.000000pt;}
.y40{bottom:653.119995pt;}
.y17{bottom:653.920013pt;}
.y77{bottom:656.962261pt;}
.y7f{bottom:663.992844pt;}
.y127{bottom:664.640015pt;}
.ye7{bottom:667.839996pt;}
.y3f{bottom:668.959991pt;}
.y16{bottom:669.760010pt;}
.y76{bottom:672.966469pt;}
.y126{bottom:677.440002pt;}
.ye6{bottom:683.839996pt;}
.y3e{bottom:684.799988pt;}
.y15{bottom:685.600006pt;}
.y81{bottom:687.680308pt;}
.y75{bottom:688.963914pt;}
.y125{bottom:690.559998pt;}
.ye5{bottom:699.679993pt;}
.y3d{bottom:700.799988pt;}
.y14{bottom:701.600006pt;}
.y124{bottom:703.519989pt;}
.y74{bottom:704.805992pt;}
.ye4{bottom:715.519989pt;}
.y3c{bottom:716.640015pt;}
.y13{bottom:718.399994pt;}
.y73{bottom:720.641287pt;}
.y123{bottom:729.600006pt;}
.ye3{bottom:731.519989pt;}
.y3b{bottom:732.480011pt;}
.y12{bottom:733.920013pt;}
.y72{bottom:736.645494pt;}
.y122{bottom:742.559998pt;}
.ye2{bottom:747.359985pt;}
.y11{bottom:749.600006pt;}
.y71{bottom:752.480810pt;}
.y121{bottom:755.519989pt;}
.ye1{bottom:763.359985pt;}
.y10{bottom:764.799988pt;}
.y70{bottom:768.322888pt;}
.y120{bottom:768.640015pt;}
.ye0{bottom:779.200012pt;}
.yf{bottom:780.320007pt;}
.y11f{bottom:781.600006pt;}
.y6f{bottom:784.320333pt;}
.y11e{bottom:794.720001pt;}
.ydf{bottom:795.040009pt;}
.ye{bottom:795.839996pt;}
.y6e{bottom:800.162390pt;}
.y11d{bottom:807.520004pt;}
.yde{bottom:811.039993pt;}
.yd{bottom:811.199997pt;}
.y6d{bottom:816.159856pt;}
.y11c{bottom:820.639999pt;}
.yc{bottom:826.720001pt;}
.ydd{bottom:826.880005pt;}
.y6c{bottom:832.001913pt;}
.y11b{bottom:833.600006pt;}
.yb{bottom:842.080002pt;}
.ydc{bottom:842.720001pt;}
.y11a{bottom:846.720001pt;}
.y6b{bottom:847.843991pt;}
.ya{bottom:857.440002pt;}
.ydb{bottom:858.720001pt;}
.y119{bottom:859.679993pt;}
.y6a{bottom:863.841436pt;}
.y118{bottom:872.639999pt;}
.y9{bottom:872.960007pt;}
.yda{bottom:874.720001pt;}
.y69{bottom:879.838882pt;}
.y117{bottom:885.600006pt;}
.y8{bottom:888.320007pt;}
.yd9{bottom:890.399994pt;}
.y68{bottom:895.518820pt;}
.y116{bottom:898.720001pt;}
.y7{bottom:903.839996pt;}
.yd8{bottom:906.399994pt;}
.y67{bottom:911.523027pt;}
.y115{bottom:911.679993pt;}
.y6{bottom:919.199997pt;}
.yd7{bottom:922.399994pt;}
.y83{bottom:923.203593pt;}
.y114{bottom:924.800003pt;}
.y66{bottom:927.358343pt;}
.y5{bottom:934.720001pt;}
.yd6{bottom:938.080002pt;}
.y4{bottom:953.760002pt;}
.yd5{bottom:954.080002pt;}
.y89{bottom:982.559998pt;}
.y1{bottom:998.560001pt;}
.h13{height:2.241299pt;}
.h11{height:11.520724pt;}
.hc{height:13.124094pt;}
.hb{height:14.233357pt;}
.h19{height:14.241768pt;}
.h18{height:14.241810pt;}
.he{height:16.322069pt;}
.h12{height:30.171039pt;}
.h16{height:34.059243pt;}
.h17{height:34.123602pt;}
.hd{height:34.872959pt;}
.h7{height:37.692132pt;}
.h1{height:41.779132pt;}
.ha{height:41.858192pt;}
.hf{height:43.200509pt;}
.h2{height:44.789333pt;}
.h5{height:45.391450pt;}
.h6{height:45.661637pt;}
.h8{height:47.679993pt;}
.h3{height:49.566735pt;}
.h14{height:54.941312pt;}
.h10{height:55.045279pt;}
.h15{height:74.648487pt;}
.h4{height:110.053376pt;}
.h9{height:194.818220pt;}
.h0{height:1056.000000pt;}
.w19{width:2.078933pt;}
.w1f{width:2.558076pt;}
.w16{width:2.559674pt;}
.w1c{width:2.560727pt;}
.w1a{width:2.560753pt;}
.wf{width:2.720759pt;}
.w8{width:3.517168pt;}
.w3{width:3.519703pt;}
.wb{width:3.521415pt;}
.w22{width:4.161084pt;}
.w5{width:4.803279pt;}
.w11{width:5.116797pt;}
.wd{width:6.244798pt;}
.w14{width:6.558097pt;}
.wa{width:7.199022pt;}
.w7{width:7.203227pt;}
.w24{width:7.998723pt;}
.w23{width:8.001258pt;}
.w1d{width:9.598801pt;}
.w17{width:12.159567pt;}
.w15{width:19.842872pt;}
.w1e{width:27.843474pt;}
.w12{width:30.242782pt;}
.we{width:30.558128pt;}
.w4{width:31.197725pt;}
.w10{width:36.801594pt;}
.w13{width:40.323728pt;}
.w1{width:46.560005pt;}
.w21{width:51.041932pt;}
.w2{width:59.679675pt;}
.w6{width:61.443742pt;}
.wc{width:74.722010pt;}
.w1b{width:77.762080pt;}
.w20{width:118.558374pt;}
.w9{width:136.325408pt;}
.w18{width:255.521643pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:91.519997pt;}
.x26{left:100.801209pt;}
.x18{left:101.918829pt;}
.x19{left:121.599855pt;}
.x1a{left:124.001947pt;}
.x4{left:136.479996pt;}
.x3{left:138.080002pt;}
.x14{left:140.643113pt;}
.x29{left:144.800003pt;}
.x15{left:171.201241pt;}
.x16{left:173.922000pt;}
.x17{left:210.403797pt;}
.x2{left:221.279999pt;}
.x2a{left:228.000000pt;}
.x7{left:275.841168pt;}
.x2c{left:287.679993pt;}
.x2b{left:291.679993pt;}
.x2d{left:293.119995pt;}
.x28{left:294.236893pt;}
.x8{left:335.358713pt;}
.x9{left:338.878417pt;}
.xa{left:369.914012pt;}
.xb{left:374.555161pt;}
.x24{left:390.399994pt;}
.x1b{left:394.080986pt;}
.x1c{left:396.000205pt;}
.x1d{left:398.398592pt;}
.x5{left:419.679993pt;}
.xc{left:435.834259pt;}
.xd{left:442.877047pt;}
.xe{left:446.394215pt;}
.x6{left:464.799988pt;}
.x1e{left:475.841244pt;}
.x1f{left:478.239605pt;}
.x20{left:487.356613pt;}
.x21{left:515.200087pt;}
.x22{left:517.119307pt;}
.x27{left:552.796175pt;}
.xf{left:582.394498pt;}
.x10{left:589.593519pt;}
.x11{left:592.954495pt;}
.x23{left:635.677681pt;}
.x12{left:667.516066pt;}
.x13{left:671.033233pt;}
.x25{left:722.400024pt;}
}




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