
    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_c1cf825ff9c6de5656f14e74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_759b07c96e310f11a7bdde47.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109375;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_82a110f40a436a8cc4d8a4cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.031738;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_770c4b3b82bfe5c910e866d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_1071168accaf8782836746ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.973633;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_44cf5e84ee1ea529e82f4e0a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50ff82b193e0b0ace38dacaa.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f854e5c64cc2bff781837f5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_e2585e77c1ed57d3d3327c2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005859;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_27d2e7fe4934e2ccafdd9388.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.082800px;}
.ls8{letter-spacing:81.010188px;}
.lsa{letter-spacing:90.013770px;}
.lsb{letter-spacing:97.666775px;}
.ls4{letter-spacing:107.971494px;}
.ls9{letter-spacing:107.971944px;}
.ls5{letter-spacing:107.986225px;}
.ls6{letter-spacing:108.000207px;}
.ls3{letter-spacing:108.000234px;}
.lsc{letter-spacing:144.000163px;}
.ls2{letter-spacing:151.967006px;}
.ls1{letter-spacing:738.431568px;}
.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;}
}
.ws10{word-spacing:-46.535866px;}
.ws0{word-spacing:-40.463919px;}
.ws2{word-spacing:-39.647885px;}
.ws5{word-spacing:-35.683129px;}
.ws8{word-spacing:-34.901930px;}
.wsb{word-spacing:-34.223969px;}
.ws7{word-spacing:-34.187893px;}
.ws12{word-spacing:-32.543935px;}
.wse{word-spacing:-31.247938px;}
.ws9{word-spacing:-29.915940px;}
.ws6{word-spacing:-27.971944px;}
.wsa{word-spacing:-26.591905px;}
.wsf{word-spacing:-24.929950px;}
.ws4{word-spacing:-23.807915px;}
.ws11{word-spacing:-23.267995px;}
.ws3{word-spacing:-17.855964px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:118.734652px;}
.wsc{word-spacing:118.741696px;}
._12{margin-left:-15.839944px;}
._0{margin-left:-12.767983px;}
._11{margin-left:-10.943957px;}
._10{margin-left:-9.707955px;}
._a{margin-left:-7.979991px;}
._7{margin-left:-6.611991px;}
._3{margin-left:-5.471993px;}
._f{margin-left:-4.223981px;}
._1{margin-left:-2.963996px;}
._5{margin-left:-1.823998px;}
._e{width:1.048653px;}
._2{width:2.051997px;}
._6{width:3.419995px;}
._4{width:4.559994px;}
._13{width:72.012006px;}
._14{width:81.010188px;}
._8{width:191.614755px;}
._b{width:247.162687px;}
._d{width:381.310524px;}
._9{width:500.434379px;}
._c{width:959.805821px;}
.fcb{color:rgb(0,50,177);}
.fca{color:rgb(17,85,204);}
.fc8{color:transparent;}
.fc7{color:rgb(0,27,109);}
.fc5{color:rgb(255,192,0);}
.fc9{color:rgb(36,36,36);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(5,99,193);}
.fcc{color:rgb(7,55,99);}
.fc2{color:rgb(251,176,59);}
.fc1{color:rgb(67,72,69);}
.fc0{color:rgb(0,26,109);}
.fsb{font-size:48.000054px;}
.fsd{font-size:53.999892px;}
.fsc{font-size:64.020022px;}
.fs8{font-size:66.000018px;}
.fs18{font-size:70.547259px;}
.fs6{font-size:71.999856px;}
.fsf{font-size:77.999694px;}
.fs9{font-size:79.979690px;}
.fs7{font-size:83.999982px;}
.fs1c{font-size:89.999820px;}
.fs19{font-size:92.254766px;}
.fse{font-size:95.999658px;}
.fs1b{font-size:101.999946px;}
.fs4{font-size:107.999784px;}
.fs1d{font-size:115.199770px;}
.fs14{font-size:119.999910px;}
.fs13{font-size:125.999748px;}
.fs1a{font-size:130.240990px;}
.fs12{font-size:131.999586px;}
.fs10{font-size:137.999875px;}
.fs1{font-size:143.999713px;}
.fs15{font-size:149.999551px;}
.fs5{font-size:151.199698px;}
.fs1f{font-size:161.999677px;}
.fs2{font-size:167.999515px;}
.fs11{font-size:179.999641px;}
.fs1e{font-size:185.999479px;}
.fs3{font-size:191.999767px;}
.fsa{font-size:207.959435px;}
.fs0{font-size:227.999695px;}
.fs16{font-size:263.999623px;}
.fs17{font-size:311.999227px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.001620px;}
.y10{bottom:15.388189px;}
.y35{bottom:16.025952px;}
.y17{bottom:24.560461px;}
.ye{bottom:34.025916px;}
.y16{bottom:44.360421px;}
.y108{bottom:52.809280px;}
.yb9{bottom:115.643259px;}
.y114{bottom:117.450871px;}
.y49{bottom:117.892827px;}
.y79{bottom:120.588935px;}
.yac{bottom:121.788548px;}
.y112{bottom:129.383537px;}
.yc3{bottom:129.406504px;}
.y9e{bottom:133.759557px;}
.y6d{bottom:142.367987px;}
.y48{bottom:143.812763px;}
.y43{bottom:145.477727px;}
.y115{bottom:147.204856px;}
.y118{bottom:150.469499px;}
.yab{bottom:154.908482px;}
.y91{bottom:155.719517px;}
.yfc{bottom:156.285732px;}
.yb8{bottom:157.043176px;}
.y78{bottom:158.388860px;}
.yfa{bottom:162.277838px;}
.y47{bottom:169.732711px;}
.yc2{bottom:177.016409px;}
.ye2{bottom:185.040316px;}
.y9d{bottom:185.509453px;}
.y6c{bottom:187.907896px;}
.yaa{bottom:188.028416px;}
.yf9{bottom:189.954245px;}
.yfb{bottom:191.450799px;}
.y111{bottom:192.623373px;}
.y42{bottom:195.157628px;}
.y46{bottom:195.652659px;}
.y77{bottom:196.188784px;}
.yb7{bottom:198.443094px;}
.yd2{bottom:200.056363px;}
.y107{bottom:200.884225px;}
.y89{bottom:206.888551px;}
.y21{bottom:208.183803px;}
.y90{bottom:213.679402px;}
.y45{bottom:221.572607px;}
.y1b{bottom:222.585714px;}
.y117{bottom:226.406951px;}
.y20{bottom:230.270659px;}
.ye1{bottom:230.580225px;}
.yd1{bottom:232.456299px;}
.y6b{bottom:233.447805px;}
.y106{bottom:234.904157px;}
.y9c{bottom:237.259350px;}
.ya9{bottom:239.148314px;}
.y1c{bottom:239.656493px;}
.yb6{bottom:239.843011px;}
.yc1{bottom:243.256277px;}
.y7e{bottom:244.308659px;}
.y41{bottom:244.837529px;}
.y6{bottom:246.651484px;}
.y88{bottom:248.288468px;}
.y76{bottom:248.988641px;}
.y1a{bottom:250.178759px;}
.y1f{bottom:252.357515px;}
.y110{bottom:252.659216px;}
.yd0{bottom:264.856234px;}
.y105{bottom:268.924089px;}
.y44{bottom:271.596890px;}
.y8f{bottom:271.639286px;}
.y1e{bottom:274.444371px;}
.ye0{bottom:276.120134px;}
.y19{bottom:277.771804px;}
.y6a{bottom:278.987714px;}
.yd{bottom:280.044496px;}
.yb5{bottom:281.242928px;}
.yea{bottom:284.580117px;}
.y5{bottom:285.531407px;}
.y75{bottom:286.788566px;}
.y9b{bottom:289.009247px;}
.y62{bottom:289.308669px;}
.ya8{bottom:290.268211px;}
.yf6{bottom:290.513409px;}
.y7d{bottom:292.908562px;}
.y40{bottom:294.517430px;}
.y1d{bottom:296.531227px;}
.ycf{bottom:297.256169px;}
.yf8{bottom:298.361537px;}
.y5d{bottom:304.308602px;}
.y116{bottom:305.717919px;}
.y97{bottom:307.009211px;}
.y87{bottom:307.688350px;}
.y11{bottom:310.688919px;}
.yc0{bottom:310.936142px;}
.yf5{bottom:318.189816px;}
.ydf{bottom:321.660043px;}
.y61{bottom:321.708604px;}
.y104{bottom:322.443945px;}
.ya7{bottom:323.388145px;}
.y74{bottom:324.588491px;}
.y8e{bottom:329.599170px;}
.yce{bottom:329.656105px;}
.ye9{bottom:330.120026px;}
.yc{bottom:331.884393px;}
.yf7{bottom:333.526604px;}
.y5c{bottom:336.708537px;}
.yb4{bottom:340.642810px;}
.y9a{bottom:340.759143px;}
.y7c{bottom:341.508465px;}
.y3f{bottom:344.197331px;}
.yf4{bottom:345.866223px;}
.y86{bottom:349.088267px;}
.y60{bottom:354.108540px;}
.y103{bottom:356.463877px;}
.y50{bottom:356.978770px;}
.y96{bottom:358.759107px;}
.ybf{bottom:360.616043px;}
.ycd{bottom:362.056040px;}
.y73{bottom:362.388415px;}
.y69{bottom:364.675735px;}
.yde{bottom:367.199952px;}
.y5b{bottom:369.108472px;}
.yed{bottom:372.664063px;}
.ya6{bottom:374.508043px;}
.ye8{bottom:375.659936px;}
.y10f{bottom:378.167003px;}
.yd8{bottom:379.668376px;}
.y29{bottom:381.284793px;}
.yb3{bottom:382.042727px;}
.y119{bottom:382.532067px;}
.yb{bottom:383.724289px;}
.y24{bottom:384.643274px;}
.y8d{bottom:387.559054px;}
.yef{bottom:388.239235px;}
.y102{bottom:390.483809px;}
.y99{bottom:392.509040px;}
.y3e{bottom:393.877232px;}
.y4f{bottom:394.238691px;}
.ycc{bottom:394.455975px;}
.y5f{bottom:401.508408px;}
.y25{bottom:401.714031px;}
.y7b{bottom:401.988332px;}
.y28{bottom:403.371649px;}
.yee{bottom:406.881943px;}
.y85{bottom:408.488149px;}
.y68{bottom:410.215644px;}
.y95{bottom:410.509004px;}
.y23{bottom:412.236319px;}
.yf3{bottom:414.653274px;}
.y5a{bottom:416.508340px;}
.ye7{bottom:421.199845px;}
.yd7{bottom:422.868290px;}
.y10e{bottom:423.526913px;}
.y4{bottom:425.224642px;}
.y27{bottom:425.458505px;}
.ya5{bottom:425.627941px;}
.ycb{bottom:426.855911px;}
.ybe{bottom:428.295908px;}
.ydd{bottom:430.739826px;}
.y4e{bottom:431.498611px;}
.ya{bottom:435.564186px;}
.y72{bottom:437.988264px;}
.y22{bottom:439.829364px;}
.yb2{bottom:441.442609px;}
.y3d{bottom:443.557132px;}
.yec{bottom:443.943921px;}
.y101{bottom:444.003665px;}
.y8c{bottom:445.518939px;}
.y26{bottom:447.545361px;}
.y59{bottom:448.908275px;}
.y84{bottom:449.888066px;}
.y55{bottom:450.948234px;}
.y67{bottom:455.755553px;}
.ya4{bottom:458.747875px;}
.yca{bottom:459.255846px;}
.y94{bottom:462.258901px;}
.y7a{bottom:463.908208px;}
.yd6{bottom:466.068204px;}
.ye6{bottom:466.739754px;}
.y4d{bottom:468.758531px;}
.y71{bottom:475.788189px;}
.ybd{bottom:477.975809px;}
.y100{bottom:478.023597px;}
.y52{bottom:480.992359px;}
.y58{bottom:481.308211px;}
.yb1{bottom:482.842526px;}
.y3{bottom:486.784519px;}
.y10d{bottom:488.386746px;}
.y83{bottom:491.287983px;}
.yc9{bottom:491.655781px;}
.ydc{bottom:494.279699px;}
.y3c{bottom:495.757028px;}
.y5e{bottom:496.308143px;}
.y66{bottom:501.295462px;}
.y15{bottom:502.467313px;}
.y4c{bottom:506.018443px;}
.yd5{bottom:507.108122px;}
.y54{bottom:508.548119px;}
.ya3{bottom:509.867773px;}
.yff{bottom:512.043529px;}
.ye5{bottom:512.279663px;}
.y70{bottom:513.588113px;}
.y93{bottom:514.008798px;}
.yeb{bottom:515.223778px;}
.y34{bottom:521.257991px;}
.y8b{bottom:521.478787px;}
.yc8{bottom:524.055717px;}
.yb0{bottom:524.242443px;}
.yf2{bottom:524.363055px;}
.ybc{bottom:527.655709px;}
.y14{bottom:527.667263px;}
.y57{bottom:528.708079px;}
.y98{bottom:532.008762px;}
.y82{bottom:532.687901px;}
.y2d{bottom:532.906753px;}
.ydb{bottom:539.819608px;}
.y9{bottom:541.187975px;}
.yd4{bottom:541.668053px;}
.y33{bottom:543.344847px;}
.y4b{bottom:546.428346px;}
.y65{bottom:546.835371px;}
.y51{bottom:547.592226px;}
.y2{bottom:548.344396px;}
.y6f{bottom:551.388038px;}
.y13{bottom:552.867213px;}
.y10c{bottom:553.246579px;}
.y3b{bottom:553.716912px;}
.yc7{bottom:556.455652px;}
.ye4{bottom:557.819572px;}
.y2c{bottom:560.499798px;}
.ya2{bottom:560.987671px;}
.y56{bottom:561.108014px;}
.y2e{bottom:563.774086px;}
.y32{bottom:565.431702px;}
.yfe{bottom:565.563384px;}
.yaf{bottom:565.642361px;}
.yf1{bottom:570.082964px;}
.ybb{bottom:577.335610px;}
.y12{bottom:578.067163px;}
.y8a{bottom:579.438671px;}
.y92{bottom:583.758658px;}
.yd3{bottom:584.867966px;}
.yda{bottom:585.359517px;}
.y31{bottom:587.518558px;}
.y2b{bottom:588.092843px;}
.yc6{bottom:588.855587px;}
.y6e{bottom:589.187962px;}
.y81{bottom:592.087782px;}
.y53{bottom:593.507949px;}
.y4a{bottom:594.038251px;}
.ya1{bottom:594.107605px;}
.y8{bottom:602.747852px;}
.ye3{bottom:603.359481px;}
.y30{bottom:609.605414px;}
.y64{bottom:610.375245px;}
.y3a{bottom:611.676797px;}
.yf0{bottom:613.372868px;}
.y2a{bottom:615.685887px;}
.y10b{bottom:618.106412px;}
.yc5{bottom:621.255523px;}
.yae{bottom:625.042242px;}
.ya0{bottom:627.227539px;}
.y2f{bottom:631.692270px;}
.y80{bottom:633.487699px;}
.yba{bottom:645.015475px;}
.y37{bottom:646.954272px;}
.yd9{bottom:648.899390px;}
.yc4{bottom:653.655458px;}
.y63{bottom:655.915154px;}
.y7f{bottom:674.887617px;}
.y9f{bottom:678.347437px;}
.y36{bottom:679.714207px;}
.y10a{bottom:703.500717px;}
.y39{bottom:709.504490px;}
.yfd{bottom:733.282290px;}
.y7{bottom:734.416054px;}
.y113{bottom:735.449637px;}
.y109{bottom:736.548651px;}
.yf{bottom:737.083036px;}
.yad{bottom:737.181242px;}
.y18{bottom:743.324622px;}
.y38{bottom:750.328409px;}
.h10{height:39.339765px;}
.hd{height:51.359813px;}
.ha{height:52.948257px;}
.h8{height:57.761603px;}
.hb{height:60.804872px;}
.h2f{height:61.154284px;}
.h2b{height:65.566275px;}
.h9{height:67.388658px;}
.h1b{height:69.937260px;}
.h1f{height:73.452864px;}
.h27{height:74.011026px;}
.h11{height:77.015351px;}
.h6{height:77.519376px;}
.h15{height:78.679530px;}
.h17{height:82.634601px;}
.h13{height:86.642405px;}
.h19{height:91.792786px;}
.h1c{height:91.816338px;}
.h2a{height:95.791801px;}
.h26{height:96.269459px;}
.h1a{height:96.407034px;}
.h18{height:100.997730px;}
.h29{height:101.082806px;}
.h30{height:103.359169px;}
.h28{height:104.485325px;}
.h23{height:104.906041px;}
.h22{height:105.588771px;}
.h21{height:110.179468px;}
.h12{height:110.709860px;}
.h2c{height:110.812279px;}
.h1e{height:114.770164px;}
.hf{height:115.523207px;}
.h1d{height:128.542597px;}
.h2e{height:129.963608px;}
.h3{height:130.499739px;}
.he{height:134.776954px;}
.h14{height:137.724334px;}
.h16{height:139.874830px;}
.h2d{height:141.406830px;}
.h20{height:144.286677px;}
.h7{height:145.441116px;}
.hc{height:149.978557px;}
.h5{height:154.031063px;}
.h4{height:161.601096px;}
.h24{height:192.327850px;}
.h2{height:219.316113px;}
.h25{height:227.143969px;}
.h1{height:809.998380px;}
.h0{height:810.000000px;}
.w1{width:1439.997120px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x25{left:49.443799px;}
.x35{left:64.263654px;}
.x11{left:65.328651px;}
.x4{left:70.837419px;}
.x8{left:74.998786px;}
.x14{left:81.528348px;}
.x56{left:83.338353px;}
.x46{left:87.142625px;}
.x28{left:91.986982px;}
.x2{left:96.522448px;}
.x1{left:98.548042px;}
.x3a{left:103.604723px;}
.x3b{left:105.608681px;}
.xd{left:117.943663px;}
.x15{left:124.836374px;}
.x26{left:127.414121px;}
.x38{left:132.894292px;}
.x2f{left:136.437724px;}
.x30{left:138.073133px;}
.x16{left:139.159395px;}
.x2d{left:140.450518px;}
.x4e{left:141.459026px;}
.xa{left:148.779930px;}
.x17{left:178.836266px;}
.x37{left:181.638532px;}
.x3c{left:185.352982px;}
.x44{left:186.649229px;}
.x31{left:190.437503px;}
.x2e{left:194.450297px;}
.x1f{left:223.653110px;}
.x2a{left:227.700465px;}
.x41{left:229.049584px;}
.x20{left:238.176381px;}
.x36{left:239.282756px;}
.x45{left:240.649121px;}
.xc{left:248.574310px;}
.x2b{left:257.402993px;}
.x42{left:264.153001px;}
.x49{left:315.562190px;}
.x12{left:350.242262px;}
.x55{left:367.433570px;}
.x34{left:450.215348px;}
.x21{left:474.121598px;}
.x54{left:482.350741px;}
.x53{left:500.069879px;}
.x4a{left:511.687949px;}
.x39{left:512.938643px;}
.x4b{left:522.766678px;}
.x43{left:569.590904px;}
.x3f{left:653.393177px;}
.x33{left:658.370969px;}
.x4d{left:665.630449px;}
.x27{left:679.980759px;}
.x24{left:692.159698px;}
.xe{left:723.574046px;}
.x3e{left:733.915317px;}
.x58{left:736.150481px;}
.x4f{left:750.378033px;}
.xf{left:768.813694px;}
.x19{left:771.630357px;}
.x40{left:775.107820px;}
.x57{left:781.015123px;}
.x1a{left:786.855780px;}
.x1b{left:825.630290px;}
.x1c{left:836.322122px;}
.x23{left:901.071863px;}
.x5a{left:911.248181px;}
.x5b{left:914.623174px;}
.x50{left:916.935151px;}
.x51{left:930.919098px;}
.x29{left:936.558044px;}
.x10{left:946.210647px;}
.x13{left:964.781735px;}
.xb{left:967.946023px;}
.x52{left:988.935007px;}
.x59{left:991.436119px;}
.x22{left:994.557501px;}
.x47{left:1006.644978px;}
.x48{left:1010.852253px;}
.x6{left:1023.899247px;}
.x2c{left:1048.774304px;}
.x32{left:1051.985464px;}
.x9{left:1124.664045px;}
.x4c{left:1136.262552px;}
.x1d{left:1158.794126px;}
.x3{left:1197.285234px;}
.x1e{left:1395.361196px;}
.x3d{left:1397.145947px;}
.x7{left:1402.203467px;}
.x5{left:1403.988219px;}
.x18{left:1424.897158px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.073600pt;}
.ls8{letter-spacing:72.009056pt;}
.lsa{letter-spacing:80.012240pt;}
.lsb{letter-spacing:86.814911pt;}
.ls4{letter-spacing:95.974661pt;}
.ls9{letter-spacing:95.975061pt;}
.ls5{letter-spacing:95.987756pt;}
.ls6{letter-spacing:96.000184pt;}
.ls3{letter-spacing:96.000208pt;}
.lsc{letter-spacing:128.000144pt;}
.ls2{letter-spacing:135.081783pt;}
.ls1{letter-spacing:656.383616pt;}
.ws10{word-spacing:-41.365214pt;}
.ws0{word-spacing:-35.967928pt;}
.ws2{word-spacing:-35.242565pt;}
.ws5{word-spacing:-31.718337pt;}
.ws8{word-spacing:-31.023938pt;}
.wsb{word-spacing:-30.421306pt;}
.ws7{word-spacing:-30.389238pt;}
.ws12{word-spacing:-28.927942pt;}
.wse{word-spacing:-27.775945pt;}
.ws9{word-spacing:-26.591947pt;}
.ws6{word-spacing:-24.863950pt;}
.wsa{word-spacing:-23.637249pt;}
.wsf{word-spacing:-22.159956pt;}
.ws4{word-spacing:-21.162591pt;}
.ws11{word-spacing:-20.682662pt;}
.ws3{word-spacing:-15.871968pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:105.541913pt;}
.wsc{word-spacing:105.548174pt;}
._12{margin-left:-14.079950pt;}
._0{margin-left:-11.349318pt;}
._11{margin-left:-9.727962pt;}
._10{margin-left:-8.629293pt;}
._a{margin-left:-7.093325pt;}
._7{margin-left:-5.877325pt;}
._3{margin-left:-4.863993pt;}
._f{margin-left:-3.754650pt;}
._1{margin-left:-2.634663pt;}
._5{margin-left:-1.621331pt;}
._e{width:0.932136pt;}
._2{width:1.823998pt;}
._6{width:3.039996pt;}
._4{width:4.053328pt;}
._13{width:64.010672pt;}
._14{width:72.009056pt;}
._8{width:170.324226pt;}
._b{width:219.700167pt;}
._d{width:338.942688pt;}
._9{width:444.830559pt;}
._c{width:853.160730pt;}
.fsb{font-size:42.666715pt;}
.fsd{font-size:47.999904pt;}
.fsc{font-size:56.906686pt;}
.fs8{font-size:58.666683pt;}
.fs18{font-size:62.708675pt;}
.fs6{font-size:63.999872pt;}
.fsf{font-size:69.333062pt;}
.fs9{font-size:71.093058pt;}
.fs7{font-size:74.666651pt;}
.fs1c{font-size:79.999840pt;}
.fs19{font-size:82.004236pt;}
.fse{font-size:85.333030pt;}
.fs1b{font-size:90.666619pt;}
.fs4{font-size:95.999808pt;}
.fs1d{font-size:102.399796pt;}
.fs14{font-size:106.666587pt;}
.fs13{font-size:111.999776pt;}
.fs1a{font-size:115.769769pt;}
.fs12{font-size:117.332966pt;}
.fs10{font-size:122.666555pt;}
.fs1{font-size:127.999744pt;}
.fs15{font-size:133.332934pt;}
.fs5{font-size:134.399732pt;}
.fs1f{font-size:143.999713pt;}
.fs2{font-size:149.332902pt;}
.fs11{font-size:159.999681pt;}
.fs1e{font-size:165.332870pt;}
.fs3{font-size:170.666459pt;}
.fsa{font-size:184.852831pt;}
.fs0{font-size:202.666395pt;}
.fs16{font-size:234.666332pt;}
.fs17{font-size:277.332646pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.001440pt;}
.y10{bottom:13.678390pt;}
.y35{bottom:14.245290pt;}
.y17{bottom:21.831520pt;}
.ye{bottom:30.245258pt;}
.y16{bottom:39.431485pt;}
.y108{bottom:46.941582pt;}
.yb9{bottom:102.794008pt;}
.y114{bottom:104.400774pt;}
.y49{bottom:104.793624pt;}
.y79{bottom:107.190165pt;}
.yac{bottom:108.256487pt;}
.y112{bottom:115.007589pt;}
.yc3{bottom:115.028004pt;}
.y9e{bottom:118.897384pt;}
.y6d{bottom:126.549322pt;}
.y48{bottom:127.833567pt;}
.y43{bottom:129.313535pt;}
.y115{bottom:130.848761pt;}
.y118{bottom:133.750666pt;}
.yab{bottom:137.696428pt;}
.y91{bottom:138.417349pt;}
.yfc{bottom:138.920651pt;}
.yb8{bottom:139.593935pt;}
.y78{bottom:140.790098pt;}
.yfa{bottom:144.246967pt;}
.y47{bottom:150.873521pt;}
.yc2{bottom:157.347920pt;}
.ye2{bottom:164.480281pt;}
.y9d{bottom:164.897292pt;}
.y6c{bottom:167.029241pt;}
.yaa{bottom:167.136369pt;}
.yf9{bottom:168.848218pt;}
.yfb{bottom:170.178488pt;}
.y111{bottom:171.220776pt;}
.y42{bottom:173.473447pt;}
.y46{bottom:173.913475pt;}
.y77{bottom:174.390031pt;}
.yb7{bottom:176.393861pt;}
.yd2{bottom:177.827879pt;}
.y107{bottom:178.563755pt;}
.y89{bottom:183.900934pt;}
.y21{bottom:185.052270pt;}
.y90{bottom:189.937246pt;}
.y45{bottom:196.953429pt;}
.y1b{bottom:197.853968pt;}
.y117{bottom:201.250623pt;}
.y20{bottom:204.685031pt;}
.ye1{bottom:204.960200pt;}
.yd1{bottom:206.627821pt;}
.y6b{bottom:207.509160pt;}
.y106{bottom:208.803695pt;}
.y9c{bottom:210.897200pt;}
.ya9{bottom:212.576279pt;}
.y1c{bottom:213.027994pt;}
.yb6{bottom:213.193788pt;}
.yc1{bottom:216.227802pt;}
.y7e{bottom:217.163252pt;}
.y41{bottom:217.633359pt;}
.y6{bottom:219.245764pt;}
.y88{bottom:220.700861pt;}
.y76{bottom:221.323237pt;}
.y1a{bottom:222.381119pt;}
.y1f{bottom:224.317791pt;}
.y110{bottom:224.585970pt;}
.yd0{bottom:235.427764pt;}
.y105{bottom:239.043635pt;}
.y44{bottom:241.419458pt;}
.y8f{bottom:241.457143pt;}
.y1e{bottom:243.950552pt;}
.ye0{bottom:245.440119pt;}
.y19{bottom:246.908270pt;}
.y6a{bottom:247.989079pt;}
.yd{bottom:248.928441pt;}
.yb5{bottom:249.993714pt;}
.yea{bottom:252.960104pt;}
.y5{bottom:253.805695pt;}
.y75{bottom:254.923170pt;}
.y9b{bottom:256.897108pt;}
.y62{bottom:257.163261pt;}
.ya8{bottom:258.016188pt;}
.yf6{bottom:258.234141pt;}
.y7d{bottom:260.363166pt;}
.y40{bottom:261.793271pt;}
.y1d{bottom:263.583313pt;}
.ycf{bottom:264.227706pt;}
.yf8{bottom:265.210255pt;}
.y5d{bottom:270.496535pt;}
.y116{bottom:271.749261pt;}
.y97{bottom:272.897076pt;}
.y87{bottom:273.500755pt;}
.y11{bottom:276.167928pt;}
.yc0{bottom:276.387682pt;}
.yf5{bottom:282.835392pt;}
.ydf{bottom:285.920039pt;}
.y61{bottom:285.963204pt;}
.y104{bottom:286.616840pt;}
.ya7{bottom:287.456129pt;}
.y74{bottom:288.523103pt;}
.y8e{bottom:292.977040pt;}
.yce{bottom:293.027649pt;}
.ye9{bottom:293.440024pt;}
.yc{bottom:295.008349pt;}
.yf7{bottom:296.468092pt;}
.y5c{bottom:299.296477pt;}
.yb4{bottom:302.793609pt;}
.y9a{bottom:302.897016pt;}
.y7c{bottom:303.563080pt;}
.y3f{bottom:305.953183pt;}
.yf4{bottom:307.436643pt;}
.y86{bottom:310.300682pt;}
.y60{bottom:314.763146pt;}
.y103{bottom:316.856779pt;}
.y50{bottom:317.314462pt;}
.y96{bottom:318.896984pt;}
.ybf{bottom:320.547594pt;}
.ycd{bottom:321.827591pt;}
.y73{bottom:322.123036pt;}
.y69{bottom:324.156209pt;}
.yde{bottom:326.399958pt;}
.y5b{bottom:328.096420pt;}
.yed{bottom:331.256945pt;}
.ya6{bottom:332.896038pt;}
.ye8{bottom:333.919943pt;}
.y10f{bottom:336.148447pt;}
.yd8{bottom:337.483001pt;}
.y29{bottom:338.919816pt;}
.yb3{bottom:339.593535pt;}
.y119{bottom:340.028504pt;}
.yb{bottom:341.088257pt;}
.y24{bottom:341.905133pt;}
.y8d{bottom:344.496937pt;}
.yef{bottom:345.101542pt;}
.y102{bottom:347.096719pt;}
.y99{bottom:348.896925pt;}
.y3e{bottom:350.113095pt;}
.y4f{bottom:350.434392pt;}
.ycc{bottom:350.627534pt;}
.y5f{bottom:356.896362pt;}
.y25{bottom:357.079138pt;}
.y7b{bottom:357.322961pt;}
.y28{bottom:358.552577pt;}
.yee{bottom:361.672839pt;}
.y85{bottom:363.100577pt;}
.y68{bottom:364.636128pt;}
.y95{bottom:364.896893pt;}
.y23{bottom:366.432284pt;}
.yf3{bottom:368.580688pt;}
.y5a{bottom:370.229636pt;}
.ye7{bottom:374.399862pt;}
.yd7{bottom:375.882924pt;}
.y10e{bottom:376.468367pt;}
.y4{bottom:377.977460pt;}
.y27{bottom:378.185338pt;}
.ya5{bottom:378.335948pt;}
.ycb{bottom:379.427476pt;}
.ybe{bottom:380.707474pt;}
.ydd{bottom:382.879845pt;}
.y4e{bottom:383.554321pt;}
.ya{bottom:387.168165pt;}
.y72{bottom:389.322902pt;}
.y22{bottom:390.959435pt;}
.yb2{bottom:392.393430pt;}
.y3d{bottom:394.273007pt;}
.yec{bottom:394.616818pt;}
.y101{bottom:394.669924pt;}
.y8c{bottom:396.016834pt;}
.y26{bottom:397.818099pt;}
.y59{bottom:399.029578pt;}
.y84{bottom:399.900503pt;}
.y55{bottom:400.842875pt;}
.y67{bottom:405.116047pt;}
.ya4{bottom:407.775889pt;}
.yca{bottom:408.227419pt;}
.y94{bottom:410.896801pt;}
.y7a{bottom:412.362852pt;}
.yd6{bottom:414.282848pt;}
.ye6{bottom:414.879781pt;}
.y4d{bottom:416.674249pt;}
.y71{bottom:422.922834pt;}
.ybd{bottom:424.867385pt;}
.y100{bottom:424.909864pt;}
.y52{bottom:427.548763pt;}
.y58{bottom:427.829521pt;}
.yb1{bottom:429.193356pt;}
.y3{bottom:432.697350pt;}
.y10d{bottom:434.121552pt;}
.y83{bottom:436.700430pt;}
.yc9{bottom:437.027361pt;}
.ydc{bottom:439.359732pt;}
.y3c{bottom:440.672914pt;}
.y5e{bottom:441.162794pt;}
.y66{bottom:445.595967pt;}
.y15{bottom:446.637612pt;}
.y4c{bottom:449.794171pt;}
.yd5{bottom:450.762775pt;}
.y54{bottom:452.042772pt;}
.ya3{bottom:453.215798pt;}
.yff{bottom:455.149803pt;}
.ye5{bottom:455.359700pt;}
.y70{bottom:456.522767pt;}
.y93{bottom:456.896709pt;}
.yeb{bottom:457.976692pt;}
.y34{bottom:463.340436pt;}
.y8b{bottom:463.536700pt;}
.yc8{bottom:465.827304pt;}
.yb0{bottom:465.993283pt;}
.yf2{bottom:466.100493pt;}
.ybc{bottom:469.027297pt;}
.y14{bottom:469.037567pt;}
.y57{bottom:469.962737pt;}
.y98{bottom:472.896677pt;}
.y82{bottom:473.500356pt;}
.y2d{bottom:473.694891pt;}
.ydb{bottom:479.839651pt;}
.y9{bottom:481.055978pt;}
.yd4{bottom:481.482714pt;}
.y33{bottom:482.973197pt;}
.y4b{bottom:485.714086pt;}
.y65{bottom:486.075886pt;}
.y51{bottom:486.748645pt;}
.y2{bottom:487.417241pt;}
.y6f{bottom:490.122700pt;}
.y13{bottom:491.437523pt;}
.y10c{bottom:491.774737pt;}
.y3b{bottom:492.192811pt;}
.yc7{bottom:494.627246pt;}
.ye4{bottom:495.839619pt;}
.y2c{bottom:498.222042pt;}
.ya2{bottom:498.655708pt;}
.y56{bottom:498.762679pt;}
.y2e{bottom:501.132521pt;}
.y32{bottom:502.605958pt;}
.yfe{bottom:502.723008pt;}
.yaf{bottom:502.793209pt;}
.yf1{bottom:506.740412pt;}
.ybb{bottom:513.187209pt;}
.y12{bottom:513.837478pt;}
.y8a{bottom:515.056597pt;}
.y92{bottom:518.896585pt;}
.yd3{bottom:519.882637pt;}
.yda{bottom:520.319571pt;}
.y31{bottom:522.238719pt;}
.y2b{bottom:522.749193pt;}
.yc6{bottom:523.427189pt;}
.y6e{bottom:523.722633pt;}
.y81{bottom:526.300251pt;}
.y53{bottom:527.562622pt;}
.y4a{bottom:528.034001pt;}
.ya1{bottom:528.095649pt;}
.y8{bottom:535.775869pt;}
.ye3{bottom:536.319539pt;}
.y30{bottom:541.871479pt;}
.y64{bottom:542.555773pt;}
.y3a{bottom:543.712708pt;}
.yf0{bottom:545.220328pt;}
.y2a{bottom:547.276344pt;}
.y10b{bottom:549.427921pt;}
.yc5{bottom:552.227131pt;}
.yae{bottom:555.593104pt;}
.ya0{bottom:557.535590pt;}
.y2f{bottom:561.504240pt;}
.y80{bottom:563.100177pt;}
.yba{bottom:573.347089pt;}
.y37{bottom:575.070464pt;}
.yd9{bottom:576.799458pt;}
.yc4{bottom:581.027074pt;}
.y63{bottom:583.035692pt;}
.y7f{bottom:599.900104pt;}
.y9f{bottom:602.975499pt;}
.y36{bottom:604.190406pt;}
.y10a{bottom:625.333971pt;}
.y39{bottom:630.670658pt;}
.yfd{bottom:651.806480pt;}
.y7{bottom:652.814270pt;}
.y113{bottom:653.733011pt;}
.y109{bottom:654.709912pt;}
.yf{bottom:655.184921pt;}
.yad{bottom:655.272215pt;}
.y18{bottom:660.732997pt;}
.y38{bottom:666.958586pt;}
.h10{height:34.968680pt;}
.hd{height:45.653167pt;}
.ha{height:47.065117pt;}
.h8{height:51.343648pt;}
.hb{height:54.048775pt;}
.h2f{height:54.359364pt;}
.h2b{height:58.281134pt;}
.h9{height:59.901029pt;}
.h1b{height:62.166453pt;}
.h1f{height:65.291434pt;}
.h27{height:65.787578pt;}
.h11{height:68.458090pt;}
.h6{height:68.906112pt;}
.h15{height:69.937360pt;}
.h17{height:73.452978pt;}
.h13{height:77.015471pt;}
.h19{height:81.593587pt;}
.h1c{height:81.614522pt;}
.h2a{height:85.148268pt;}
.h26{height:85.572853pt;}
.h1a{height:85.695141pt;}
.h18{height:89.775760pt;}
.h29{height:89.851383pt;}
.h30{height:91.874817pt;}
.h28{height:92.875845pt;}
.h23{height:93.249814pt;}
.h22{height:93.856685pt;}
.h21{height:97.937304pt;}
.h12{height:98.408765pt;}
.h2c{height:98.499803pt;}
.h1e{height:102.017923pt;}
.hf{height:102.687295pt;}
.h1d{height:114.260087pt;}
.h2e{height:115.523207pt;}
.h3{height:115.999768pt;}
.he{height:119.801737pt;}
.h14{height:122.421631pt;}
.h16{height:124.333182pt;}
.h2d{height:125.694960pt;}
.h20{height:128.254824pt;}
.h7{height:129.280992pt;}
.hc{height:133.314273pt;}
.h5{height:136.916500pt;}
.h4{height:143.645418pt;}
.h24{height:170.958089pt;}
.h2{height:194.947656pt;}
.h25{height:201.905750pt;}
.h1{height:719.998560pt;}
.h0{height:720.000000pt;}
.w1{width:1279.997440pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x25{left:43.950044pt;}
.x35{left:57.123248pt;}
.x11{left:58.069912pt;}
.x4{left:62.966595pt;}
.x8{left:66.665588pt;}
.x14{left:72.469643pt;}
.x56{left:74.078536pt;}
.x46{left:77.460111pt;}
.x28{left:81.766206pt;}
.x2{left:85.797731pt;}
.x1{left:87.598260pt;}
.x3a{left:92.093087pt;}
.x3b{left:93.874383pt;}
.xd{left:104.838812pt;}
.x15{left:110.965666pt;}
.x26{left:113.256996pt;}
.x38{left:118.128260pt;}
.x2f{left:121.277976pt;}
.x30{left:122.731674pt;}
.x16{left:123.697240pt;}
.x2d{left:124.844905pt;}
.x4e{left:125.741357pt;}
.xa{left:132.248826pt;}
.x17{left:158.965570pt;}
.x37{left:161.456473pt;}
.x3c{left:164.758206pt;}
.x44{left:165.910425pt;}
.x31{left:169.277781pt;}
.x2e{left:172.844709pt;}
.x1f{left:198.802765pt;}
.x2a{left:202.400414pt;}
.x41{left:203.599630pt;}
.x20{left:211.712339pt;}
.x36{left:212.695783pt;}
.x45{left:213.910330pt;}
.xc{left:220.954942pt;}
.x2b{left:228.802661pt;}
.x42{left:234.802668pt;}
.x49{left:280.499725pt;}
.x12{left:311.326455pt;}
.x55{left:326.607618pt;}
.x34{left:400.191421pt;}
.x21{left:421.441420pt;}
.x54{left:428.756214pt;}
.x53{left:444.506559pt;}
.x4a{left:454.833732pt;}
.x39{left:455.945460pt;}
.x4b{left:464.681492pt;}
.x43{left:506.303026pt;}
.x3f{left:580.793935pt;}
.x33{left:585.218639pt;}
.x4d{left:591.671510pt;}
.x27{left:604.427341pt;}
.x24{left:615.253064pt;}
.xe{left:643.176930pt;}
.x3e{left:652.369170pt;}
.x58{left:654.355984pt;}
.x4f{left:667.002696pt;}
.xf{left:683.389950pt;}
.x19{left:685.893650pt;}
.x40{left:688.984729pt;}
.x57{left:694.235665pt;}
.x1a{left:699.427360pt;}
.x1b{left:733.893591pt;}
.x1c{left:743.397442pt;}
.x23{left:800.952767pt;}
.x5a{left:809.998383pt;}
.x5b{left:812.998377pt;}
.x50{left:815.053467pt;}
.x51{left:827.483643pt;}
.x29{left:832.496039pt;}
.x10{left:841.076131pt;}
.x13{left:857.583765pt;}
.xb{left:860.396465pt;}
.x52{left:879.053340pt;}
.x59{left:881.276550pt;}
.x22{left:884.051112pt;}
.x47{left:894.795536pt;}
.x48{left:898.535336pt;}
.x6{left:910.132664pt;}
.x2c{left:932.243826pt;}
.x32{left:935.098190pt;}
.x9{left:999.701373pt;}
.x4c{left:1010.011157pt;}
.x1d{left:1030.039223pt;}
.x3{left:1064.253541pt;}
.x1e{left:1240.321063pt;}
.x3d{left:1241.907508pt;}
.x7{left:1246.403082pt;}
.x5{left:1247.989528pt;}
.x18{left:1266.575252pt;}
}




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