
    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_f04320d0544117f7f6babf62.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_76f8667048e847b3b51b89ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_24f213a0705f85fea9d0e050.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856934;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_9cd12e4278ab8b97a82cfff8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.869629;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_661fe0f2da17a09e6a4c97a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989746;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_da7b5d69b14f30eac8edc602.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682129;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_15d6c19d31d44d7b274e1f6f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_c86a8dd00b984f7b0b5f2770.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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;}
.m1{transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250012,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250012,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:32.400000px;}
.v2{vertical-align:36.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000422px;}
.ls0{letter-spacing:0.010969px;}
.ls3{letter-spacing:0.042487px;}
.ls1{letter-spacing:0.130289px;}
.ls7{letter-spacing:0.287390px;}
.ls5{letter-spacing:14.687390px;}
.ls6{letter-spacing:27.647390px;}
.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;}
}
.ws4{word-spacing:-59.804737px;}
.ws0{word-spacing:-16.283579px;}
.ws5{word-spacing:-16.272610px;}
.ws6{word-spacing:-14.940563px;}
.ws7{word-spacing:-14.939873px;}
.ws1{word-spacing:-13.506269px;}
.wsa{word-spacing:-13.500984px;}
.ws9{word-spacing:-13.500563px;}
.ws2{word-spacing:-12.204509px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:106.762448px;}
.wsf{word-spacing:155.833467px;}
.wsc{word-spacing:327.317843px;}
.wsb{word-spacing:424.618147px;}
.wsd{word-spacing:425.507220px;}
.wse{word-spacing:431.485097px;}
._5b{margin-left:-41.420282px;}
._18{margin-left:-39.401747px;}
._1b{margin-left:-37.586208px;}
._48{margin-left:-33.610315px;}
._a{margin-left:-31.954803px;}
._24{margin-left:-24.037159px;}
._25{margin-left:-22.544076px;}
._5{margin-left:-21.329809px;}
._1{margin-left:-19.953847px;}
._6{margin-left:-18.656563px;}
._8{margin-left:-17.330982px;}
._b{margin-left:-16.329609px;}
._11{margin-left:-15.139028px;}
._12{margin-left:-13.979536px;}
._46{margin-left:-12.800772px;}
._52{margin-left:-11.314084px;}
._56{margin-left:-9.677047px;}
._53{margin-left:-8.640324px;}
._c{margin-left:-7.511173px;}
._d{margin-left:-5.842302px;}
._9{margin-left:-4.153867px;}
._4{margin-left:-2.664100px;}
._0{margin-left:-1.512057px;}
._3{width:1.245703px;}
._2{width:3.168119px;}
._7{width:4.289949px;}
._10{width:5.539238px;}
._17{width:6.746680px;}
._15{width:7.844691px;}
._f{width:8.975194px;}
._e{width:10.032857px;}
._13{width:11.195659px;}
._19{width:12.917172px;}
._1f{width:13.984556px;}
._1c{width:15.012844px;}
._1e{width:17.645938px;}
._14{width:19.238402px;}
._1a{width:20.947723px;}
._26{width:22.189216px;}
._4d{width:23.223616px;}
._20{width:24.437041px;}
._21{width:25.919566px;}
._22{width:26.975629px;}
._4e{width:28.447295px;}
._4f{width:29.863964px;}
._23{width:31.673313px;}
._59{width:32.938225px;}
._16{width:33.957148px;}
._5a{width:34.993312px;}
._55{width:36.001350px;}
._51{width:37.656386px;}
._50{width:38.666476px;}
._5c{width:40.020269px;}
._58{width:45.555420px;}
._57{width:46.801755px;}
._54{width:50.617898px;}
._27{width:53.220121px;}
._28{width:63.544633px;}
._3a{width:81.720581px;}
._2d{width:85.878353px;}
._39{width:90.838620px;}
._2a{width:95.021978px;}
._2b{width:97.780345px;}
._2c{width:100.400580px;}
._2f{width:104.825864px;}
._31{width:124.142941px;}
._30{width:126.038118px;}
._29{width:127.821881px;}
._36{width:130.879794px;}
._2e{width:132.672195px;}
._43{width:137.543731px;}
._1d{width:142.405924px;}
._38{width:144.223132px;}
._37{width:148.747773px;}
._32{width:150.531536px;}
._45{width:152.085096px;}
._33{width:162.553320px;}
._42{width:163.590805px;}
._34{width:165.541899px;}
._35{width:167.334300px;}
._41{width:170.858875px;}
._44{width:175.212884px;}
._40{width:176.532933px;}
._3b{width:178.144774px;}
._3f{width:190.333350px;}
._3c{width:192.248010px;}
._3d{width:194.408522px;}
._3e{width:203.048460px;}
._47{width:258.531231px;}
._4b{width:315.585956px;}
._4c{width:335.017068px;}
._49{width:342.717094px;}
._4a{width:440.447783px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:rgb(148,217,248);}
.fc6{color:transparent;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(17,17,17);}
.fc2{color:rgb(51,77,128);}
.fc1{color:rgb(77,99,144);}
.fc0{color:rgb(0,32,96);}
.fs5{font-size:36.721395px;}
.fs2{font-size:38.161485px;}
.fs4{font-size:54.002250px;}
.fs6{font-size:59.759493px;}
.fs3{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs0{font-size:72.002700px;}
.y0{bottom:0.000000px;}
.y2c{bottom:81.000000px;}
.y78{bottom:87.480000px;}
.y60{bottom:88.200000px;}
.y126{bottom:92.340000px;}
.y122{bottom:92.880000px;}
.y2b{bottom:97.200000px;}
.yac{bottom:98.640000px;}
.y77{bottom:109.080000px;}
.y5f{bottom:109.800000px;}
.y125{bottom:112.140000px;}
.y2a{bottom:113.400000px;}
.y121{bottom:114.480000px;}
.yab{bottom:120.240000px;}
.y29{bottom:129.600000px;}
.y76{bottom:130.680000px;}
.y5e{bottom:131.400000px;}
.y124{bottom:136.080000px;}
.yaa{bottom:141.840000px;}
.y28{bottom:145.800000px;}
.y75{bottom:152.280000px;}
.y5d{bottom:153.000000px;}
.y120{bottom:157.680000px;}
.y27{bottom:162.000000px;}
.ya9{bottom:163.440000px;}
.y74{bottom:173.880000px;}
.y5c{bottom:174.600000px;}
.y26{bottom:178.200000px;}
.y123{bottom:179.280000px;}
.ya8{bottom:185.040000px;}
.y25{bottom:194.400000px;}
.y73{bottom:195.480000px;}
.y5b{bottom:196.200000px;}
.y11f{bottom:200.880000px;}
.ya7{bottom:206.640000px;}
.y24{bottom:210.600000px;}
.y72{bottom:217.080000px;}
.y5a{bottom:217.800000px;}
.y11e{bottom:222.480000px;}
.y23{bottom:226.800000px;}
.ya6{bottom:228.240000px;}
.y71{bottom:238.680000px;}
.y59{bottom:239.400000px;}
.y22{bottom:243.000000px;}
.y11d{bottom:244.080000px;}
.ya5{bottom:249.840000px;}
.y21{bottom:259.200000px;}
.y70{bottom:260.280000px;}
.y58{bottom:261.000000px;}
.y11c{bottom:265.680000px;}
.ya4{bottom:271.440000px;}
.y6f{bottom:281.880000px;}
.y57{bottom:282.600000px;}
.y11b{bottom:287.280000px;}
.ya3{bottom:293.040000px;}
.y6e{bottom:303.480000px;}
.y56{bottom:304.200000px;}
.y11a{bottom:308.880000px;}
.ya2{bottom:314.640000px;}
.y20{bottom:316.080000px;}
.y6d{bottom:325.080000px;}
.y55{bottom:325.800000px;}
.y119{bottom:330.480000px;}
.y1f{bottom:334.080000px;}
.ya1{bottom:336.240000px;}
.y6c{bottom:346.680000px;}
.y54{bottom:347.400000px;}
.y1e{bottom:352.080000px;}
.ya0{bottom:357.840000px;}
.y6b{bottom:368.280000px;}
.y53{bottom:369.000000px;}
.y1d{bottom:370.080000px;}
.yf7{bottom:370.980000px;}
.y118{bottom:373.680000px;}
.y9f{bottom:379.440000px;}
.y1c{bottom:388.080000px;}
.y6a{bottom:389.880000px;}
.y52{bottom:390.600000px;}
.yf6{bottom:392.580000px;}
.y117{bottom:395.280000px;}
.y9e{bottom:401.040000px;}
.y69{bottom:411.480000px;}
.y51{bottom:412.200000px;}
.yf5{bottom:414.180000px;}
.y116{bottom:416.880000px;}
.yd6{bottom:421.740000px;}
.y9d{bottom:422.640000px;}
.y1b{bottom:424.080000px;}
.y68{bottom:433.080000px;}
.y50{bottom:433.800000px;}
.yf4{bottom:435.780000px;}
.y115{bottom:438.480000px;}
.yd5{bottom:443.340000px;}
.y9c{bottom:444.240000px;}
.y67{bottom:454.680000px;}
.y4f{bottom:455.400000px;}
.yf3{bottom:457.380000px;}
.y1a{bottom:460.080000px;}
.y9b{bottom:465.840000px;}
.y66{bottom:476.280000px;}
.y4e{bottom:477.000000px;}
.y19{bottom:478.080000px;}
.yf2{bottom:478.980000px;}
.yd4{bottom:481.680000px;}
.y9a{bottom:487.440000px;}
.y18{bottom:496.080000px;}
.y65{bottom:497.880000px;}
.y4d{bottom:498.600000px;}
.yad{bottom:502.380000px;}
.yd3{bottom:503.280000px;}
.y99{bottom:509.040000px;}
.y17{bottom:514.080000px;}
.y64{bottom:519.480000px;}
.y4c{bottom:520.200000px;}
.yd2{bottom:524.880000px;}
.y98{bottom:530.640000px;}
.y16{bottom:532.080000px;}
.y63{bottom:541.080000px;}
.y4b{bottom:541.800000px;}
.yd1{bottom:546.480000px;}
.yf1{bottom:549.000000px;}
.y15{bottom:550.080000px;}
.y97{bottom:552.240000px;}
.yf0{bottom:557.100000px;}
.y62{bottom:562.680000px;}
.yec{bottom:567.900000px;}
.y14{bottom:568.080000px;}
.y96{bottom:573.840000px;}
.yeb{bottom:584.100000px;}
.y61{bottom:584.280000px;}
.y13{bottom:586.080000px;}
.yd0{bottom:589.680000px;}
.y95{bottom:595.440000px;}
.yef{bottom:597.780000px;}
.yea{bottom:600.300000px;}
.y12{bottom:604.080000px;}
.y4a{bottom:605.880000px;}
.y114{bottom:611.280000px;}
.yed{bottom:613.980000px;}
.y94{bottom:617.040000px;}
.y11{bottom:622.080000px;}
.yee{bottom:630.180000px;}
.y113{bottom:632.880000px;}
.y93{bottom:638.640000px;}
.y10{bottom:640.080000px;}
.ycf{bottom:646.380000px;}
.y112{bottom:654.480000px;}
.yce{bottom:655.380000px;}
.yca{bottom:657.720000px;}
.yf{bottom:658.080000px;}
.y92{bottom:660.240000px;}
.ye9{bottom:661.140000px;}
.ye8{bottom:669.240000px;}
.y49{bottom:669.600000px;}
.yc9{bottom:675.720000px;}
.ye{bottom:676.080000px;}
.ye5{bottom:680.400000px;}
.y91{bottom:681.840000px;}
.y48{bottom:687.600000px;}
.ycd{bottom:691.560000px;}
.yc8{bottom:693.720000px;}
.ye4{bottom:696.600000px;}
.yd{bottom:700.920000px;}
.y90{bottom:703.440000px;}
.ye7{bottom:708.840000px;}
.ycb{bottom:709.560000px;}
.yc7{bottom:711.720000px;}
.ye3{bottom:712.800000px;}
.y10f{bottom:716.400000px;}
.y47{bottom:723.600000px;}
.y8f{bottom:725.040000px;}
.y111{bottom:725.400000px;}
.yc{bottom:725.580000px;}
.ycc{bottom:727.560000px;}
.y10e{bottom:734.400000px;}
.ye6{bottom:741.240000px;}
.y46{bottom:741.600000px;}
.y110{bottom:743.400000px;}
.y8e{bottom:746.640000px;}
.yc6{bottom:749.880000px;}
.yb{bottom:750.420000px;}
.y10d{bottom:752.400000px;}
.y45{bottom:759.600000px;}
.ye2{bottom:767.700000px;}
.yc4{bottom:767.880000px;}
.y8d{bottom:768.240000px;}
.ya{bottom:775.080000px;}
.ye1{bottom:775.800000px;}
.y44{bottom:777.600000px;}
.y10c{bottom:781.740000px;}
.yc5{bottom:785.880000px;}
.yc0{bottom:788.220000px;}
.y8c{bottom:789.840000px;}
.ydd{bottom:794.700000px;}
.y43{bottom:795.600000px;}
.y10b{bottom:799.740000px;}
.y9{bottom:799.920000px;}
.ybf{bottom:806.220000px;}
.yc3{bottom:808.380000px;}
.ye0{bottom:810.000000px;}
.ydc{bottom:810.900000px;}
.y8b{bottom:811.440000px;}
.y42{bottom:813.600000px;}
.yde{bottom:826.200000px;}
.yc1{bottom:826.380000px;}
.y41{bottom:831.600000px;}
.y10a{bottom:832.860000px;}
.y8a{bottom:833.040000px;}
.ydf{bottom:842.400000px;}
.yc2{bottom:844.380000px;}
.y40{bottom:849.600000px;}
.y109{bottom:850.860000px;}
.y8{bottom:852.660000px;}
.y89{bottom:854.640000px;}
.y100{bottom:855.180000px;}
.ybe{bottom:866.700000px;}
.y3f{bottom:867.600000px;}
.yff{bottom:873.180000px;}
.y7{bottom:874.260000px;}
.ybd{bottom:875.700000px;}
.y88{bottom:876.240000px;}
.y108{bottom:877.140000px;}
.ydb{bottom:881.460000px;}
.y3e{bottom:885.600000px;}
.yba{bottom:887.040000px;}
.yfe{bottom:891.180000px;}
.y107{bottom:895.140000px;}
.y6{bottom:895.860000px;}
.yd9{bottom:897.660000px;}
.y87{bottom:897.840000px;}
.y3d{bottom:903.600000px;}
.yb9{bottom:905.040000px;}
.ybc{bottom:907.200000px;}
.yfd{bottom:909.180000px;}
.y106{bottom:913.140000px;}
.yda{bottom:913.860000px;}
.ybb{bottom:916.200000px;}
.y5{bottom:917.460000px;}
.y86{bottom:919.440000px;}
.y3c{bottom:921.600000px;}
.y105{bottom:931.140000px;}
.y4{bottom:939.060000px;}
.y3b{bottom:939.600000px;}
.y85{bottom:941.040000px;}
.y104{bottom:953.460000px;}
.yb1{bottom:956.517236px;}
.yb3{bottom:957.421843px;}
.yb8{bottom:959.216467px;}
.yb2{bottom:960.121075px;}
.y3{bottom:960.660000px;}
.yd8{bottom:962.460000px;}
.y84{bottom:962.640000px;}
.y103{bottom:971.460000px;}
.y3a{bottom:975.600000px;}
.yb6{bottom:978.118383px;}
.y101{bottom:980.460000px;}
.y2{bottom:982.260000px;}
.yd7{bottom:984.060000px;}
.y83{bottom:984.240000px;}
.yb0{bottom:988.557842px;}
.y102{bottom:989.460000px;}
.yb4{bottom:991.979301px;}
.yb7{bottom:992.519147px;}
.yb5{bottom:995.758224px;}
.yaf{bottom:1000.799221px;}
.y1{bottom:1003.860000px;}
.y82{bottom:1005.840000px;}
.y39{bottom:1011.600000px;}
.yfc{bottom:1011.780000px;}
.yae{bottom:1014.840000px;}
.y81{bottom:1027.440000px;}
.y38{bottom:1029.600000px;}
.yfb{bottom:1029.780000px;}
.y37{bottom:1047.600000px;}
.yfa{bottom:1047.780000px;}
.y80{bottom:1049.040000px;}
.y36{bottom:1065.600000px;}
.y2d{bottom:1070.100000px;}
.y7f{bottom:1070.640000px;}
.yf9{bottom:1077.840000px;}
.y35{bottom:1083.600000px;}
.yf8{bottom:1086.840000px;}
.y7e{bottom:1092.240000px;}
.y2e{bottom:1098.000000px;}
.y34{bottom:1101.600000px;}
.y7d{bottom:1113.840000px;}
.y33{bottom:1119.600000px;}
.y7c{bottom:1135.440000px;}
.y32{bottom:1137.600000px;}
.y7b{bottom:1192.320000px;}
.y31{bottom:1195.380000px;}
.y30{bottom:1200.600000px;}
.y7a{bottom:1213.920000px;}
.y79{bottom:1215.180000px;}
.y2f{bottom:1228.860000px;}
.h8{height:30.284393px;}
.hc{height:35.992711px;}
.h11{height:37.495703px;}
.ha{height:39.831773px;}
.h9{height:40.298666px;}
.h5{height:41.319993px;}
.hf{height:41.493164px;}
.he{height:41.495078px;}
.h7{height:44.536035px;}
.h6{height:49.286348px;}
.h3{height:49.290911px;}
.h4{height:54.630820px;}
.hb{height:58.431879px;}
.h2{height:59.381133px;}
.h12{height:69.895703px;}
.h10{height:77.495078px;}
.hd{height:81.701133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:23.220000px;}
.x10{left:42.120000px;}
.x13{left:66.060000px;}
.x1b{left:84.060000px;}
.x18{left:91.980000px;}
.x2f{left:95.040000px;}
.x64{left:97.200000px;}
.x30{left:100.440000px;}
.x37{left:102.780000px;}
.x5e{left:104.760000px;}
.x36{left:107.100000px;}
.x1a{left:111.060000px;}
.x62{left:112.140000px;}
.x38{left:114.840000px;}
.x2b{left:120.240000px;}
.x5f{left:123.480000px;}
.xe{left:124.560000px;}
.x12{left:128.340000px;}
.x4c{left:132.480000px;}
.x53{left:140.040000px;}
.x54{left:142.380000px;}
.x52{left:143.460000px;}
.x55{left:146.880000px;}
.x39{left:149.040000px;}
.x14{left:151.560000px;}
.x4d{left:154.080000px;}
.x4{left:155.160000px;}
.x1{left:156.780000px;}
.x6{left:169.020000px;}
.x5c{left:207.540000px;}
.x60{left:212.940000px;}
.x61{left:218.340000px;}
.x5d{left:223.200000px;}
.x57{left:225.000000px;}
.x5b{left:227.520000px;}
.x2c{left:230.580000px;}
.x4e{left:232.380000px;}
.x1e{left:245.880551px;}
.x63{left:251.100000px;}
.x3b{left:271.260000px;}
.x3a{left:273.420000px;}
.x3c{left:276.480000px;}
.x1f{left:288.001073px;}
.x20{left:305.997492px;}
.x5{left:343.980000px;}
.x3e{left:345.060000px;}
.x21{left:346.133812px;}
.x3d{left:347.220000px;}
.x3f{left:353.700000px;}
.x7{left:357.660000px;}
.x2{left:360.540000px;}
.x22{left:364.137527px;}
.xf{left:373.680000px;}
.x17{left:397.440000px;}
.x56{left:403.200000px;}
.x23{left:404.996037px;}
.x41{left:419.760000px;}
.x24{left:422.999752px;}
.x42{left:424.980000px;}
.x40{left:426.060000px;}
.x1d{left:435.240000px;}
.x3{left:455.400000px;}
.x1c{left:462.240000px;}
.x25{left:464.399906px;}
.x15{left:475.740000px;}
.x26{left:482.395414px;}
.x43{left:496.260000px;}
.x16{left:502.740000px;}
.x44{left:504.900000px;}
.x27{left:527.577953px;}
.x66{left:534.960000px;}
.x65{left:540.180000px;}
.x28{left:545.573461px;}
.x45{left:575.640000px;}
.x47{left:577.440000px;}
.x19{left:583.020000px;}
.x46{left:592.740000px;}
.x29{left:599.573662px;}
.x59{left:624.600000px;}
.x58{left:635.940000px;}
.x32{left:643.140000px;}
.x49{left:648.360000px;}
.x33{left:650.700000px;}
.x34{left:651.780000px;}
.x5a{left:654.300000px;}
.x48{left:660.780000px;}
.x2a{left:663.300000px;}
.x31{left:664.920000px;}
.x35{left:666.180000px;}
.xc{left:668.700000px;}
.x4a{left:670.140000px;}
.x2d{left:675.720000px;}
.x2e{left:681.840000px;}
.x8{left:694.080000px;}
.xa{left:699.840000px;}
.xb{left:720.720000px;}
.x50{left:725.580000px;}
.x9{left:729.360000px;}
.x4b{left:730.800000px;}
.x4f{left:732.420000px;}
.x51{left:734.760000px;}
.xd{left:801.540000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:28.800000pt;}
.v2{vertical-align:32.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000375pt;}
.ls0{letter-spacing:0.009750pt;}
.ls3{letter-spacing:0.037766pt;}
.ls1{letter-spacing:0.115812pt;}
.ls7{letter-spacing:0.255458pt;}
.ls5{letter-spacing:13.055458pt;}
.ls6{letter-spacing:24.575458pt;}
.ws4{word-spacing:-53.159766pt;}
.ws0{word-spacing:-14.474293pt;}
.ws5{word-spacing:-14.464542pt;}
.ws6{word-spacing:-13.280500pt;}
.ws7{word-spacing:-13.279887pt;}
.ws1{word-spacing:-12.005572pt;}
.wsa{word-spacing:-12.000875pt;}
.ws9{word-spacing:-12.000500pt;}
.ws2{word-spacing:-10.848452pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:94.899954pt;}
.wsf{word-spacing:138.518638pt;}
.wsc{word-spacing:290.949194pt;}
.wsb{word-spacing:377.438353pt;}
.wsd{word-spacing:378.228640pt;}
.wse{word-spacing:383.542309pt;}
._5b{margin-left:-36.818028pt;}
._18{margin-left:-35.023775pt;}
._1b{margin-left:-33.409962pt;}
._48{margin-left:-29.875835pt;}
._a{margin-left:-28.404270pt;}
._24{margin-left:-21.366364pt;}
._25{margin-left:-20.039179pt;}
._5{margin-left:-18.959830pt;}
._1{margin-left:-17.736753pt;}
._6{margin-left:-16.583611pt;}
._8{margin-left:-15.405317pt;}
._b{margin-left:-14.515208pt;}
._11{margin-left:-13.456914pt;}
._12{margin-left:-12.426254pt;}
._46{margin-left:-11.378464pt;}
._52{margin-left:-10.056964pt;}
._56{margin-left:-8.601820pt;}
._53{margin-left:-7.680288pt;}
._c{margin-left:-6.676598pt;}
._d{margin-left:-5.193158pt;}
._9{margin-left:-3.692326pt;}
._4{margin-left:-2.368089pt;}
._0{margin-left:-1.344050pt;}
._3{width:1.107292pt;}
._2{width:2.816106pt;}
._7{width:3.813288pt;}
._10{width:4.923767pt;}
._17{width:5.997049pt;}
._15{width:6.973059pt;}
._f{width:7.977950pt;}
._e{width:8.918095pt;}
._13{width:9.951697pt;}
._19{width:11.481930pt;}
._1f{width:12.430716pt;}
._1c{width:13.344750pt;}
._1e{width:15.685278pt;}
._14{width:17.100802pt;}
._1a{width:18.620198pt;}
._26{width:19.723747pt;}
._4d{width:20.643214pt;}
._20{width:21.721815pt;}
._21{width:23.039614pt;}
._22{width:23.978337pt;}
._4e{width:25.286484pt;}
._4f{width:26.545745pt;}
._23{width:28.154056pt;}
._59{width:29.278422pt;}
._16{width:30.184132pt;}
._5a{width:31.105166pt;}
._55{width:32.001200pt;}
._51{width:33.472343pt;}
._50{width:34.370201pt;}
._5c{width:35.573573pt;}
._58{width:40.493706pt;}
._57{width:41.601560pt;}
._54{width:44.993687pt;}
._27{width:47.306774pt;}
._28{width:56.484118pt;}
._3a{width:72.640516pt;}
._2d{width:76.336314pt;}
._39{width:80.745440pt;}
._2a{width:84.463980pt;}
._2b{width:86.915862pt;}
._2c{width:89.244960pt;}
._2f{width:93.178546pt;}
._31{width:110.349281pt;}
._30{width:112.033883pt;}
._29{width:113.619450pt;}
._36{width:116.337595pt;}
._2e{width:117.930840pt;}
._43{width:122.261094pt;}
._1d{width:126.583043pt;}
._38{width:128.198339pt;}
._37{width:132.220243pt;}
._32{width:133.805810pt;}
._45{width:135.186752pt;}
._33{width:144.491840pt;}
._42{width:145.414049pt;}
._34{width:147.148355pt;}
._35{width:148.741600pt;}
._41{width:151.874556pt;}
._44{width:155.744786pt;}
._40{width:156.918163pt;}
._3b{width:158.350910pt;}
._3f{width:169.185200pt;}
._3c{width:170.887120pt;}
._3d{width:172.807575pt;}
._3e{width:180.487520pt;}
._47{width:229.805539pt;}
._4b{width:280.520850pt;}
._4c{width:297.792949pt;}
._49{width:304.637417pt;}
._4a{width:391.509140pt;}
.fs5{font-size:32.641240pt;}
.fs2{font-size:33.921320pt;}
.fs4{font-size:48.002000pt;}
.fs6{font-size:53.119549pt;}
.fs3{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs0{font-size:64.002400pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:72.000000pt;}
.y78{bottom:77.760000pt;}
.y60{bottom:78.400000pt;}
.y126{bottom:82.080000pt;}
.y122{bottom:82.560000pt;}
.y2b{bottom:86.400000pt;}
.yac{bottom:87.680000pt;}
.y77{bottom:96.960000pt;}
.y5f{bottom:97.600000pt;}
.y125{bottom:99.680000pt;}
.y2a{bottom:100.800000pt;}
.y121{bottom:101.760000pt;}
.yab{bottom:106.880000pt;}
.y29{bottom:115.200000pt;}
.y76{bottom:116.160000pt;}
.y5e{bottom:116.800000pt;}
.y124{bottom:120.960000pt;}
.yaa{bottom:126.080000pt;}
.y28{bottom:129.600000pt;}
.y75{bottom:135.360000pt;}
.y5d{bottom:136.000000pt;}
.y120{bottom:140.160000pt;}
.y27{bottom:144.000000pt;}
.ya9{bottom:145.280000pt;}
.y74{bottom:154.560000pt;}
.y5c{bottom:155.200000pt;}
.y26{bottom:158.400000pt;}
.y123{bottom:159.360000pt;}
.ya8{bottom:164.480000pt;}
.y25{bottom:172.800000pt;}
.y73{bottom:173.760000pt;}
.y5b{bottom:174.400000pt;}
.y11f{bottom:178.560000pt;}
.ya7{bottom:183.680000pt;}
.y24{bottom:187.200000pt;}
.y72{bottom:192.960000pt;}
.y5a{bottom:193.600000pt;}
.y11e{bottom:197.760000pt;}
.y23{bottom:201.600000pt;}
.ya6{bottom:202.880000pt;}
.y71{bottom:212.160000pt;}
.y59{bottom:212.800000pt;}
.y22{bottom:216.000000pt;}
.y11d{bottom:216.960000pt;}
.ya5{bottom:222.080000pt;}
.y21{bottom:230.400000pt;}
.y70{bottom:231.360000pt;}
.y58{bottom:232.000000pt;}
.y11c{bottom:236.160000pt;}
.ya4{bottom:241.280000pt;}
.y6f{bottom:250.560000pt;}
.y57{bottom:251.200000pt;}
.y11b{bottom:255.360000pt;}
.ya3{bottom:260.480000pt;}
.y6e{bottom:269.760000pt;}
.y56{bottom:270.400000pt;}
.y11a{bottom:274.560000pt;}
.ya2{bottom:279.680000pt;}
.y20{bottom:280.960000pt;}
.y6d{bottom:288.960000pt;}
.y55{bottom:289.600000pt;}
.y119{bottom:293.760000pt;}
.y1f{bottom:296.960000pt;}
.ya1{bottom:298.880000pt;}
.y6c{bottom:308.160000pt;}
.y54{bottom:308.800000pt;}
.y1e{bottom:312.960000pt;}
.ya0{bottom:318.080000pt;}
.y6b{bottom:327.360000pt;}
.y53{bottom:328.000000pt;}
.y1d{bottom:328.960000pt;}
.yf7{bottom:329.760000pt;}
.y118{bottom:332.160000pt;}
.y9f{bottom:337.280000pt;}
.y1c{bottom:344.960000pt;}
.y6a{bottom:346.560000pt;}
.y52{bottom:347.200000pt;}
.yf6{bottom:348.960000pt;}
.y117{bottom:351.360000pt;}
.y9e{bottom:356.480000pt;}
.y69{bottom:365.760000pt;}
.y51{bottom:366.400000pt;}
.yf5{bottom:368.160000pt;}
.y116{bottom:370.560000pt;}
.yd6{bottom:374.880000pt;}
.y9d{bottom:375.680000pt;}
.y1b{bottom:376.960000pt;}
.y68{bottom:384.960000pt;}
.y50{bottom:385.600000pt;}
.yf4{bottom:387.360000pt;}
.y115{bottom:389.760000pt;}
.yd5{bottom:394.080000pt;}
.y9c{bottom:394.880000pt;}
.y67{bottom:404.160000pt;}
.y4f{bottom:404.800000pt;}
.yf3{bottom:406.560000pt;}
.y1a{bottom:408.960000pt;}
.y9b{bottom:414.080000pt;}
.y66{bottom:423.360000pt;}
.y4e{bottom:424.000000pt;}
.y19{bottom:424.960000pt;}
.yf2{bottom:425.760000pt;}
.yd4{bottom:428.160000pt;}
.y9a{bottom:433.280000pt;}
.y18{bottom:440.960000pt;}
.y65{bottom:442.560000pt;}
.y4d{bottom:443.200000pt;}
.yad{bottom:446.560000pt;}
.yd3{bottom:447.360000pt;}
.y99{bottom:452.480000pt;}
.y17{bottom:456.960000pt;}
.y64{bottom:461.760000pt;}
.y4c{bottom:462.400000pt;}
.yd2{bottom:466.560000pt;}
.y98{bottom:471.680000pt;}
.y16{bottom:472.960000pt;}
.y63{bottom:480.960000pt;}
.y4b{bottom:481.600000pt;}
.yd1{bottom:485.760000pt;}
.yf1{bottom:488.000000pt;}
.y15{bottom:488.960000pt;}
.y97{bottom:490.880000pt;}
.yf0{bottom:495.200000pt;}
.y62{bottom:500.160000pt;}
.yec{bottom:504.800000pt;}
.y14{bottom:504.960000pt;}
.y96{bottom:510.080000pt;}
.yeb{bottom:519.200000pt;}
.y61{bottom:519.360000pt;}
.y13{bottom:520.960000pt;}
.yd0{bottom:524.160000pt;}
.y95{bottom:529.280000pt;}
.yef{bottom:531.360000pt;}
.yea{bottom:533.600000pt;}
.y12{bottom:536.960000pt;}
.y4a{bottom:538.560000pt;}
.y114{bottom:543.360000pt;}
.yed{bottom:545.760000pt;}
.y94{bottom:548.480000pt;}
.y11{bottom:552.960000pt;}
.yee{bottom:560.160000pt;}
.y113{bottom:562.560000pt;}
.y93{bottom:567.680000pt;}
.y10{bottom:568.960000pt;}
.ycf{bottom:574.560000pt;}
.y112{bottom:581.760000pt;}
.yce{bottom:582.560000pt;}
.yca{bottom:584.640000pt;}
.yf{bottom:584.960000pt;}
.y92{bottom:586.880000pt;}
.ye9{bottom:587.680000pt;}
.ye8{bottom:594.880000pt;}
.y49{bottom:595.200000pt;}
.yc9{bottom:600.640000pt;}
.ye{bottom:600.960000pt;}
.ye5{bottom:604.800000pt;}
.y91{bottom:606.080000pt;}
.y48{bottom:611.200000pt;}
.ycd{bottom:614.720000pt;}
.yc8{bottom:616.640000pt;}
.ye4{bottom:619.200000pt;}
.yd{bottom:623.040000pt;}
.y90{bottom:625.280000pt;}
.ye7{bottom:630.080000pt;}
.ycb{bottom:630.720000pt;}
.yc7{bottom:632.640000pt;}
.ye3{bottom:633.600000pt;}
.y10f{bottom:636.800000pt;}
.y47{bottom:643.200000pt;}
.y8f{bottom:644.480000pt;}
.y111{bottom:644.800000pt;}
.yc{bottom:644.960000pt;}
.ycc{bottom:646.720000pt;}
.y10e{bottom:652.800000pt;}
.ye6{bottom:658.880000pt;}
.y46{bottom:659.200000pt;}
.y110{bottom:660.800000pt;}
.y8e{bottom:663.680000pt;}
.yc6{bottom:666.560000pt;}
.yb{bottom:667.040000pt;}
.y10d{bottom:668.800000pt;}
.y45{bottom:675.200000pt;}
.ye2{bottom:682.400000pt;}
.yc4{bottom:682.560000pt;}
.y8d{bottom:682.880000pt;}
.ya{bottom:688.960000pt;}
.ye1{bottom:689.600000pt;}
.y44{bottom:691.200000pt;}
.y10c{bottom:694.880000pt;}
.yc5{bottom:698.560000pt;}
.yc0{bottom:700.640000pt;}
.y8c{bottom:702.080000pt;}
.ydd{bottom:706.400000pt;}
.y43{bottom:707.200000pt;}
.y10b{bottom:710.880000pt;}
.y9{bottom:711.040000pt;}
.ybf{bottom:716.640000pt;}
.yc3{bottom:718.560000pt;}
.ye0{bottom:720.000000pt;}
.ydc{bottom:720.800000pt;}
.y8b{bottom:721.280000pt;}
.y42{bottom:723.200000pt;}
.yde{bottom:734.400000pt;}
.yc1{bottom:734.560000pt;}
.y41{bottom:739.200000pt;}
.y10a{bottom:740.320000pt;}
.y8a{bottom:740.480000pt;}
.ydf{bottom:748.800000pt;}
.yc2{bottom:750.560000pt;}
.y40{bottom:755.200000pt;}
.y109{bottom:756.320000pt;}
.y8{bottom:757.920000pt;}
.y89{bottom:759.680000pt;}
.y100{bottom:760.160000pt;}
.ybe{bottom:770.400000pt;}
.y3f{bottom:771.200000pt;}
.yff{bottom:776.160000pt;}
.y7{bottom:777.120000pt;}
.ybd{bottom:778.400000pt;}
.y88{bottom:778.880000pt;}
.y108{bottom:779.680000pt;}
.ydb{bottom:783.520000pt;}
.y3e{bottom:787.200000pt;}
.yba{bottom:788.480000pt;}
.yfe{bottom:792.160000pt;}
.y107{bottom:795.680000pt;}
.y6{bottom:796.320000pt;}
.yd9{bottom:797.920000pt;}
.y87{bottom:798.080000pt;}
.y3d{bottom:803.200000pt;}
.yb9{bottom:804.480000pt;}
.ybc{bottom:806.400000pt;}
.yfd{bottom:808.160000pt;}
.y106{bottom:811.680000pt;}
.yda{bottom:812.320000pt;}
.ybb{bottom:814.400000pt;}
.y5{bottom:815.520000pt;}
.y86{bottom:817.280000pt;}
.y3c{bottom:819.200000pt;}
.y105{bottom:827.680000pt;}
.y4{bottom:834.720000pt;}
.y3b{bottom:835.200000pt;}
.y85{bottom:836.480000pt;}
.y104{bottom:847.520000pt;}
.yb1{bottom:850.237543pt;}
.yb3{bottom:851.041639pt;}
.yb8{bottom:852.636860pt;}
.yb2{bottom:853.440955pt;}
.y3{bottom:853.920000pt;}
.yd8{bottom:855.520000pt;}
.y84{bottom:855.680000pt;}
.y103{bottom:863.520000pt;}
.y3a{bottom:867.200000pt;}
.yb6{bottom:869.438562pt;}
.y101{bottom:871.520000pt;}
.y2{bottom:873.120000pt;}
.yd7{bottom:874.720000pt;}
.y83{bottom:874.880000pt;}
.yb0{bottom:878.718082pt;}
.y102{bottom:879.520000pt;}
.yb4{bottom:881.759378pt;}
.yb7{bottom:882.239242pt;}
.yb5{bottom:885.118422pt;}
.yaf{bottom:889.599308pt;}
.y1{bottom:892.320000pt;}
.y82{bottom:894.080000pt;}
.y39{bottom:899.200000pt;}
.yfc{bottom:899.360000pt;}
.yae{bottom:902.080000pt;}
.y81{bottom:913.280000pt;}
.y38{bottom:915.200000pt;}
.yfb{bottom:915.360000pt;}
.y37{bottom:931.200000pt;}
.yfa{bottom:931.360000pt;}
.y80{bottom:932.480000pt;}
.y36{bottom:947.200000pt;}
.y2d{bottom:951.200000pt;}
.y7f{bottom:951.680000pt;}
.yf9{bottom:958.080000pt;}
.y35{bottom:963.200000pt;}
.yf8{bottom:966.080000pt;}
.y7e{bottom:970.880000pt;}
.y2e{bottom:976.000000pt;}
.y34{bottom:979.200000pt;}
.y7d{bottom:990.080000pt;}
.y33{bottom:995.200000pt;}
.y7c{bottom:1009.280000pt;}
.y32{bottom:1011.200000pt;}
.y7b{bottom:1059.840000pt;}
.y31{bottom:1062.560000pt;}
.y30{bottom:1067.200000pt;}
.y7a{bottom:1079.040000pt;}
.y79{bottom:1080.160000pt;}
.y2f{bottom:1092.320000pt;}
.h8{height:26.919460pt;}
.hc{height:31.993521pt;}
.h11{height:33.329514pt;}
.ha{height:35.406021pt;}
.h9{height:35.821036pt;}
.h5{height:36.728883pt;}
.hf{height:36.882812pt;}
.he{height:36.884514pt;}
.h7{height:39.587587pt;}
.h6{height:43.810087pt;}
.h3{height:43.814143pt;}
.h4{height:48.560729pt;}
.hb{height:51.939448pt;}
.h2{height:52.783229pt;}
.h12{height:62.129514pt;}
.h10{height:68.884514pt;}
.hd{height:72.623229pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:20.640000pt;}
.x10{left:37.440000pt;}
.x13{left:58.720000pt;}
.x1b{left:74.720000pt;}
.x18{left:81.760000pt;}
.x2f{left:84.480000pt;}
.x64{left:86.400000pt;}
.x30{left:89.280000pt;}
.x37{left:91.360000pt;}
.x5e{left:93.120000pt;}
.x36{left:95.200000pt;}
.x1a{left:98.720000pt;}
.x62{left:99.680000pt;}
.x38{left:102.080000pt;}
.x2b{left:106.880000pt;}
.x5f{left:109.760000pt;}
.xe{left:110.720000pt;}
.x12{left:114.080000pt;}
.x4c{left:117.760000pt;}
.x53{left:124.480000pt;}
.x54{left:126.560000pt;}
.x52{left:127.520000pt;}
.x55{left:130.560000pt;}
.x39{left:132.480000pt;}
.x14{left:134.720000pt;}
.x4d{left:136.960000pt;}
.x4{left:137.920000pt;}
.x1{left:139.360000pt;}
.x6{left:150.240000pt;}
.x5c{left:184.480000pt;}
.x60{left:189.280000pt;}
.x61{left:194.080000pt;}
.x5d{left:198.400000pt;}
.x57{left:200.000000pt;}
.x5b{left:202.240000pt;}
.x2c{left:204.960000pt;}
.x4e{left:206.560000pt;}
.x1e{left:218.560490pt;}
.x63{left:223.200000pt;}
.x3b{left:241.120000pt;}
.x3a{left:243.040000pt;}
.x3c{left:245.760000pt;}
.x1f{left:256.000954pt;}
.x20{left:271.997771pt;}
.x5{left:305.760000pt;}
.x3e{left:306.720000pt;}
.x21{left:307.674500pt;}
.x3d{left:308.640000pt;}
.x3f{left:314.400000pt;}
.x7{left:317.920000pt;}
.x2{left:320.480000pt;}
.x22{left:323.677801pt;}
.xf{left:332.160000pt;}
.x17{left:353.280000pt;}
.x56{left:358.400000pt;}
.x23{left:359.996478pt;}
.x41{left:373.120000pt;}
.x24{left:375.999780pt;}
.x42{left:377.760000pt;}
.x40{left:378.720000pt;}
.x1d{left:386.880000pt;}
.x3{left:404.800000pt;}
.x1c{left:410.880000pt;}
.x25{left:412.799917pt;}
.x15{left:422.880000pt;}
.x26{left:428.795924pt;}
.x43{left:441.120000pt;}
.x16{left:446.880000pt;}
.x44{left:448.800000pt;}
.x27{left:468.958181pt;}
.x66{left:475.520000pt;}
.x65{left:480.160000pt;}
.x28{left:484.954187pt;}
.x45{left:511.680000pt;}
.x47{left:513.280000pt;}
.x19{left:518.240000pt;}
.x46{left:526.880000pt;}
.x29{left:532.954366pt;}
.x59{left:555.200000pt;}
.x58{left:565.280000pt;}
.x32{left:571.680000pt;}
.x49{left:576.320000pt;}
.x33{left:578.400000pt;}
.x34{left:579.360000pt;}
.x5a{left:581.600000pt;}
.x48{left:587.360000pt;}
.x2a{left:589.600000pt;}
.x31{left:591.040000pt;}
.x35{left:592.160000pt;}
.xc{left:594.400000pt;}
.x4a{left:595.680000pt;}
.x2d{left:600.640000pt;}
.x2e{left:606.080000pt;}
.x8{left:616.960000pt;}
.xa{left:622.080000pt;}
.xb{left:640.640000pt;}
.x50{left:644.960000pt;}
.x9{left:648.320000pt;}
.x4b{left:649.600000pt;}
.x4f{left:651.040000pt;}
.x51{left:653.120000pt;}
.xd{left:712.480000pt;}
}




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