
    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_a9d8cefa2cb1a3cd281f01d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_24d94f1f23850089cf5bdd2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_2a07141d5e15d58208feb4ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_e76042f5372d4dca2cfe7048.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963000;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_231cb06d8e672ddc560e9d0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_65a7a45b52dfa0d12ddfa6df.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_4feeef5fb60125df3470c5bd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963667;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_ff0407fd917f3e7d893829cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_25c75cd83198b68064576815.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.921111;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_64a632948885dba14c76be92.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.730957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6428f53eecfea4193925df19.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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:ffc;src:url('chunks/assets/font_238a0e051a010c044ff9274c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.769000;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;}
.m2{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.199453px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:72.120445px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:107.986253px;}
.ls1{letter-spacing:108.000426px;}
.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;}
}
.ws9{word-spacing:-54.648002px;}
.ws2{word-spacing:-45.942000px;}
.ws8{word-spacing:-43.634596px;}
.wsa{word-spacing:-39.468003px;}
.ws7{word-spacing:-35.934370px;}
.ws1{word-spacing:-33.069604px;}
.ws5{word-spacing:-30.360000px;}
.ws6{word-spacing:-27.540001px;}
.wsb{word-spacing:-20.070001px;}
.ws3{word-spacing:-19.734001px;}
.wsd{word-spacing:-13.917877px;}
.wsc{word-spacing:-13.647601px;}
.ws0{word-spacing:0.000000px;}
.ws4{word-spacing:57.125509px;}
._b{margin-left:-40.093200px;}
._a{margin-left:-22.528560px;}
._d{margin-left:-21.145500px;}
._1f{margin-left:-18.528000px;}
._2{margin-left:-14.742000px;}
._e{margin-left:-13.247701px;}
._20{margin-left:-12.240000px;}
._c{margin-left:-10.651500px;}
._4{margin-left:-9.246000px;}
._9{margin-left:-7.766401px;}
._1c{margin-left:-6.624000px;}
._3{margin-left:-5.390400px;}
._1{margin-left:-3.855600px;}
._6{margin-left:-2.817600px;}
._0{margin-left:-1.360800px;}
._13{width:1.899425px;}
._12{width:3.230808px;}
._11{width:5.386248px;}
._10{width:6.830681px;}
._f{width:8.006578px;}
._7{width:11.460000px;}
._5{width:12.600000px;}
._14{width:15.389280px;}
._1a{width:19.329601px;}
._1b{width:20.341145px;}
._19{width:25.041602px;}
._18{width:26.414401px;}
._1e{width:28.992002px;}
._15{width:38.602859px;}
._17{width:40.412881px;}
._16{width:41.478263px;}
._8{width:729.198960px;}
._1d{width:1080.001034px;}
.fc7{color:rgb(255,217,121);}
.fc6{color:rgb(16,16,15);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(1,1,1);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(48,48,48);}
.fc4{color:transparent;}
.fc0{color:rgb(142,77,66);}
.fs11{font-size:54.000002px;}
.fs3{font-size:60.000000px;}
.fs1e{font-size:61.200006px;}
.fs1f{font-size:62.412005px;}
.fs2{font-size:63.000002px;}
.fsc{font-size:72.000002px;}
.fs5{font-size:76.124401px;}
.fs17{font-size:76.946402px;}
.fs8{font-size:78.000005px;}
.fsf{font-size:84.000000px;}
.fs1d{font-size:90.000003px;}
.fs7{font-size:96.000006px;}
.fs10{font-size:108.000003px;}
.fsb{font-size:120.000001px;}
.fs14{font-size:126.027607px;}
.fs4{font-size:137.790018px;}
.fs1{font-size:138.000001px;}
.fs16{font-size:142.033082px;}
.fs1b{font-size:144.000005px;}
.fs19{font-size:149.973152px;}
.fsa{font-size:156.000011px;}
.fs18{font-size:172.468761px;}
.fs1c{font-size:180.000006px;}
.fs13{font-size:184.500006px;}
.fs6{font-size:186.000000px;}
.fsd{font-size:190.500000px;}
.fs12{font-size:196.500012px;}
.fs15{font-size:202.904421px;}
.fs1a{font-size:216.000007px;}
.fs0{font-size:226.799998px;}
.fs9{font-size:270.000009px;}
.fse{font-size:381.839997px;}
.y0{bottom:0.000000px;}
.y7b{bottom:15.246474px;}
.ya7{bottom:27.466879px;}
.y90{bottom:27.512700px;}
.y7a{bottom:31.446477px;}
.y27{bottom:33.489804px;}
.yd2{bottom:34.656844px;}
.y2b{bottom:36.742538px;}
.y59{bottom:37.948324px;}
.ya8{bottom:41.302248px;}
.y7f{bottom:41.313897px;}
.yc2{bottom:43.529866px;}
.y3b{bottom:44.281399px;}
.y20{bottom:46.785920px;}
.y79{bottom:47.624495px;}
.y49{bottom:50.835098px;}
.y3f{bottom:54.406400px;}
.y8{bottom:56.232882px;}
.y75{bottom:56.452327px;}
.ya6{bottom:56.716884px;}
.y6f{bottom:56.742856px;}
.ye0{bottom:61.940694px;}
.y2a{bottom:61.942540px;}
.yd1{bottom:63.906850px;}
.y105{bottom:65.733901px;}
.y3a{bottom:65.881400px;}
.y14{bottom:68.757980px;}
.yf2{bottom:71.608745px;}
.yc1{bottom:72.779867px;}
.yee{bottom:75.281994px;}
.y3e{bottom:76.006400px;}
.y7{bottom:78.732884px;}
.y7d{bottom:82.044208px;}
.y8f{bottom:82.862702px;}
.y48{bottom:83.235106px;}
.y74{bottom:85.252326px;}
.y6e{bottom:85.542848px;}
.ya5{bottom:85.966885px;}
.y80{bottom:86.403892px;}
.y86{bottom:87.538139px;}
.ydf{bottom:91.190695px;}
.ycd{bottom:93.090105px;}
.yd0{bottom:93.156851px;}
.y7e{bottom:96.663899px;}
.y104{bottom:97.257887px;}
.y23{bottom:97.494205px;}
.yf1{bottom:98.608744px;}
.yc0{bottom:102.029868px;}
.yb4{bottom:102.090151px;}
.yed{bottom:102.281992px;}
.y5d{bottom:103.343676px;}
.y50{bottom:106.892624px;}
.y13{bottom:107.157978px;}
.ya9{bottom:108.630044px;}
.y6d{bottom:114.342847px;}
.ya4{bottom:115.216882px;}
.y47{bottom:115.635112px;}
.y39{bottom:118.930332px;}
.ycc{bottom:121.890129px;}
.ycf{bottom:122.406847px;}
.y103{bottom:128.781896px;}
.yb3{bottom:130.890163px;}
.ybf{bottom:131.279869px;}
.y7c{bottom:137.394210px;}
.y4f{bottom:139.292625px;}
.y1c{bottom:142.813340px;}
.ya3{bottom:144.466883px;}
.y12{bottom:145.557975px;}
.yde{bottom:149.690697px;}
.ycb{bottom:150.690141px;}
.y38{bottom:151.330356px;}
.yce{bottom:151.656848px;}
.y9d{bottom:151.916037px;}
.y4{bottom:157.256204px;}
.y102{bottom:160.305904px;}
.ybe{bottom:160.529869px;}
.y8e{bottom:164.243078px;}
.yec{bottom:167.614673px;}
.y4e{bottom:171.692604px;}
.y58{bottom:173.033682px;}
.y101{bottom:176.829882px;}
.yb2{bottom:177.690176px;}
.ydd{bottom:178.940698px;}
.y85{bottom:182.809111px;}
.y37{bottom:183.730380px;}
.y11{bottom:183.957984px;}
.y6c{bottom:186.075054px;}
.y1b{bottom:189.613337px;}
.ybd{bottom:189.779870px;}
.yeb{bottom:194.614672px;}
.yca{bottom:197.490143px;}
.y2c{bottom:201.531251px;}
.yb{bottom:201.840467px;}
.yb8{bottom:203.274257px;}
.y78{bottom:203.388287px;}
.ya0{bottom:204.335762px;}
.y3{bottom:204.866201px;}
.yb1{bottom:206.490177px;}
.y100{bottom:208.353891px;}
.y8d{bottom:208.983497px;}
.y9c{bottom:209.055745px;}
.y57{bottom:214.433661px;}
.y6b{bottom:214.875046px;}
.y36{bottom:216.130403px;}
.ye4{bottom:218.363961px;}
.y4d{bottom:219.092590px;}
.y10{bottom:223.437981px;}
.yc9{bottom:226.290155px;}
.y73{bottom:230.395634px;}
.yb0{bottom:235.290166px;}
.y1a{bottom:236.413338px;}
.ydc{bottom:237.440699px;}
.yff{bottom:239.877888px;}
.y96{bottom:243.121653px;}
.y6a{bottom:243.675045px;}
.y5c{bottom:244.823715px;}
.ybc{bottom:248.279877px;}
.y35{bottom:248.530415px;}
.ya{bottom:249.378019px;}
.yb7{bottom:250.074259px;}
.y9f{bottom:251.135764px;}
.y84{bottom:252.811125px;}
.y8c{bottom:253.723905px;}
.yc8{bottom:255.090156px;}
.y77{bottom:255.139177px;}
.y56{bottom:255.833651px;}
.yfe{bottom:256.401878px;}
.y72{bottom:259.195624px;}
.y9b{bottom:260.796465px;}
.yea{bottom:263.620590px;}
.yd5{bottom:263.700011px;}
.y95{bottom:266.205567px;}
.y4c{bottom:266.492588px;}
.ydb{bottom:266.690700px;}
.ye3{bottom:272.363963px;}
.yfd{bottom:272.925878px;}
.y2{bottom:276.048934px;}
.yaf{bottom:279.090153px;}
.y34{bottom:280.930439px;}
.y71{bottom:287.995616px;}
.y94{bottom:289.289487px;}
.ye9{bottom:290.620588px;}
.yda{bottom:295.940701px;}
.y9{bottom:296.915570px;}
.y8b{bottom:298.464324px;}
.yc7{bottom:301.890146px;}
.yfc{bottom:304.449864px;}
.ybb{bottom:306.779874px;}
.yae{bottom:307.890142px;}
.y93{bottom:312.373397px;}
.y9a{bottom:312.537186px;}
.y33{bottom:313.330451px;}
.y4b{bottom:313.892597px;}
.y70{bottom:316.795614px;}
.y18{bottom:317.305622px;}
.yd4{bottom:317.700013px;}
.y19{bottom:320.649791px;}
.y76{bottom:320.861680px;}
.yfb{bottom:320.973842px;}
.y83{bottom:322.813150px;}
.yd9{bottom:325.190702px;}
.ye2{bottom:326.363972px;}
.yc6{bottom:330.690147px;}
.y92{bottom:335.457318px;}
.yba{bottom:336.029875px;}
.yad{bottom:336.690132px;}
.yfa{bottom:337.497831px;}
.y55{bottom:338.633654px;}
.y17{bottom:340.705634px;}
.y9e{bottom:342.869284px;}
.y8a{bottom:343.204743px;}
.yb6{bottom:343.901257px;}
.y1{bottom:344.088937px;}
.y32{bottom:345.730430px;}
.yf0{bottom:348.521170px;}
.ye8{bottom:348.522644px;}
.yf9{bottom:354.021821px;}
.yd8{bottom:354.440708px;}
.y69{bottom:354.735048px;}
.y91{bottom:358.541236px;}
.y4a{bottom:361.292595px;}
.y41{bottom:363.917940px;}
.y99{bottom:364.277906px;}
.yd3{bottom:371.700015px;}
.yb5{bottom:371.723968px;}
.yef{bottom:375.521169px;}
.ye7{bottom:375.522642px;}
.yc5{bottom:377.490137px;}
.y31{bottom:378.130420px;}
.y54{bottom:380.033651px;}
.ye1{bottom:380.363969px;}
.yac{bottom:380.490118px;}
.y68{bottom:383.535038px;}
.yf8{bottom:385.545818px;}
.y5b{bottom:386.303730px;}
.y16{bottom:387.505624px;}
.y89{bottom:387.945145px;}
.y44{bottom:392.051119px;}
.y82{bottom:392.815174px;}
.yb9{bottom:399.059993px;}
.yc4{bottom:406.290127px;}
.y30{bottom:410.530409px;}
.y15{bottom:410.905625px;}
.y67{bottom:412.335028px;}
.y26{bottom:412.926609px;}
.yd7{bottom:412.940705px;}
.y98{bottom:416.018638px;}
.yd{bottom:417.039991px;}
.yf7{bottom:417.069820px;}
.y53{bottom:421.433648px;}
.yab{bottom:424.290127px;}
.y62{bottom:428.901760px;}
.y22{bottom:429.475697px;}
.y88{bottom:432.685558px;}
.yf6{bottom:433.593825px;}
.y25{bottom:438.126611px;}
.y3d{bottom:440.050388px;}
.yd6{bottom:442.190706px;}
.y2f{bottom:442.930388px;}
.y52{bottom:443.787812px;}
.y29{bottom:446.690724px;}
.yf{bottom:451.340556px;}
.yaa{bottom:453.090119px;}
.y5a{bottom:457.043730px;}
.y61{bottom:457.701750px;}
.ye6{bottom:459.689142px;}
.y43{bottom:460.631110px;}
.y1f{bottom:461.000192px;}
.yc{bottom:462.714622px;}
.y81{bottom:462.817195px;}
.ya2{bottom:463.860007px;}
.yf5{bottom:465.117824px;}
.y6{bottom:466.055784px;}
.y66{bottom:469.935018px;}
.y97{bottom:470.121419px;}
.y3c{bottom:476.050389px;}
.y87{bottom:477.425977px;}
.y28{bottom:480.098714px;}
.yf4{bottom:481.641825px;}
.yc3{bottom:481.890118px;}
.y5{bottom:484.955783px;}
.y60{bottom:486.501739px;}
.y24{bottom:493.781786px;}
.y1e{bottom:497.000194px;}
.y21{bottom:498.055688px;}
.y65{bottom:498.735008px;}
.y51{bottom:509.510314px;}
.y2e{bottom:512.050390px;}
.y5f{bottom:515.301731px;}
.ye{bottom:518.928553px;}
.ye5{bottom:523.859133px;}
.y64{bottom:527.535000px;}
.ya1{bottom:528.660000px;}
.y42{bottom:529.211101px;}
.y1d{bottom:533.000195px;}
.y40{bottom:533.546002px;}
.yf3{bottom:533.779379px;}
.y5e{bottom:544.101730px;}
.y2d{bottom:548.050391px;}
.y63{bottom:556.334998px;}
.y46{bottom:568.214996px;}
.y45{bottom:584.414999px;}
.h12{height:37.800001px;}
.h13{height:43.200001px;}
.h22{height:45.420000px;}
.h4{height:52.020000px;}
.h26{height:53.060406px;}
.h27{height:54.111209px;}
.h3{height:54.621002px;}
.h1d{height:56.940338px;}
.hd{height:57.600002px;}
.h9{height:58.032004px;}
.h10{height:61.195312px;}
.h6{height:65.999856px;}
.h17{height:69.937504px;}
.h8{height:71.424005px;}
.h14{height:77.880002px;}
.h25{height:78.030002px;}
.h11{height:79.920003px;}
.h21{height:83.232005px;}
.hc{height:89.280001px;}
.h15{height:90.840001px;}
.h19{height:90.890027px;}
.h1b{height:93.764540px;}
.h2{height:102.672001px;}
.h5{height:104.307044px;}
.h1c{height:105.672613px;}
.h23{height:109.008003px;}
.h1f{height:111.580025px;}
.hb{height:116.064008px;}
.h1e{height:128.316758px;}
.h24{height:133.920004px;}
.h18{height:137.268004px;}
.h7{height:137.640000px;}
.he{height:141.732000px;}
.h16{height:146.196009px;}
.h20{height:160.704005px;}
.h1{height:171.687599px;}
.h1a{height:196.817289px;}
.ha{height:199.800006px;}
.hf{height:282.561598px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x25{left:10.125000px;}
.x7{left:11.251710px;}
.x8{left:14.626710px;}
.x33{left:23.281644px;}
.x44{left:27.000001px;}
.x13{left:29.282482px;}
.x14{left:30.699803px;}
.x3f{left:32.672483px;}
.x34{left:33.931396px;}
.x17{left:35.662573px;}
.x1{left:46.231303px;}
.x32{left:53.055282px;}
.x1f{left:54.977365px;}
.x15{left:57.931537px;}
.x3a{left:60.416567px;}
.x3b{left:62.745835px;}
.x42{left:63.960903px;}
.x20{left:65.669259px;}
.x3e{left:68.742007px;}
.x30{left:70.652548px;}
.x2a{left:72.186028px;}
.x26{left:76.095475px;}
.xc{left:84.345477px;}
.x29{left:86.515748px;}
.x28{left:87.869827px;}
.x27{left:95.037372px;}
.x12{left:97.471675px;}
.x4f{left:100.939964px;}
.x49{left:103.222127px;}
.x31{left:106.339164px;}
.x21{left:108.977366px;}
.x2c{left:130.312638px;}
.x10{left:135.757957px;}
.x11{left:139.344795px;}
.x43{left:143.263125px;}
.x24{left:145.688978px;}
.x19{left:147.888455px;}
.x2d{left:152.690025px;}
.x64{left:154.249666px;}
.x18{left:156.040884px;}
.x39{left:158.522529px;}
.x41{left:178.515620px;}
.xf{left:181.148120px;}
.x2b{left:199.366164px;}
.x50{left:233.270434px;}
.x51{left:239.800496px;}
.x52{left:246.131749px;}
.x4{left:284.852833px;}
.x9{left:288.227833px;}
.x16{left:307.963585px;}
.x23{left:339.422152px;}
.x65{left:341.725128px;}
.x54{left:353.000531px;}
.xd{left:389.994087px;}
.x36{left:393.834553px;}
.x37{left:410.334673px;}
.x5c{left:415.681585px;}
.x63{left:432.396396px;}
.x38{left:434.657781px;}
.x59{left:492.565077px;}
.x3c{left:523.712458px;}
.x60{left:529.693386px;}
.x3d{left:541.150285px;}
.x53{left:548.087766px;}
.x5{left:558.453989px;}
.x5a{left:559.605584px;}
.xa{left:561.828989px;}
.x55{left:568.126447px;}
.x61{left:573.874455px;}
.x62{left:580.404517px;}
.x5d{left:585.955335px;}
.x4d{left:589.260844px;}
.x5e{left:592.485398px;}
.x48{left:594.147619px;}
.x45{left:596.873078px;}
.x5f{left:598.816650px;}
.x5b{left:603.786653px;}
.x4a{left:607.677207px;}
.x4b{left:610.281044px;}
.x40{left:623.711990px;}
.x47{left:627.410070px;}
.x4c{left:651.773608px;}
.x46{left:668.902634px;}
.x22{left:691.420207px;}
.xe{left:733.204767px;}
.x35{left:820.709689px;}
.x6{left:832.055089px;}
.xb{left:835.430089px;}
.x2{left:845.830224px;}
.x1b{left:848.259815px;}
.x2e{left:855.435020px;}
.x2f{left:859.503065px;}
.x1a{left:870.426635px;}
.x1e{left:875.013402px;}
.x3{left:889.536319px;}
.x1c{left:890.770984px;}
.x1d{left:916.417068px;}
.x4e{left:961.707473px;}
.x56{left:971.816892px;}
.x57{left:978.346955px;}
.x58{left:986.819218px;}
@media print{
.v1{vertical-align:-1.066180pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:64.107062pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:95.987780pt;}
.ls1{letter-spacing:96.000379pt;}
.ws9{word-spacing:-48.576002pt;}
.ws2{word-spacing:-40.837333pt;}
.ws8{word-spacing:-38.786308pt;}
.wsa{word-spacing:-35.082669pt;}
.ws7{word-spacing:-31.941662pt;}
.ws1{word-spacing:-29.395204pt;}
.ws5{word-spacing:-26.986667pt;}
.ws6{word-spacing:-24.480001pt;}
.wsb{word-spacing:-17.840001pt;}
.ws3{word-spacing:-17.541335pt;}
.wsd{word-spacing:-12.371446pt;}
.wsc{word-spacing:-12.131201pt;}
.ws0{word-spacing:0.000000pt;}
.ws4{word-spacing:50.778230pt;}
._b{margin-left:-35.638400pt;}
._a{margin-left:-20.025387pt;}
._d{margin-left:-18.796000pt;}
._1f{margin-left:-16.469333pt;}
._2{margin-left:-13.104000pt;}
._e{margin-left:-11.775735pt;}
._20{margin-left:-10.880000pt;}
._c{margin-left:-9.468000pt;}
._4{margin-left:-8.218667pt;}
._9{margin-left:-6.903467pt;}
._1c{margin-left:-5.888000pt;}
._3{margin-left:-4.791467pt;}
._1{margin-left:-3.427200pt;}
._6{margin-left:-2.504533pt;}
._0{margin-left:-1.209600pt;}
._13{width:1.688378pt;}
._12{width:2.871829pt;}
._11{width:4.787776pt;}
._10{width:6.071717pt;}
._f{width:7.116958pt;}
._7{width:10.186667pt;}
._5{width:11.200000pt;}
._14{width:13.679360pt;}
._1a{width:17.181868pt;}
._1b{width:18.081018pt;}
._19{width:22.259202pt;}
._18{width:23.479468pt;}
._1e{width:25.770668pt;}
._15{width:34.313652pt;}
._17{width:35.922561pt;}
._16{width:36.869567pt;}
._8{width:648.176854pt;}
._1d{width:960.000919pt;}
.fs11{font-size:48.000002pt;}
.fs3{font-size:53.333334pt;}
.fs1e{font-size:54.400006pt;}
.fs1f{font-size:55.477338pt;}
.fs2{font-size:56.000002pt;}
.fsc{font-size:64.000002pt;}
.fs5{font-size:67.666134pt;}
.fs17{font-size:68.396802pt;}
.fs8{font-size:69.333338pt;}
.fsf{font-size:74.666666pt;}
.fs1d{font-size:80.000003pt;}
.fs7{font-size:85.333339pt;}
.fs10{font-size:96.000003pt;}
.fsb{font-size:106.666667pt;}
.fs14{font-size:112.024540pt;}
.fs4{font-size:122.480016pt;}
.fs1{font-size:122.666668pt;}
.fs16{font-size:126.251628pt;}
.fs1b{font-size:128.000004pt;}
.fs19{font-size:133.309468pt;}
.fsa{font-size:138.666676pt;}
.fs18{font-size:153.305565pt;}
.fs1c{font-size:160.000005pt;}
.fs13{font-size:164.000005pt;}
.fs6{font-size:165.333333pt;}
.fsd{font-size:169.333333pt;}
.fs12{font-size:174.666678pt;}
.fs15{font-size:180.359486pt;}
.fs1a{font-size:192.000006pt;}
.fs0{font-size:201.599998pt;}
.fs9{font-size:240.000008pt;}
.fse{font-size:339.413331pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:13.552421pt;}
.ya7{bottom:24.415004pt;}
.y90{bottom:24.455734pt;}
.y7a{bottom:27.952424pt;}
.y27{bottom:29.768715pt;}
.yd2{bottom:30.806084pt;}
.y2b{bottom:32.660034pt;}
.y59{bottom:33.731844pt;}
.ya8{bottom:36.713109pt;}
.y7f{bottom:36.723464pt;}
.yc2{bottom:38.693214pt;}
.y3b{bottom:39.361244pt;}
.y20{bottom:41.587484pt;}
.y79{bottom:42.332884pt;}
.y49{bottom:45.186754pt;}
.y3f{bottom:48.361244pt;}
.y8{bottom:49.984784pt;}
.y75{bottom:50.179846pt;}
.ya6{bottom:50.415008pt;}
.y6f{bottom:50.438094pt;}
.ye0{bottom:55.058394pt;}
.y2a{bottom:55.060035pt;}
.yd1{bottom:56.806089pt;}
.y105{bottom:58.430135pt;}
.y3a{bottom:58.561245pt;}
.y14{bottom:61.118205pt;}
.yf2{bottom:63.652218pt;}
.yc1{bottom:64.693215pt;}
.yee{bottom:66.917328pt;}
.y3e{bottom:67.561245pt;}
.y7{bottom:69.984786pt;}
.y7d{bottom:72.928185pt;}
.y8f{bottom:73.655735pt;}
.y48{bottom:73.986761pt;}
.y74{bottom:75.779845pt;}
.y6e{bottom:76.038087pt;}
.ya5{bottom:76.415009pt;}
.y80{bottom:76.803459pt;}
.y86{bottom:77.811679pt;}
.ydf{bottom:81.058395pt;}
.ycd{bottom:82.746760pt;}
.yd0{bottom:82.806089pt;}
.y7e{bottom:85.923465pt;}
.y104{bottom:86.451455pt;}
.y23{bottom:86.661515pt;}
.yf1{bottom:87.652217pt;}
.yc0{bottom:90.693216pt;}
.yb4{bottom:90.746801pt;}
.yed{bottom:90.917327pt;}
.y5d{bottom:91.861046pt;}
.y50{bottom:95.015666pt;}
.y13{bottom:95.251536pt;}
.ya9{bottom:96.560039pt;}
.y6d{bottom:101.638086pt;}
.ya4{bottom:102.415006pt;}
.y47{bottom:102.786766pt;}
.y39{bottom:105.715851pt;}
.ycc{bottom:108.346781pt;}
.ycf{bottom:108.806086pt;}
.y103{bottom:114.472796pt;}
.yb3{bottom:116.346811pt;}
.ybf{bottom:116.693216pt;}
.y7c{bottom:122.128187pt;}
.y4f{bottom:123.815667pt;}
.y1c{bottom:126.945191pt;}
.ya3{bottom:128.415007pt;}
.y12{bottom:129.384867pt;}
.yde{bottom:133.058397pt;}
.ycb{bottom:133.946792pt;}
.y38{bottom:134.515872pt;}
.yce{bottom:134.806087pt;}
.y9d{bottom:135.036477pt;}
.y4{bottom:139.783292pt;}
.y102{bottom:142.494137pt;}
.ybe{bottom:142.693217pt;}
.y8e{bottom:145.993847pt;}
.yec{bottom:148.990820pt;}
.y4e{bottom:152.615648pt;}
.y58{bottom:153.807718pt;}
.y101{bottom:157.182118pt;}
.yb2{bottom:157.946823pt;}
.ydd{bottom:159.058398pt;}
.y85{bottom:162.496988pt;}
.y37{bottom:163.315893pt;}
.y11{bottom:163.518208pt;}
.y6c{bottom:165.400048pt;}
.y1b{bottom:168.545188pt;}
.ybd{bottom:168.693218pt;}
.yeb{bottom:172.990819pt;}
.yca{bottom:175.546793pt;}
.y2c{bottom:179.138889pt;}
.yb{bottom:179.413748pt;}
.yb8{bottom:180.688229pt;}
.y78{bottom:180.789589pt;}
.ya0{bottom:181.631789pt;}
.y3{bottom:182.103290pt;}
.yb1{bottom:183.546824pt;}
.y100{bottom:185.203459pt;}
.y8d{bottom:185.763109pt;}
.y9c{bottom:185.827329pt;}
.y57{bottom:190.607699pt;}
.y6b{bottom:191.000041pt;}
.y36{bottom:192.115914pt;}
.ye4{bottom:194.101299pt;}
.y4d{bottom:194.748969pt;}
.y10{bottom:198.611539pt;}
.yc9{bottom:201.146804pt;}
.y73{bottom:204.796119pt;}
.yb0{bottom:209.146814pt;}
.y1a{bottom:210.145189pt;}
.ydc{bottom:211.058399pt;}
.yff{bottom:213.224790pt;}
.y96{bottom:216.108136pt;}
.y6a{bottom:216.600040pt;}
.y5c{bottom:217.621080pt;}
.ybc{bottom:220.693224pt;}
.y35{bottom:220.915925pt;}
.ya{bottom:221.669350pt;}
.yb7{bottom:222.288230pt;}
.y9f{bottom:223.231790pt;}
.y84{bottom:224.721000pt;}
.y8c{bottom:225.532360pt;}
.yc8{bottom:226.746805pt;}
.y77{bottom:226.790380pt;}
.y56{bottom:227.407690pt;}
.yfe{bottom:227.912780pt;}
.y72{bottom:230.396110pt;}
.y9b{bottom:231.819080pt;}
.yea{bottom:234.329413pt;}
.yd5{bottom:234.400010pt;}
.y95{bottom:236.627170pt;}
.y4c{bottom:236.882300pt;}
.ydb{bottom:237.058400pt;}
.ye3{bottom:242.101300pt;}
.yfd{bottom:242.600780pt;}
.y2{bottom:245.376831pt;}
.yaf{bottom:248.080136pt;}
.y34{bottom:249.715946pt;}
.y71{bottom:255.996103pt;}
.y94{bottom:257.146211pt;}
.ye9{bottom:258.329412pt;}
.yda{bottom:263.058401pt;}
.y9{bottom:263.924951pt;}
.y8b{bottom:265.301621pt;}
.yc7{bottom:268.346796pt;}
.yfc{bottom:270.622101pt;}
.ybb{bottom:272.693221pt;}
.yae{bottom:273.680126pt;}
.y93{bottom:277.665242pt;}
.y9a{bottom:277.810832pt;}
.y33{bottom:278.515957pt;}
.y4b{bottom:279.015642pt;}
.y70{bottom:281.596102pt;}
.y18{bottom:282.049442pt;}
.yd4{bottom:282.400012pt;}
.y19{bottom:285.022037pt;}
.y76{bottom:285.210382pt;}
.yfb{bottom:285.310082pt;}
.y83{bottom:286.945022pt;}
.yd9{bottom:289.058402pt;}
.ye2{bottom:290.101308pt;}
.yc6{bottom:293.946797pt;}
.y92{bottom:298.184282pt;}
.yba{bottom:298.693222pt;}
.yad{bottom:299.280117pt;}
.yfa{bottom:299.998072pt;}
.y55{bottom:301.007692pt;}
.y17{bottom:302.849452pt;}
.y9e{bottom:304.772696pt;}
.y8a{bottom:305.070882pt;}
.yb6{bottom:305.690007pt;}
.y1{bottom:305.856833pt;}
.y32{bottom:307.315938pt;}
.yf0{bottom:309.796596pt;}
.ye8{bottom:309.797906pt;}
.yf9{bottom:314.686063pt;}
.yd8{bottom:315.058407pt;}
.y69{bottom:315.320043pt;}
.y91{bottom:318.703321pt;}
.y4a{bottom:321.148973pt;}
.y41{bottom:323.482613pt;}
.y99{bottom:323.802583pt;}
.yd3{bottom:330.400013pt;}
.yb5{bottom:330.421305pt;}
.yef{bottom:333.796594pt;}
.ye7{bottom:333.797904pt;}
.yc5{bottom:335.546788pt;}
.y31{bottom:336.115928pt;}
.y54{bottom:337.807690pt;}
.ye1{bottom:338.101306pt;}
.yac{bottom:338.213439pt;}
.y68{bottom:340.920034pt;}
.yf8{bottom:342.707394pt;}
.y5b{bottom:343.381094pt;}
.y16{bottom:344.449444pt;}
.y89{bottom:344.840129pt;}
.y44{bottom:348.489884pt;}
.y82{bottom:349.169044pt;}
.yb9{bottom:354.719994pt;}
.yc4{bottom:361.146779pt;}
.y30{bottom:364.915919pt;}
.y15{bottom:365.249444pt;}
.y67{bottom:366.520024pt;}
.y26{bottom:367.045874pt;}
.yd7{bottom:367.058404pt;}
.y98{bottom:369.794345pt;}
.yd{bottom:370.702215pt;}
.yf7{bottom:370.728729pt;}
.y53{bottom:374.607687pt;}
.yab{bottom:377.146780pt;}
.y62{bottom:381.246009pt;}
.y22{bottom:381.756175pt;}
.y88{bottom:384.609385pt;}
.yf6{bottom:385.416733pt;}
.y25{bottom:389.445876pt;}
.y3d{bottom:391.155900pt;}
.yd6{bottom:393.058405pt;}
.y2f{bottom:393.715900pt;}
.y52{bottom:394.478055pt;}
.y29{bottom:397.058421pt;}
.yf{bottom:401.191606pt;}
.yaa{bottom:402.746773pt;}
.y5a{bottom:406.261094pt;}
.y61{bottom:406.846000pt;}
.ye6{bottom:408.612571pt;}
.y43{bottom:409.449876pt;}
.y1f{bottom:409.777949pt;}
.yc{bottom:411.301886pt;}
.y81{bottom:411.393062pt;}
.ya2{bottom:412.320006pt;}
.yf5{bottom:413.438066pt;}
.y6{bottom:414.271808pt;}
.y66{bottom:417.720016pt;}
.y97{bottom:417.885706pt;}
.y3c{bottom:423.155901pt;}
.y87{bottom:424.378646pt;}
.y28{bottom:426.754412pt;}
.yf4{bottom:428.126066pt;}
.yc3{bottom:428.346771pt;}
.y5{bottom:431.071808pt;}
.y60{bottom:432.445991pt;}
.y24{bottom:438.917143pt;}
.y1e{bottom:441.777950pt;}
.y21{bottom:442.716167pt;}
.y65{bottom:443.320007pt;}
.y51{bottom:452.898057pt;}
.y2e{bottom:455.155902pt;}
.y5f{bottom:458.045983pt;}
.ye{bottom:461.269824pt;}
.ye5{bottom:465.652563pt;}
.y64{bottom:468.920000pt;}
.ya1{bottom:469.920000pt;}
.y42{bottom:470.409868pt;}
.y1d{bottom:473.777951pt;}
.y40{bottom:474.263113pt;}
.yf3{bottom:474.470559pt;}
.y5e{bottom:483.645982pt;}
.y2d{bottom:487.155903pt;}
.y63{bottom:494.519999pt;}
.y46{bottom:505.079997pt;}
.y45{bottom:519.479999pt;}
.h12{height:33.600001pt;}
.h13{height:38.400001pt;}
.h22{height:40.373334pt;}
.h4{height:46.240000pt;}
.h26{height:47.164805pt;}
.h27{height:48.098852pt;}
.h3{height:48.552002pt;}
.h1d{height:50.613634pt;}
.hd{height:51.200002pt;}
.h9{height:51.584004pt;}
.h10{height:54.395833pt;}
.h6{height:58.666538pt;}
.h17{height:62.166671pt;}
.h8{height:63.488004pt;}
.h14{height:69.226669pt;}
.h25{height:69.360002pt;}
.h11{height:71.040002pt;}
.h21{height:73.984005pt;}
.hc{height:79.360001pt;}
.h15{height:80.746667pt;}
.h19{height:80.791135pt;}
.h1b{height:83.346257pt;}
.h2{height:91.264001pt;}
.h5{height:92.717372pt;}
.h1c{height:93.931211pt;}
.h23{height:96.896003pt;}
.h1f{height:99.182244pt;}
.hb{height:103.168007pt;}
.h1e{height:114.059340pt;}
.h24{height:119.040004pt;}
.h18{height:122.016004pt;}
.h7{height:122.346667pt;}
.he{height:125.984000pt;}
.h16{height:129.952008pt;}
.h20{height:142.848005pt;}
.h1{height:152.611199pt;}
.h1a{height:174.948701pt;}
.ha{height:177.600006pt;}
.hf{height:251.165865pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x25{left:9.000000pt;}
.x7{left:10.001520pt;}
.x8{left:13.001520pt;}
.x33{left:20.694795pt;}
.x44{left:24.000001pt;}
.x13{left:26.028873pt;}
.x14{left:27.288714pt;}
.x3f{left:29.042207pt;}
.x34{left:30.161241pt;}
.x17{left:31.700065pt;}
.x1{left:41.094491pt;}
.x32{left:47.160251pt;}
.x1f{left:48.868769pt;}
.x15{left:51.494700pt;}
.x3a{left:53.703615pt;}
.x3b{left:55.774076pt;}
.x42{left:56.854136pt;}
.x20{left:58.372675pt;}
.x3e{left:61.104006pt;}
.x30{left:62.802265pt;}
.x2a{left:64.165358pt;}
.x26{left:67.640422pt;}
.xc{left:74.973757pt;}
.x29{left:76.902887pt;}
.x28{left:78.106512pt;}
.x27{left:84.477664pt;}
.x12{left:86.641489pt;}
.x4f{left:89.724413pt;}
.x49{left:91.753002pt;}
.x31{left:94.523701pt;}
.x21{left:96.868770pt;}
.x2c{left:115.833456pt;}
.x10{left:120.673740pt;}
.x11{left:123.862040pt;}
.x43{left:127.345000pt;}
.x24{left:129.501314pt;}
.x19{left:131.456404pt;}
.x2d{left:135.724466pt;}
.x64{left:137.110814pt;}
.x18{left:138.703008pt;}
.x39{left:140.908915pt;}
.x41{left:158.680551pt;}
.xf{left:161.020551pt;}
.x2b{left:177.214368pt;}
.x50{left:207.351497pt;}
.x51{left:213.155997pt;}
.x52{left:218.783777pt;}
.x4{left:253.202518pt;}
.x9{left:256.202518pt;}
.x16{left:273.745409pt;}
.x23{left:301.708580pt;}
.x65{left:303.755670pt;}
.x54{left:313.778250pt;}
.xd{left:346.661411pt;}
.x36{left:350.075158pt;}
.x37{left:364.741932pt;}
.x5c{left:369.494742pt;}
.x63{left:384.352352pt;}
.x38{left:386.362472pt;}
.x59{left:437.835624pt;}
.x3c{left:465.522185pt;}
.x60{left:470.838565pt;}
.x3d{left:481.022475pt;}
.x53{left:487.189126pt;}
.x5{left:496.403546pt;}
.x5a{left:497.427186pt;}
.xa{left:499.403546pt;}
.x55{left:505.001286pt;}
.x61{left:510.110626pt;}
.x62{left:515.915127pt;}
.x5d{left:520.849187pt;}
.x4d{left:523.787417pt;}
.x5e{left:526.653687pt;}
.x48{left:528.131217pt;}
.x45{left:530.553847pt;}
.x5f{left:532.281467pt;}
.x5b{left:536.699247pt;}
.x4a{left:540.157517pt;}
.x4b{left:542.472039pt;}
.x40{left:554.410658pt;}
.x47{left:557.697840pt;}
.x4c{left:579.354319pt;}
.x46{left:594.580119pt;}
.x22{left:614.595740pt;}
.xe{left:651.737571pt;}
.x35{left:729.519723pt;}
.x6{left:739.604524pt;}
.xb{left:742.604524pt;}
.x2{left:751.849088pt;}
.x1b{left:754.008724pt;}
.x2e{left:760.386684pt;}
.x2f{left:764.002724pt;}
.x1a{left:773.712565pt;}
.x1e{left:777.789691pt;}
.x3{left:790.698950pt;}
.x1c{left:791.796430pt;}
.x1d{left:814.592949pt;}
.x4e{left:854.851087pt;}
.x56{left:863.837238pt;}
.x57{left:869.641738pt;}
.x58{left:877.172638pt;}
}




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