
    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_08f7661abe1dd4ffcde6d1f9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_07cb699a7e66c5cb06feab9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_3c65d655524727a009838c00.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_10a1bea8e877fc8f32aef056.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;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_449a64f7d0d58fbc16ce81a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_8a7e53c8f578baf6d1c3fa7b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_b01623f97a06d19ef495b067.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7f97d323aa4345499b50ce74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-33.119933px;}
.v3{vertical-align:-30.239870px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.004916px;}
.ls5{letter-spacing:0.173736px;}
.ls11{letter-spacing:0.179442px;}
.lsc{letter-spacing:0.215233px;}
.lse{letter-spacing:0.259220px;}
.ls3{letter-spacing:0.359046px;}
.ls2{letter-spacing:0.359109px;}
.ls7{letter-spacing:0.359114px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.719477px;}
.lsa{letter-spacing:2.333754px;}
.lsd{letter-spacing:3.599270px;}
.lsb{letter-spacing:4.493731px;}
.ls10{letter-spacing:5.759180px;}
.ls14{letter-spacing:17.998875px;}
.ls8{letter-spacing:28.295260px;}
.ls6{letter-spacing:31.895273px;}
.ls9{letter-spacing:34.055251px;}
.ls13{letter-spacing:97.919369px;}
.lsf{letter-spacing:138.455305px;}
.ls15{letter-spacing:578.158875px;}
.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;}
}
.ws0{word-spacing:-23.941125px;}
.ws2{word-spacing:-18.001125px;}
.wsb{word-spacing:-18.000676px;}
.ws5{word-spacing:-16.561125px;}
.wsf{word-spacing:-14.941125px;}
.wsd{word-spacing:-14.940563px;}
.wsc{word-spacing:-12.060450px;}
.wse{word-spacing:-12.060000px;}
.ws9{word-spacing:-9.720371px;}
.ws8{word-spacing:-9.720000px;}
.ws4{word-spacing:-9.506879px;}
.wsa{word-spacing:-8.787216px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:30.019126px;}
.ws6{word-spacing:35.995500px;}
.ws3{word-spacing:41.755500px;}
._13{margin-left:-15.894618px;}
._12{margin-left:-14.632710px;}
._10{margin-left:-11.102410px;}
._d{margin-left:-8.931304px;}
._11{margin-left:-6.610866px;}
._c{margin-left:-4.464985px;}
._9{margin-left:-2.760912px;}
._2{margin-left:-1.638660px;}
._0{width:1.136416px;}
._1{width:2.789366px;}
._6{width:4.104545px;}
._5{width:5.879815px;}
._17{width:7.029110px;}
._b{width:8.641706px;}
._8{width:10.531083px;}
._7{width:11.641760px;}
._1a{width:12.943631px;}
._1b{width:14.583071px;}
._1c{width:15.621644px;}
._20{width:16.958772px;}
._21{width:19.635365px;}
._22{width:20.690997px;}
._23{width:21.772078px;}
._27{width:23.352242px;}
._2b{width:24.399635px;}
._28{width:25.441143px;}
._34{width:26.590791px;}
._18{width:27.665778px;}
._19{width:28.687664px;}
._15{width:29.702936px;}
._16{width:30.930000px;}
._30{width:31.934043px;}
._26{width:33.208153px;}
._25{width:34.290216px;}
._24{width:35.437425px;}
._2d{width:37.622257px;}
._29{width:38.838304px;}
._57{width:40.956882px;}
._37{width:42.146708px;}
._39{width:43.765550px;}
._3a{width:45.411768px;}
._35{width:50.522835px;}
._38{width:51.784851px;}
._f{width:52.818332px;}
._14{width:53.996625px;}
._e{width:56.594268px;}
._3d{width:65.416988px;}
._3e{width:66.598001px;}
._2e{width:69.903657px;}
._2f{width:71.375968px;}
._4f{width:74.879112px;}
._4a{width:79.199211px;}
._58{width:80.763971px;}
._31{width:83.646822px;}
._32{width:85.674231px;}
._5a{width:95.703192px;}
._41{width:97.999250px;}
._1d{width:104.804926px;}
._1e{width:106.013624px;}
._1f{width:107.480295px;}
._56{width:108.719202px;}
._42{width:110.326446px;}
._3f{width:119.103391px;}
._36{width:120.486401px;}
._43{width:129.660653px;}
._33{width:133.543078px;}
._40{width:135.996084px;}
._59{width:137.257358px;}
._3{width:142.803032px;}
._5c{width:149.830420px;}
._5d{width:151.269070px;}
._5e{width:253.891033px;}
._51{width:274.319283px;}
._46{width:293.759319px;}
._3c{width:313.703135px;}
._50{width:315.359265px;}
._4b{width:329.759319px;}
._3b{width:361.836778px;}
._5b{width:365.612023px;}
._48{width:370.079418px;}
._2a{width:428.068735px;}
._2c{width:437.056416px;}
._55{width:489.599270px;}
._4d{width:495.359400px;}
._52{width:522.719477px;}
._4c{width:624.239328px;}
._a{width:626.361403px;}
._53{width:658.079346px;}
._4{width:696.742308px;}
._49{width:710.639247px;}
._45{width:753.839274px;}
._54{width:765.359400px;}
._47{width:1191.599265px;}
._44{width:1389.599405px;}
._4e{width:1730.159441px;}
.fc2{color:rgb(38,38,38);}
.fc1{color:rgb(93,93,93);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fsa{font-size:38.881485px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:48.241800px;}
.fsc{font-size:54.002250px;}
.fsb{font-size:59.762250px;}
.fs6{font-size:59.764500px;}
.fs7{font-size:66.242700px;}
.fs0{font-size:66.244500px;}
.fs8{font-size:72.002705px;}
.fs1{font-size:72.004500px;}
.fs3{font-size:84.244500px;}
.fs2{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y48{bottom:57.600083px;}
.y47{bottom:77.760132px;}
.y1{bottom:77.760150px;}
.y77{bottom:109.980011px;}
.y3a{bottom:116.460150px;}
.y6b{bottom:116.820099px;}
.y46{bottom:116.820150px;}
.yb5{bottom:127.260064px;}
.y8a{bottom:128.160049px;}
.y10f{bottom:132.480079px;}
.y76{bottom:134.100083px;}
.y45{bottom:134.100150px;}
.y6a{bottom:135.180039px;}
.yb4{bottom:144.360077px;}
.y75{bottom:145.440033px;}
.yef{bottom:147.420043px;}
.y39{bottom:147.420150px;}
.ye8{bottom:149.580093px;}
.ycf{bottom:151.200096px;}
.y69{bottom:152.280052px;}
.yb3{bottom:161.640060px;}
.ye6{bottom:162.540047px;}
.y68{bottom:163.620072px;}
.yed{bottom:164.520058px;}
.ycb{bottom:168.480079px;}
.y38{bottom:178.560150px;}
.ya4{bottom:179.640060px;}
.ye9{bottom:179.820099px;}
.ye1{bottom:180.720085px;}
.yca{bottom:185.760064px;}
.yb2{bottom:186.840088px;}
.yee{bottom:193.500068px;}
.yba{bottom:194.580093px;}
.ye7{bottom:195.660049px;}
.yc9{bottom:197.100083px;}
.yce{bottom:203.040047px;}
.yb1{bottom:204.120072px;}
.y67{bottom:208.620072px;}
.ye5{bottom:209.520058px;}
.y37{bottom:209.520150px;}
.ya3{bottom:210.600083px;}
.ycd{bottom:214.380066px;}
.yb0{bottom:214.560036px;}
.yec{bottom:220.320099px;}
.y89{bottom:224.640060px;}
.y74{bottom:225.720085px;}
.ye0{bottom:226.620072px;}
.yeb{bottom:237.600083px;}
.y66{bottom:239.580093px;}
.ye4{bottom:240.660049px;}
.y36{bottom:240.660150px;}
.ya2{bottom:241.740074px;}
.yea{bottom:248.760064px;}
.y88{bottom:255.600083px;}
.y73{bottom:256.680039px;}
.yaf{bottom:256.860077px;}
.yae{bottom:268.200096px;}
.y65{bottom:270.720085px;}
.ycc{bottom:271.620072px;}
.y35{bottom:271.620150px;}
.ya1{bottom:272.700096px;}
.y107{bottom:286.740000px;}
.y87{bottom:286.740074px;}
.y22{bottom:287.640150px;}
.y72{bottom:287.820099px;}
.yc8{bottom:288.720085px;}
.y64{bottom:301.680039px;}
.ye3{bottom:302.760064px;}
.y34{bottom:302.760150px;}
.ya0{bottom:303.840088px;}
.y106{bottom:317.700000px;}
.y86{bottom:317.700096px;}
.y71{bottom:318.780052px;}
.y63{bottom:332.820099px;}
.ye2{bottom:333.720085px;}
.y33{bottom:333.720150px;}
.y9f{bottom:334.800041px;}
.y105{bottom:348.840000px;}
.y85{bottom:348.840088px;}
.y70{bottom:349.920043px;}
.y62{bottom:363.780052px;}
.ydf{bottom:364.860077px;}
.y32{bottom:364.860150px;}
.y9e{bottom:365.940033px;}
.y104{bottom:379.800000px;}
.y84{bottom:379.800041px;}
.y6f{bottom:380.880066px;}
.ya{bottom:390.780000px;}
.y61{bottom:394.920043px;}
.yde{bottom:395.820099px;}
.y31{bottom:395.820150px;}
.y9d{bottom:396.900055px;}
.y21{bottom:409.680150px;}
.y103{bottom:410.940000px;}
.y83{bottom:410.940033px;}
.y6e{bottom:411.840088px;}
.y122{bottom:412.920000px;}
.y60{bottom:425.880066px;}
.ydd{bottom:426.960091px;}
.y30{bottom:426.960150px;}
.y9c{bottom:428.040047px;}
.y9{bottom:437.940000px;}
.y102{bottom:441.900000px;}
.y82{bottom:441.900055px;}
.yb9{bottom:442.980079px;}
.y121{bottom:444.060000px;}
.y5f{bottom:456.840088px;}
.y6d{bottom:457.920043px;}
.y2f{bottom:457.920150px;}
.y9b{bottom:459.000068px;}
.y101{bottom:473.040000px;}
.y81{bottom:473.040047px;}
.yb8{bottom:473.940033px;}
.y120{bottom:475.020000px;}
.y5e{bottom:487.980079px;}
.y44{bottom:487.980150px;}
.ydc{bottom:489.060036px;}
.y2e{bottom:489.060150px;}
.y9a{bottom:490.140060px;}
.y100{bottom:504.000000px;}
.y6c{bottom:504.000068px;}
.yb7{bottom:505.080093px;}
.y11f{bottom:506.160000px;}
.y5d{bottom:518.940033px;}
.y43{bottom:518.940150px;}
.ydb{bottom:520.020058px;}
.y2d{bottom:520.020150px;}
.y99{bottom:521.100083px;}
.y80{bottom:535.140060px;}
.yc7{bottom:536.040047px;}
.y11e{bottom:537.120000px;}
.y8{bottom:539.460000px;}
.y5c{bottom:550.080093px;}
.y42{bottom:550.080150px;}
.yb6{bottom:550.800041px;}
.yda{bottom:551.160049px;}
.y2c{bottom:551.160150px;}
.y19{bottom:552.240000px;}
.y98{bottom:552.240074px;}
.y20{bottom:556.200150px;}
.y7f{bottom:566.100083px;}
.yc6{bottom:567.180039px;}
.y11d{bottom:568.260000px;}
.yff{bottom:581.040000px;}
.y5b{bottom:581.040047px;}
.y41{bottom:581.040150px;}
.yd9{bottom:582.120072px;}
.y2b{bottom:582.120150px;}
.y97{bottom:583.200096px;}
.y7{bottom:585.540000px;}
.y7e{bottom:597.420043px;}
.yc5{bottom:598.320099px;}
.y11c{bottom:599.400000px;}
.yfe{bottom:612.360000px;}
.y5a{bottom:612.360077px;}
.y40{bottom:612.360150px;}
.yd8{bottom:613.440033px;}
.y2a{bottom:613.440150px;}
.y96{bottom:614.520058px;}
.y7d{bottom:628.380066px;}
.y18{bottom:629.460000px;}
.yc4{bottom:629.460091px;}
.y11b{bottom:630.540000px;}
.yfd{bottom:643.320000px;}
.y59{bottom:643.320099px;}
.y3f{bottom:643.320150px;}
.yd7{bottom:644.400055px;}
.y29{bottom:644.400150px;}
.y95{bottom:645.480079px;}
.y7c{bottom:659.520058px;}
.y17{bottom:660.420000px;}
.yc3{bottom:660.420043px;}
.y11a{bottom:661.500150px;}
.yfc{bottom:674.460000px;}
.y58{bottom:674.460091px;}
.y3e{bottom:674.460150px;}
.yd6{bottom:675.540047px;}
.y28{bottom:675.540150px;}
.y94{bottom:676.620072px;}
.y6{bottom:688.140150px;}
.y7b{bottom:690.480079px;}
.y16{bottom:691.560000px;}
.yc2{bottom:691.560070px;}
.y119{bottom:692.640150px;}
.y1f{bottom:703.080150px;}
.yfb{bottom:705.420000px;}
.y57{bottom:705.420078px;}
.y3d{bottom:705.420150px;}
.yd5{bottom:706.500068px;}
.y27{bottom:706.500150px;}
.y93{bottom:707.580059px;}
.y7a{bottom:721.620072px;}
.yc1{bottom:722.520058px;}
.y118{bottom:723.600150px;}
.y5{bottom:734.760150px;}
.yfa{bottom:736.560000px;}
.y56{bottom:736.560070px;}
.y3c{bottom:736.560150px;}
.yd4{bottom:737.640060px;}
.y92{bottom:738.540081px;}
.y79{bottom:752.580059px;}
.y15{bottom:753.660000px;}
.yc0{bottom:753.660049px;}
.y117{bottom:754.740150px;}
.y1e{bottom:761.580150px;}
.yf9{bottom:767.520000px;}
.y55{bottom:767.520058px;}
.y3b{bottom:767.520150px;}
.yd3{bottom:768.600083px;}
.y91{bottom:769.680073px;}
.y4{bottom:781.560150px;}
.y78{bottom:783.540081px;}
.ybf{bottom:784.620072px;}
.y14{bottom:784.620150px;}
.y116{bottom:785.700150px;}
.yf8{bottom:798.660000px;}
.y54{bottom:798.660049px;}
.y26{bottom:798.660150px;}
.yd2{bottom:799.740074px;}
.y90{bottom:800.640060px;}
.yad{bottom:814.680073px;}
.ybe{bottom:815.760064px;}
.y115{bottom:816.840150px;}
.y1d{bottom:820.260150px;}
.y3{bottom:828.180150px;}
.yf7{bottom:829.620000px;}
.y53{bottom:829.620072px;}
.y25{bottom:829.620150px;}
.yd1{bottom:830.700061px;}
.y8f{bottom:831.780052px;}
.yac{bottom:845.640060px;}
.ybd{bottom:846.720051px;}
.y114{bottom:847.800150px;}
.yf6{bottom:860.760000px;}
.y52{bottom:860.760064px;}
.y24{bottom:860.760150px;}
.yd0{bottom:861.840054px;}
.yab{bottom:876.780052px;}
.y13{bottom:876.780150px;}
.y8e{bottom:877.860077px;}
.y1c{bottom:878.940150px;}
.yf5{bottom:891.720000px;}
.y51{bottom:891.720051px;}
.y23{bottom:891.720150px;}
.y10e{bottom:892.800076px;}
.yaa{bottom:907.740074px;}
.y8d{bottom:908.820065px;}
.y113{bottom:909.900150px;}
.y2{bottom:910.800150px;}
.yf4{bottom:922.860000px;}
.y50{bottom:922.860077px;}
.y12{bottom:922.860150px;}
.ybc{bottom:923.580059px;}
.y10d{bottom:923.940067px;}
.y1b{bottom:937.620150px;}
.ya9{bottom:938.880066px;}
.yf3{bottom:953.820000px;}
.y4f{bottom:953.820065px;}
.y11{bottom:953.820150px;}
.y8c{bottom:954.540081px;}
.y10c{bottom:954.900055px;}
.y112{bottom:955.980150px;}
.ybb{bottom:969.480079px;}
.ya8{bottom:969.840054px;}
.yf2{bottom:984.960000px;}
.y4e{bottom:984.960074px;}
.y10{bottom:984.960150px;}
.y10b{bottom:986.040064px;}
.y8b{bottom:1000.620072px;}
.ya7{bottom:1000.980063px;}
.y111{bottom:1002.060150px;}
.yf1{bottom:1015.920000px;}
.y4d{bottom:1015.920061px;}
.yf{bottom:1015.920150px;}
.y10a{bottom:1017.000068px;}
.ya6{bottom:1031.940067px;}
.yf0{bottom:1047.060000px;}
.y4c{bottom:1047.060070px;}
.ye{bottom:1047.060150px;}
.y109{bottom:1048.140060px;}
.y1a{bottom:1054.800150px;}
.ya5{bottom:1063.080059px;}
.y4b{bottom:1078.020058px;}
.yd{bottom:1078.020150px;}
.y108{bottom:1094.040064px;}
.y110{bottom:1094.040150px;}
.y4a{bottom:1109.160067px;}
.yc{bottom:1109.160150px;}
.y49{bottom:1140.120063px;}
.yb{bottom:1140.120150px;}
.ha{height:34.855313px;}
.h10{height:34.856644px;}
.h11{height:38.672649px;}
.h1b{height:49.257167px;}
.h13{height:53.575923px;}
.h18{height:59.345979px;}
.h1d{height:59.347459px;}
.h8{height:59.387159px;}
.h16{height:59.441261px;}
.h15{height:63.951621px;}
.h3{height:63.953216px;}
.hc{height:64.549300px;}
.h6{height:64.550909px;}
.hb{height:65.886904px;}
.h2{height:65.888695px;}
.h12{height:72.881729px;}
.h1c{height:72.881733px;}
.h7{height:74.824583px;}
.h9{height:76.366406px;}
.he{height:76.367952px;}
.hf{height:76.367957px;}
.hd{height:76.368020px;}
.h1a{height:76.368024px;}
.h14{height:76.368087px;}
.h17{height:76.368092px;}
.h19{height:76.368227px;}
.h4{height:85.056458px;}
.h5{height:85.851378px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.380000px;}
.x8{left:133.380000px;}
.x9{left:139.320000px;}
.x7{left:159.480000px;}
.x17{left:185.580008px;}
.x18{left:191.340000px;}
.xa{left:212.580000px;}
.x3{left:252.720000px;}
.x15{left:263.340002px;}
.x4{left:278.460000px;}
.x13{left:282.780001px;}
.xf{left:285.300007px;}
.x2{left:295.386750px;}
.x14{left:327.600014px;}
.xe{left:339.120002px;}
.x12{left:342.000000px;}
.x5{left:350.100000px;}
.xc{left:444.240006px;}
.x11{left:483.300007px;}
.x10{left:484.379998px;}
.x16{left:509.579990px;}
.xd{left:554.220017px;}
.x19{left:676.800000px;}
.xb{left:770.039978px;}
.x1{left:778.500000px;}
.x1a{left:782.100000px;}
@media print{
.v4{vertical-align:-29.439940pt;}
.v3{vertical-align:-26.879884pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.004370pt;}
.ls5{letter-spacing:0.154432pt;}
.ls11{letter-spacing:0.159504pt;}
.lsc{letter-spacing:0.191318pt;}
.lse{letter-spacing:0.230418pt;}
.ls3{letter-spacing:0.319152pt;}
.ls2{letter-spacing:0.319208pt;}
.ls7{letter-spacing:0.319212pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.639535pt;}
.lsa{letter-spacing:2.074448pt;}
.lsd{letter-spacing:3.199351pt;}
.lsb{letter-spacing:3.994428pt;}
.ls10{letter-spacing:5.119271pt;}
.ls14{letter-spacing:15.999000pt;}
.ls8{letter-spacing:25.151342pt;}
.ls6{letter-spacing:28.351354pt;}
.ls9{letter-spacing:30.271334pt;}
.ls13{letter-spacing:87.039439pt;}
.lsf{letter-spacing:123.071382pt;}
.ls15{letter-spacing:513.919000pt;}
.ws0{word-spacing:-21.281000pt;}
.ws2{word-spacing:-16.001000pt;}
.wsb{word-spacing:-16.000601pt;}
.ws5{word-spacing:-14.721000pt;}
.wsf{word-spacing:-13.281000pt;}
.wsd{word-spacing:-13.280500pt;}
.wsc{word-spacing:-10.720400pt;}
.wse{word-spacing:-10.720000pt;}
.ws9{word-spacing:-8.640330pt;}
.ws8{word-spacing:-8.640000pt;}
.ws4{word-spacing:-8.450559pt;}
.wsa{word-spacing:-7.810858pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:26.683668pt;}
.ws6{word-spacing:31.996000pt;}
.ws3{word-spacing:37.116000pt;}
._13{margin-left:-14.128549pt;}
._12{margin-left:-13.006853pt;}
._10{margin-left:-9.868809pt;}
._d{margin-left:-7.938937pt;}
._11{margin-left:-5.876326pt;}
._c{margin-left:-3.968875pt;}
._9{margin-left:-2.454144pt;}
._2{margin-left:-1.456586pt;}
._0{width:1.010148pt;}
._1{width:2.479436pt;}
._6{width:3.648484pt;}
._5{width:5.226503pt;}
._17{width:6.248098pt;}
._b{width:7.681516pt;}
._8{width:9.360963pt;}
._7{width:10.348231pt;}
._1a{width:11.505450pt;}
._1b{width:12.962730pt;}
._1c{width:13.885906pt;}
._20{width:15.074464pt;}
._21{width:17.453658pt;}
._22{width:18.391997pt;}
._23{width:19.352958pt;}
._27{width:20.757549pt;}
._2b{width:21.688565pt;}
._28{width:22.614349pt;}
._34{width:23.636259pt;}
._18{width:24.591803pt;}
._19{width:25.500146pt;}
._15{width:26.402610pt;}
._16{width:27.493333pt;}
._30{width:28.385816pt;}
._26{width:29.518359pt;}
._25{width:30.480192pt;}
._24{width:31.499933pt;}
._2d{width:33.442006pt;}
._29{width:34.522937pt;}
._57{width:36.406117pt;}
._37{width:37.463740pt;}
._39{width:38.902711pt;}
._3a{width:40.366016pt;}
._35{width:44.909187pt;}
._38{width:46.030979pt;}
._f{width:46.949628pt;}
._14{width:47.997000pt;}
._e{width:50.306016pt;}
._3d{width:58.148434pt;}
._3e{width:59.198224pt;}
._2e{width:62.136584pt;}
._2f{width:63.445305pt;}
._4f{width:66.559211pt;}
._4a{width:70.399299pt;}
._58{width:71.790196pt;}
._31{width:74.352731pt;}
._32{width:76.154872pt;}
._5a{width:85.069504pt;}
._41{width:87.110444pt;}
._1d{width:93.159934pt;}
._1e{width:94.234332pt;}
._1f{width:95.538040pt;}
._56{width:96.639291pt;}
._42{width:98.067952pt;}
._3f{width:105.869680pt;}
._36{width:107.099023pt;}
._43{width:115.253914pt;}
._33{width:118.704959pt;}
._40{width:120.885408pt;}
._59{width:122.006540pt;}
._3{width:126.936028pt;}
._5c{width:133.182595pt;}
._5d{width:134.461395pt;}
._5e{width:225.680918pt;}
._51{width:243.839363pt;}
._46{width:261.119395pt;}
._3c{width:278.847231pt;}
._50{width:280.319347pt;}
._4b{width:293.119395pt;}
._3b{width:321.632691pt;}
._5b{width:324.988465pt;}
._48{width:328.959483pt;}
._2a{width:380.505542pt;}
._2c{width:388.494592pt;}
._55{width:435.199351pt;}
._4d{width:440.319467pt;}
._52{width:464.639535pt;}
._4c{width:554.879403pt;}
._a{width:556.765692pt;}
._53{width:584.959419pt;}
._4{width:619.326496pt;}
._49{width:631.679331pt;}
._45{width:670.079355pt;}
._54{width:680.319467pt;}
._47{width:1059.199347pt;}
._44{width:1235.199471pt;}
._4e{width:1537.919503pt;}
.fs5{font-size:34.560000pt;}
.fsa{font-size:34.561320pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:42.881600pt;}
.fsc{font-size:48.002000pt;}
.fsb{font-size:53.122000pt;}
.fs6{font-size:53.124000pt;}
.fs7{font-size:58.882400pt;}
.fs0{font-size:58.884000pt;}
.fs8{font-size:64.002404pt;}
.fs1{font-size:64.004000pt;}
.fs3{font-size:74.884000pt;}
.fs2{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:51.200074pt;}
.y47{bottom:69.120118pt;}
.y1{bottom:69.120133pt;}
.y77{bottom:97.760010pt;}
.y3a{bottom:103.520133pt;}
.y6b{bottom:103.840088pt;}
.y46{bottom:103.840133pt;}
.yb5{bottom:113.120057pt;}
.y8a{bottom:113.920044pt;}
.y10f{bottom:117.760071pt;}
.y76{bottom:119.200074pt;}
.y45{bottom:119.200133pt;}
.y6a{bottom:120.160035pt;}
.yb4{bottom:128.320069pt;}
.y75{bottom:129.280030pt;}
.yef{bottom:131.040039pt;}
.y39{bottom:131.040133pt;}
.ye8{bottom:132.960083pt;}
.ycf{bottom:134.400086pt;}
.y69{bottom:135.360047pt;}
.yb3{bottom:143.680054pt;}
.ye6{bottom:144.480042pt;}
.y68{bottom:145.440064pt;}
.yed{bottom:146.240052pt;}
.ycb{bottom:149.760071pt;}
.y38{bottom:158.720133pt;}
.ya4{bottom:159.680054pt;}
.ye9{bottom:159.840088pt;}
.ye1{bottom:160.640076pt;}
.yca{bottom:165.120057pt;}
.yb2{bottom:166.080079pt;}
.yee{bottom:172.000061pt;}
.yba{bottom:172.960083pt;}
.ye7{bottom:173.920044pt;}
.yc9{bottom:175.200074pt;}
.yce{bottom:180.480042pt;}
.yb1{bottom:181.440064pt;}
.y67{bottom:185.440064pt;}
.ye5{bottom:186.240052pt;}
.y37{bottom:186.240133pt;}
.ya3{bottom:187.200074pt;}
.ycd{bottom:190.560059pt;}
.yb0{bottom:190.720032pt;}
.yec{bottom:195.840088pt;}
.y89{bottom:199.680054pt;}
.y74{bottom:200.640076pt;}
.ye0{bottom:201.440064pt;}
.yeb{bottom:211.200074pt;}
.y66{bottom:212.960083pt;}
.ye4{bottom:213.920044pt;}
.y36{bottom:213.920133pt;}
.ya2{bottom:214.880066pt;}
.yea{bottom:221.120057pt;}
.y88{bottom:227.200074pt;}
.y73{bottom:228.160035pt;}
.yaf{bottom:228.320069pt;}
.yae{bottom:238.400086pt;}
.y65{bottom:240.640076pt;}
.ycc{bottom:241.440064pt;}
.y35{bottom:241.440133pt;}
.ya1{bottom:242.400086pt;}
.y107{bottom:254.880000pt;}
.y87{bottom:254.880066pt;}
.y22{bottom:255.680133pt;}
.y72{bottom:255.840088pt;}
.yc8{bottom:256.640076pt;}
.y64{bottom:268.160035pt;}
.ye3{bottom:269.120057pt;}
.y34{bottom:269.120133pt;}
.ya0{bottom:270.080079pt;}
.y106{bottom:282.400000pt;}
.y86{bottom:282.400086pt;}
.y71{bottom:283.360047pt;}
.y63{bottom:295.840088pt;}
.ye2{bottom:296.640076pt;}
.y33{bottom:296.640133pt;}
.y9f{bottom:297.600037pt;}
.y105{bottom:310.080000pt;}
.y85{bottom:310.080079pt;}
.y70{bottom:311.040039pt;}
.y62{bottom:323.360047pt;}
.ydf{bottom:324.320069pt;}
.y32{bottom:324.320133pt;}
.y9e{bottom:325.280030pt;}
.y104{bottom:337.600000pt;}
.y84{bottom:337.600037pt;}
.y6f{bottom:338.560059pt;}
.ya{bottom:347.360000pt;}
.y61{bottom:351.040039pt;}
.yde{bottom:351.840088pt;}
.y31{bottom:351.840133pt;}
.y9d{bottom:352.800049pt;}
.y21{bottom:364.160133pt;}
.y103{bottom:365.280000pt;}
.y83{bottom:365.280030pt;}
.y6e{bottom:366.080079pt;}
.y122{bottom:367.040000pt;}
.y60{bottom:378.560059pt;}
.ydd{bottom:379.520081pt;}
.y30{bottom:379.520133pt;}
.y9c{bottom:380.480042pt;}
.y9{bottom:389.280000pt;}
.y102{bottom:392.800000pt;}
.y82{bottom:392.800049pt;}
.yb9{bottom:393.760071pt;}
.y121{bottom:394.720000pt;}
.y5f{bottom:406.080079pt;}
.y6d{bottom:407.040039pt;}
.y2f{bottom:407.040133pt;}
.y9b{bottom:408.000061pt;}
.y101{bottom:420.480000pt;}
.y81{bottom:420.480042pt;}
.yb8{bottom:421.280030pt;}
.y120{bottom:422.240000pt;}
.y5e{bottom:433.760071pt;}
.y44{bottom:433.760133pt;}
.ydc{bottom:434.720032pt;}
.y2e{bottom:434.720133pt;}
.y9a{bottom:435.680054pt;}
.y100{bottom:448.000000pt;}
.y6c{bottom:448.000061pt;}
.yb7{bottom:448.960083pt;}
.y11f{bottom:449.920000pt;}
.y5d{bottom:461.280030pt;}
.y43{bottom:461.280133pt;}
.ydb{bottom:462.240052pt;}
.y2d{bottom:462.240133pt;}
.y99{bottom:463.200074pt;}
.y80{bottom:475.680054pt;}
.yc7{bottom:476.480042pt;}
.y11e{bottom:477.440000pt;}
.y8{bottom:479.520000pt;}
.y5c{bottom:488.960083pt;}
.y42{bottom:488.960133pt;}
.yb6{bottom:489.600037pt;}
.yda{bottom:489.920044pt;}
.y2c{bottom:489.920133pt;}
.y19{bottom:490.880000pt;}
.y98{bottom:490.880066pt;}
.y20{bottom:494.400133pt;}
.y7f{bottom:503.200074pt;}
.yc6{bottom:504.160035pt;}
.y11d{bottom:505.120000pt;}
.yff{bottom:516.480000pt;}
.y5b{bottom:516.480042pt;}
.y41{bottom:516.480133pt;}
.yd9{bottom:517.440064pt;}
.y2b{bottom:517.440133pt;}
.y97{bottom:518.400086pt;}
.y7{bottom:520.480000pt;}
.y7e{bottom:531.040039pt;}
.yc5{bottom:531.840088pt;}
.y11c{bottom:532.800000pt;}
.yfe{bottom:544.320000pt;}
.y5a{bottom:544.320069pt;}
.y40{bottom:544.320133pt;}
.yd8{bottom:545.280030pt;}
.y2a{bottom:545.280133pt;}
.y96{bottom:546.240052pt;}
.y7d{bottom:558.560059pt;}
.y18{bottom:559.520000pt;}
.yc4{bottom:559.520081pt;}
.y11b{bottom:560.480000pt;}
.yfd{bottom:571.840000pt;}
.y59{bottom:571.840088pt;}
.y3f{bottom:571.840133pt;}
.yd7{bottom:572.800049pt;}
.y29{bottom:572.800133pt;}
.y95{bottom:573.760071pt;}
.y7c{bottom:586.240052pt;}
.y17{bottom:587.040000pt;}
.yc3{bottom:587.040039pt;}
.y11a{bottom:588.000133pt;}
.yfc{bottom:599.520000pt;}
.y58{bottom:599.520081pt;}
.y3e{bottom:599.520133pt;}
.yd6{bottom:600.480042pt;}
.y28{bottom:600.480133pt;}
.y94{bottom:601.440064pt;}
.y6{bottom:611.680133pt;}
.y7b{bottom:613.760071pt;}
.y16{bottom:614.720000pt;}
.yc2{bottom:614.720063pt;}
.y119{bottom:615.680133pt;}
.y1f{bottom:624.960133pt;}
.yfb{bottom:627.040000pt;}
.y57{bottom:627.040070pt;}
.y3d{bottom:627.040133pt;}
.yd5{bottom:628.000061pt;}
.y27{bottom:628.000133pt;}
.y93{bottom:628.960053pt;}
.y7a{bottom:641.440064pt;}
.yc1{bottom:642.240052pt;}
.y118{bottom:643.200133pt;}
.y5{bottom:653.120133pt;}
.yfa{bottom:654.720000pt;}
.y56{bottom:654.720063pt;}
.y3c{bottom:654.720133pt;}
.yd4{bottom:655.680054pt;}
.y92{bottom:656.480072pt;}
.y79{bottom:668.960053pt;}
.y15{bottom:669.920000pt;}
.yc0{bottom:669.920044pt;}
.y117{bottom:670.880133pt;}
.y1e{bottom:676.960133pt;}
.yf9{bottom:682.240000pt;}
.y55{bottom:682.240052pt;}
.y3b{bottom:682.240133pt;}
.yd3{bottom:683.200074pt;}
.y91{bottom:684.160065pt;}
.y4{bottom:694.720133pt;}
.y78{bottom:696.480072pt;}
.ybf{bottom:697.440064pt;}
.y14{bottom:697.440133pt;}
.y116{bottom:698.400133pt;}
.yf8{bottom:709.920000pt;}
.y54{bottom:709.920044pt;}
.y26{bottom:709.920133pt;}
.yd2{bottom:710.880066pt;}
.y90{bottom:711.680054pt;}
.yad{bottom:724.160065pt;}
.ybe{bottom:725.120057pt;}
.y115{bottom:726.080133pt;}
.y1d{bottom:729.120133pt;}
.y3{bottom:736.160133pt;}
.yf7{bottom:737.440000pt;}
.y53{bottom:737.440064pt;}
.y25{bottom:737.440133pt;}
.yd1{bottom:738.400055pt;}
.y8f{bottom:739.360047pt;}
.yac{bottom:751.680054pt;}
.ybd{bottom:752.640046pt;}
.y114{bottom:753.600133pt;}
.yf6{bottom:765.120000pt;}
.y52{bottom:765.120057pt;}
.y24{bottom:765.120133pt;}
.yd0{bottom:766.080048pt;}
.yab{bottom:779.360047pt;}
.y13{bottom:779.360133pt;}
.y8e{bottom:780.320069pt;}
.y1c{bottom:781.280133pt;}
.yf5{bottom:792.640000pt;}
.y51{bottom:792.640046pt;}
.y23{bottom:792.640133pt;}
.y10e{bottom:793.600068pt;}
.yaa{bottom:806.880066pt;}
.y8d{bottom:807.840058pt;}
.y113{bottom:808.800133pt;}
.y2{bottom:809.600133pt;}
.yf4{bottom:820.320000pt;}
.y50{bottom:820.320069pt;}
.y12{bottom:820.320133pt;}
.ybc{bottom:820.960053pt;}
.y10d{bottom:821.280060pt;}
.y1b{bottom:833.440133pt;}
.ya9{bottom:834.560059pt;}
.yf3{bottom:847.840000pt;}
.y4f{bottom:847.840058pt;}
.y11{bottom:847.840133pt;}
.y8c{bottom:848.480072pt;}
.y10c{bottom:848.800049pt;}
.y112{bottom:849.760133pt;}
.ybb{bottom:861.760071pt;}
.ya8{bottom:862.080048pt;}
.yf2{bottom:875.520000pt;}
.y4e{bottom:875.520066pt;}
.y10{bottom:875.520133pt;}
.y10b{bottom:876.480057pt;}
.y8b{bottom:889.440064pt;}
.ya7{bottom:889.760056pt;}
.y111{bottom:890.720133pt;}
.yf1{bottom:903.040000pt;}
.y4d{bottom:903.040055pt;}
.yf{bottom:903.040133pt;}
.y10a{bottom:904.000061pt;}
.ya6{bottom:917.280060pt;}
.yf0{bottom:930.720000pt;}
.y4c{bottom:930.720063pt;}
.ye{bottom:930.720133pt;}
.y109{bottom:931.680054pt;}
.y1a{bottom:937.600133pt;}
.ya5{bottom:944.960053pt;}
.y4b{bottom:958.240052pt;}
.yd{bottom:958.240133pt;}
.y108{bottom:972.480057pt;}
.y110{bottom:972.480133pt;}
.y4a{bottom:985.920060pt;}
.yc{bottom:985.920133pt;}
.y49{bottom:1013.440056pt;}
.yb{bottom:1013.440133pt;}
.ha{height:30.982500pt;}
.h10{height:30.983683pt;}
.h11{height:34.375688pt;}
.h1b{height:43.784148pt;}
.h13{height:47.623043pt;}
.h18{height:52.751981pt;}
.h1d{height:52.753297pt;}
.h8{height:52.788586pt;}
.h16{height:52.836677pt;}
.h15{height:56.845885pt;}
.h3{height:56.847303pt;}
.hc{height:57.377155pt;}
.h6{height:57.378586pt;}
.hb{height:58.566137pt;}
.h2{height:58.567729pt;}
.h12{height:64.783759pt;}
.h1c{height:64.783763pt;}
.h7{height:66.510740pt;}
.h9{height:67.881250pt;}
.he{height:67.882624pt;}
.hf{height:67.882628pt;}
.hd{height:67.882684pt;}
.h1a{height:67.882688pt;}
.h14{height:67.882744pt;}
.h17{height:67.882748pt;}
.h19{height:67.882868pt;}
.h4{height:75.605740pt;}
.h5{height:76.312336pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.560000pt;}
.x8{left:118.560000pt;}
.x9{left:123.840000pt;}
.x7{left:141.760000pt;}
.x17{left:164.960007pt;}
.x18{left:170.080000pt;}
.xa{left:188.960000pt;}
.x3{left:224.640000pt;}
.x15{left:234.080002pt;}
.x4{left:247.520000pt;}
.x13{left:251.360001pt;}
.xf{left:253.600006pt;}
.x2{left:262.566000pt;}
.x14{left:291.200012pt;}
.xe{left:301.440002pt;}
.x12{left:304.000000pt;}
.x5{left:311.200000pt;}
.xc{left:394.880005pt;}
.x11{left:429.600006pt;}
.x10{left:430.559998pt;}
.x16{left:452.959991pt;}
.xd{left:492.640015pt;}
.x19{left:601.600000pt;}
.xb{left:684.479980pt;}
.x1{left:692.000000pt;}
.x1a{left:695.200000pt;}
}




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