
    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_86cba25f28730136e649e7c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.819824;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_1815cffcb4147085a3ecfbfe.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148438;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_a4783e72e937f7e0427cd1a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_5a80e2f4d4d4fd6052fc0a6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689453;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_517289ea68ac32df070b46f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_2bc423e5e63af6fe20b09c30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_845f0b63a0da8fa48c326bfd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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);}
.v3{vertical-align:-86.399400px;}
.v4{vertical-align:-79.920000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:33.120000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.051771px;}
.ls7{letter-spacing:0.064804px;}
.ls2{letter-spacing:0.148743px;}
.ls9{letter-spacing:5.908743px;}
.ls6{letter-spacing:6.046983px;}
.ls3{letter-spacing:16.414596px;}
.ls4{letter-spacing:22.894596px;}
.ls0{letter-spacing:24.829200px;}
.ls8{letter-spacing:51.469200px;}
.ls5{letter-spacing:1353.166983px;}
.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;}
}
.ws14{word-spacing:-24.599394px;}
.ws19{word-spacing:-23.758434px;}
.wsc{word-spacing:-22.530208px;}
.ws6{word-spacing:-22.465404px;}
.ws18{word-spacing:-21.077085px;}
.ws9{word-spacing:-21.025314px;}
.ws7{word-spacing:-20.668284px;}
.ws15{word-spacing:-0.704252px;}
.wsb{word-spacing:-0.287946px;}
.wsf{word-spacing:-0.287102px;}
.wse{word-spacing:-0.000360px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:0.000072px;}
.ws1a{word-spacing:0.118857px;}
.wsa{word-spacing:0.212143px;}
.ws13{word-spacing:0.397666px;}
.ws10{word-spacing:3.160420px;}
.ws4{word-spacing:13.815930px;}
.ws3{word-spacing:14.574214px;}
.ws0{word-spacing:19.713297px;}
.ws11{word-spacing:21.601494px;}
.ws16{word-spacing:23.484608px;}
.ws1{word-spacing:25.525999px;}
.ws2{word-spacing:28.390312px;}
.ws17{word-spacing:72.151437px;}
.ws8{word-spacing:125.738884px;}
.ws12{word-spacing:215.635433px;}
._33{margin-left:-6.268548px;}
._19{margin-left:-5.223102px;}
._9{margin-left:-4.054298px;}
._b{margin-left:-2.983020px;}
._1{margin-left:-1.589212px;}
._0{width:1.842892px;}
._c{width:3.781201px;}
._22{width:4.960700px;}
._f{width:6.324362px;}
._10{width:7.892837px;}
._36{width:9.000842px;}
._7{width:10.098712px;}
._6{width:11.877298px;}
._d{width:13.641558px;}
._8{width:14.798348px;}
._a{width:16.348366px;}
._15{width:17.678207px;}
._5{width:18.758523px;}
._11{width:20.150963px;}
._13{width:21.442652px;}
._3f{width:23.034744px;}
._32{width:24.774323px;}
._24{width:25.857613px;}
._2e{width:27.500417px;}
._2d{width:28.512825px;}
._2a{width:30.110410px;}
._29{width:31.871825px;}
._43{width:32.953715px;}
._73{width:33.983892px;}
._50{width:35.846495px;}
._3e{width:36.991349px;}
._3{width:38.466913px;}
._30{width:40.340371px;}
._20{width:41.462830px;}
._1f{width:42.781632px;}
._2{width:44.144371px;}
._58{width:45.241323px;}
._5c{width:46.472640px;}
._51{width:48.291618px;}
._2c{width:49.834161px;}
._7a{width:50.903854px;}
._2f{width:52.052611px;}
._42{width:53.659049px;}
._41{width:54.680793px;}
._6e{width:55.701196px;}
._4d{width:56.727944px;}
._3c{width:58.935980px;}
._3b{width:60.124325px;}
._47{width:62.083810px;}
._23{width:63.977985px;}
._28{width:65.674161px;}
._53{width:66.808142px;}
._54{width:67.927103px;}
._55{width:69.688682px;}
._56{width:71.811846px;}
._63{width:74.008808px;}
._64{width:75.505215px;}
._4f{width:79.878964px;}
._4e{width:81.460934px;}
._85{width:82.478203px;}
._84{width:83.662029px;}
._46{width:85.039650px;}
._70{width:86.230468px;}
._57{width:87.674894px;}
._1d{width:89.583600px;}
._1e{width:90.585644px;}
._2b{width:92.593820px;}
._66{width:95.790323px;}
._48{width:97.050248px;}
._4a{width:98.756324px;}
._7d{width:99.932537px;}
._21{width:103.619922px;}
._74{width:104.740909px;}
._71{width:107.574795px;}
._6f{width:108.830937px;}
._61{width:110.092576px;}
._62{width:111.202373px;}
._67{width:116.661331px;}
._e{width:118.611324px;}
._77{width:120.179471px;}
._49{width:121.553726px;}
._81{width:127.826133px;}
._6a{width:132.344118px;}
._6b{width:134.288825px;}
._35{width:139.906274px;}
._18{width:146.902551px;}
._34{width:148.722364px;}
._8a{width:162.063048px;}
._83{width:164.383661px;}
._82{width:165.650601px;}
._69{width:179.026576px;}
._68{width:180.438744px;}
._8e{width:182.445579px;}
._5b{width:185.661801px;}
._8f{width:200.290059px;}
._86{width:204.475355px;}
._26{width:213.073646px;}
._1a{width:228.078820px;}
._90{width:229.955373px;}
._91{width:245.220777px;}
._1c{width:249.176766px;}
._5f{width:314.159438px;}
._78{width:386.253162px;}
._7b{width:410.928102px;}
._45{width:416.809281px;}
._39{width:418.098969px;}
._37{width:419.945478px;}
._7c{width:423.435801px;}
._79{width:425.506393px;}
._89{width:426.890903px;}
._76{width:430.795732px;}
._7f{width:432.507795px;}
._17{width:440.600825px;}
._12{width:460.201774px;}
._7e{width:507.930322px;}
._6d{width:514.373567px;}
._60{width:545.718915px;}
._27{width:553.664886px;}
._14{width:610.121676px;}
._5d{width:621.705352px;}
._1b{width:715.012678px;}
._8b{width:743.494580px;}
._38{width:954.629830px;}
._72{width:974.720475px;}
._59{width:985.245615px;}
._40{width:996.293908px;}
._88{width:1036.930398px;}
._4b{width:1038.569603px;}
._52{width:1054.243329px;}
._5a{width:1168.813383px;}
._25{width:1199.130356px;}
._31{width:1203.913908px;}
._87{width:1207.495458px;}
._3d{width:1323.667372px;}
._8d{width:1329.502603px;}
._5e{width:1344.585352px;}
._44{width:1374.976996px;}
._16{width:1382.884865px;}
._8c{width:1410.324439px;}
._3a{width:1414.036388px;}
._80{width:1429.913475px;}
._6c{width:1486.425352px;}
._75{width:1515.945353px;}
._4{width:1651.866315px;}
._65{width:1826.215754px;}
._4c{width:2119.305352px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:rgb(68,114,196);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs5{font-size:59.764500px;}
.fs6{font-size:63.364500px;}
.fs0{font-size:66.244500px;}
.fs2{font-size:72.004500px;}
.fs8{font-size:77.764500px;}
.fs7{font-size:81.364500px;}
.fs4{font-size:84.244500px;}
.fs1{font-size:95.764500px;}
.y0{bottom:0.000000px;}
.y1a{bottom:111.780000px;}
.yc3{bottom:111.780150px;}
.ye9{bottom:112.140000px;}
.y37{bottom:112.680150px;}
.yb2{bottom:115.740000px;}
.y84{bottom:119.340000px;}
.ye5{bottom:122.940000px;}
.y161{bottom:126.540000px;}
.y6e{bottom:128.520000px;}
.y19{bottom:133.560000px;}
.yc2{bottom:133.560150px;}
.ye8{bottom:133.920000px;}
.yb1{bottom:137.520000px;}
.yb0{bottom:137.520150px;}
.y83{bottom:141.120000px;}
.y36{bottom:152.460150px;}
.yc1{bottom:155.340150px;}
.ye7{bottom:155.700000px;}
.ya8{bottom:158.040150px;}
.y160{bottom:159.120150px;}
.y94{bottom:159.300000px;}
.yaf{bottom:159.300150px;}
.y18{bottom:161.280000px;}
.y153{bottom:162.000000px;}
.y82{bottom:162.900000px;}
.ye4{bottom:166.500000px;}
.y53{bottom:169.740000px;}
.y6d{bottom:171.900000px;}
.yc9{bottom:172.260000px;}
.y35{bottom:172.440150px;}
.yc0{bottom:176.940150px;}
.ye6{bottom:177.300000px;}
.ya7{bottom:179.820000px;}
.y93{bottom:180.900000px;}
.yae{bottom:180.900150px;}
.yf5{bottom:184.500150px;}
.ye3{bottom:188.280000px;}
.y15f{bottom:191.700150px;}
.y6c{bottom:193.680000px;}
.y17{bottom:194.400150px;}
.yc8{bottom:195.840000px;}
.ybf{bottom:198.720150px;}
.ya6{bottom:201.600000px;}
.y152{bottom:201.960150px;}
.y92{bottom:202.680000px;}
.yad{bottom:202.680150px;}
.y81{bottom:206.280000px;}
.yf4{bottom:206.280150px;}
.y52{bottom:209.520150px;}
.y16{bottom:212.400150px;}
.y6b{bottom:215.280000px;}
.yc7{bottom:219.240000px;}
.ybe{bottom:220.500150px;}
.y11b{bottom:221.040000px;}
.ya5{bottom:223.380000px;}
.y91{bottom:224.460000px;}
.yb3{bottom:224.460150px;}
.y80{bottom:228.060000px;}
.yf3{bottom:228.060150px;}
.y51{bottom:229.500150px;}
.y15{bottom:230.580150px;}
.ye2{bottom:231.660000px;}
.y34{bottom:232.200150px;}
.y6a{bottom:237.060000px;}
.ybd{bottom:242.100150px;}
.yc6{bottom:242.640000px;}
.ya1{bottom:246.060000px;}
.yac{bottom:246.060150px;}
.y7f{bottom:249.840000px;}
.ye1{bottom:253.440000px;}
.y130{bottom:253.440150px;}
.y11a{bottom:257.400000px;}
.yc5{bottom:266.040150px;}
.y14{bottom:266.760000px;}
.y90{bottom:267.840000px;}
.yab{bottom:267.840150px;}
.y50{bottom:269.280000px;}
.ybc{bottom:269.820150px;}
.y7e{bottom:271.440000px;}
.yf2{bottom:271.440150px;}
.y33{bottom:271.980150px;}
.yf8{bottom:272.880000px;}
.y109{bottom:274.500000px;}
.ye0{bottom:275.040000px;}
.y69{bottom:280.620000px;}
.y119{bottom:284.760000px;}
.y13{bottom:284.940000px;}
.ybb{bottom:286.380000px;}
.y8f{bottom:289.620000px;}
.yc4{bottom:289.620150px;}
.y12f{bottom:289.800150px;}
.y32{bottom:291.960150px;}
.y13f{bottom:292.860000px;}
.yf7{bottom:292.860150px;}
.y7d{bottom:293.220000px;}
.ydf{bottom:296.820000px;}
.y108{bottom:301.680000px;}
.y12{bottom:302.940000px;}
.y151{bottom:307.080000px;}
.y4f{bottom:309.240000px;}
.y8e{bottom:311.400000px;}
.yea{bottom:311.400150px;}
.y118{bottom:312.120000px;}
.yf6{bottom:312.840150px;}
.yf1{bottom:315.000000px;}
.y12e{bottom:317.160150px;}
.yde{bottom:318.600000px;}
.y107{bottom:321.120000px;}
.y11{bottom:321.300000px;}
.y68{bottom:324.000000px;}
.y4e{bottom:329.040000px;}
.y15e{bottom:329.580000px;}
.y31{bottom:331.740150px;}
.y8d{bottom:333.000000px;}
.ya0{bottom:333.000150px;}
.yba{bottom:336.600000px;}
.y12d{bottom:344.520150px;}
.y7c{bottom:345.240000px;}
.y67{bottom:345.780000px;}
.y150{bottom:347.040000px;}
.y30{bottom:351.720150px;}
.y8c{bottom:354.780000px;}
.y9f{bottom:354.780150px;}
.yb9{bottom:358.380000px;}
.ydd{bottom:361.980000px;}
.y106{bottom:363.420000px;}
.y13e{bottom:366.840000px;}
.y66{bottom:367.380000px;}
.y4d{bottom:368.820150px;}
.y15d{bottom:369.540000px;}
.y8b{bottom:376.560000px;}
.y9e{bottom:376.560150px;}
.yb8{bottom:380.160000px;}
.y105{bottom:382.680000px;}
.ydc{bottom:383.760150px;}
.y14f{bottom:387.000000px;}
.y117{bottom:390.060000px;}
.y2f{bottom:393.660150px;}
.y7b{bottom:398.160000px;}
.y9d{bottom:398.160150px;}
.yf0{bottom:401.940150px;}
.y13d{bottom:403.020000px;}
.ydb{bottom:405.540150px;}
.y4c{bottom:408.780000px;}
.y15c{bottom:409.500000px;}
.y65{bottom:410.940000px;}
.y2e{bottom:415.440150px;}
.y7a{bottom:419.940000px;}
.yaa{bottom:419.940150px;}
.y12c{bottom:422.280150px;}
.yef{bottom:423.540150px;}
.y104{bottom:424.980000px;}
.y116{bottom:426.240000px;}
.y14e{bottom:426.960000px;}
.yda{bottom:427.140150px;}
.yb7{bottom:428.400000px;}
.y4b{bottom:428.580000px;}
.y13c{bottom:430.380000px;}
.y64{bottom:432.720000px;}
.y15b{bottom:434.520000px;}
.y2d{bottom:437.220150px;}
.y79{bottom:441.720000px;}
.y9c{bottom:441.720150px;}
.y103{bottom:442.980000px;}
.y12b{bottom:458.640150px;}
.y15a{bottom:459.540000px;}
.y102{bottom:461.160000px;}
.y78{bottom:463.320000px;}
.y9b{bottom:463.320150px;}
.y14d{bottom:466.920000px;}
.yee{bottom:467.100000px;}
.y4a{bottom:468.540000px;}
.yd9{bottom:470.700150px;}
.y63{bottom:476.100000px;}
.y9a{bottom:485.100000px;}
.ya4{bottom:485.100150px;}
.y12a{bottom:486.000150px;}
.y2c{bottom:486.540000px;}
.yed{bottom:488.700000px;}
.y14c{bottom:491.940000px;}
.yd8{bottom:492.300000px;}
.y62{bottom:497.880000px;}
.y159{bottom:499.500000px;}
.y115{bottom:505.980000px;}
.y77{bottom:506.880000px;}
.ya3{bottom:506.880150px;}
.y13b{bottom:508.320000px;}
.y49{bottom:508.320150px;}
.yec{bottom:510.480000px;}
.y129{bottom:513.360150px;}
.yd7{bottom:514.080000px;}
.y48{bottom:528.300150px;}
.y99{bottom:528.660000px;}
.y76{bottom:528.660150px;}
.y14b{bottom:531.900000px;}
.yd6{bottom:535.860000px;}
.y158{bottom:538.740000px;}
.y10{bottom:539.460000px;}
.y128{bottom:540.720150px;}
.y61{bottom:541.260000px;}
.y13a{bottom:544.680000px;}
.y98{bottom:550.260000px;}
.y8a{bottom:550.260150px;}
.yd5{bottom:557.640000px;}
.yeb{bottom:562.500000px;}
.y60{bottom:563.040000px;}
.y47{bottom:568.080000px;}
.y14a{bottom:571.860150px;}
.yb4{bottom:572.040000px;}
.y75{bottom:572.040150px;}
.y157{bottom:577.260000px;}
.yf{bottom:577.440000px;}
.y2b{bottom:581.760150px;}
.y114{bottom:591.480000px;}
.y97{bottom:593.820000px;}
.y74{bottom:593.820150px;}
.yd4{bottom:601.020000px;}
.y156{bottom:602.280000px;}
.y149{bottom:611.820000px;}
.y46{bottom:613.620000px;}
.y5f{bottom:614.880000px;}
.ye{bottom:615.420000px;}
.y2a{bottom:615.420150px;}
.y127{bottom:620.460000px;}
.yd3{bottom:622.800000px;}
.y113{bottom:630.900000px;}
.y45{bottom:635.400000px;}
.y73{bottom:637.200000px;}
.y29{bottom:637.200150px;}
.yd2{bottom:644.400000px;}
.y139{bottom:649.800000px;}
.y148{bottom:651.780000px;}
.y155{bottom:652.320150px;}
.yd{bottom:653.400000px;}
.y44{bottom:657.180000px;}
.y96{bottom:658.980000px;}
.y28{bottom:658.980150px;}
.yd1{bottom:666.180000px;}
.y5e{bottom:671.580000px;}
.y147{bottom:676.800000px;}
.y72{bottom:680.760000px;}
.y27{bottom:680.760150px;}
.y138{bottom:686.160000px;}
.yc{bottom:691.560000px;}
.y5d{bottom:693.360000px;}
.y89{bottom:702.360000px;}
.ya2{bottom:702.360150px;}
.y126{bottom:705.060000px;}
.yd0{bottom:709.560000px;}
.y137{bottom:713.520000px;}
.y5c{bottom:715.140000px;}
.y146{bottom:716.760000px;}
.y43{bottom:720.180000px;}
.y71{bottom:724.140000px;}
.y26{bottom:724.140150px;}
.yb{bottom:729.540000px;}
.ycf{bottom:731.340000px;}
.y101{bottom:736.740000px;}
.y42{bottom:739.980150px;}
.y136{bottom:740.880000px;}
.y125{bottom:741.420150px;}
.y70{bottom:745.920000px;}
.ya9{bottom:745.920150px;}
.y112{bottom:748.980000px;}
.yce{bottom:753.120000px;}
.y145{bottom:756.900000px;}
.y100{bottom:764.820000px;}
.y5b{bottom:766.980000px;}
.ya{bottom:767.520000px;}
.yb6{bottom:767.520150px;}
.y154{bottom:768.060000px;}
.y124{bottom:768.780150px;}
.ycd{bottom:774.900000px;}
.y111{bottom:776.340000px;}
.y41{bottom:779.940000px;}
.y25{bottom:789.300000px;}
.yb5{bottom:789.300150px;}
.yff{bottom:793.080000px;}
.y123{bottom:796.140150px;}
.ycc{bottom:796.500000px;}
.y144{bottom:796.860150px;}
.y110{bottom:803.700000px;}
.y9{bottom:805.500000px;}
.y88{bottom:811.080000px;}
.ycb{bottom:818.280000px;}
.y135{bottom:818.640000px;}
.y5a{bottom:819.720000px;}
.y40{bottom:819.720150px;}
.y122{bottom:823.500150px;}
.y24{bottom:832.680000px;}
.y59{bottom:839.700000px;}
.yfe{bottom:849.420000px;}
.y121{bottom:850.860150px;}
.y23{bottom:854.460000px;}
.y134{bottom:855.000000px;}
.y3f{bottom:859.500150px;}
.y143{bottom:862.380000px;}
.yca{bottom:862.920000px;}
.y87{bottom:876.240000px;}
.yfd{bottom:877.500000px;}
.y58{bottom:879.480150px;}
.y10f{bottom:881.460000px;}
.y133{bottom:882.360000px;}
.y22{bottom:898.020000px;}
.y3e{bottom:899.460000px;}
.yfc{bottom:905.760000px;}
.y10e{bottom:917.820000px;}
.y57{bottom:919.260000px;}
.y21{bottom:919.620000px;}
.y8{bottom:920.160000px;}
.y120{bottom:928.620000px;}
.yfb{bottom:933.840000px;}
.y3d{bottom:939.240000px;}
.y20{bottom:941.400000px;}
.y10d{bottom:945.180000px;}
.y142{bottom:948.780000px;}
.y7{bottom:957.780000px;}
.y56{bottom:959.220000px;}
.yfa{bottom:962.100000px;}
.y1f{bottom:963.180000px;}
.y11f{bottom:964.980000px;}
.y10c{bottom:972.540000px;}
.y3c{bottom:979.020000px;}
.y86{bottom:984.780000px;}
.y141{bottom:991.980000px;}
.y11e{bottom:992.340000px;}
.y55{bottom:999.000000px;}
.y6{bottom:1001.160000px;}
.y1e{bottom:1006.560000px;}
.y3b{bottom:1018.800000px;}
.y1d{bottom:1028.340000px;}
.y140{bottom:1035.000000px;}
.yf9{bottom:1035.540000px;}
.y3a{bottom:1038.780000px;}
.y132{bottom:1042.740000px;}
.y5{bottom:1044.360000px;}
.y85{bottom:1049.940000px;}
.y10b{bottom:1051.200000px;}
.y54{bottom:1058.760000px;}
.y11d{bottom:1070.100000px;}
.y1c{bottom:1071.720000px;}
.y131{bottom:1079.100000px;}
.y4{bottom:1087.740000px;}
.y1b{bottom:1093.500000px;}
.y39{bottom:1098.540000px;}
.y11c{bottom:1106.460000px;}
.y95{bottom:1115.280000px;}
.y3{bottom:1130.940000px;}
.y10a{bottom:1133.820000px;}
.y6f{bottom:1136.880000px;}
.y38{bottom:1138.320000px;}
.y2{bottom:1173.060000px;}
.y1{bottom:1193.220000px;}
.h2{height:44.928521px;}
.h8{height:48.279658px;}
.h6{height:56.291856px;}
.h7{height:59.793682px;}
.ha{height:66.276846px;}
.h9{height:67.820645px;}
.hd{height:68.643694px;}
.h4{height:72.039658px;}
.hb{height:72.040258px;}
.h10{height:73.245957px;}
.hf{height:76.636778px;}
.h5{height:79.349434px;}
.he{height:84.285635px;}
.h3{height:90.200059px;}
.hc{height:92.802676px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:106.200000px;}
.x2{left:108.000000px;}
.x61{left:130.140000px;}
.xc{left:133.560000px;}
.x52{left:137.340000px;}
.x3{left:144.180000px;}
.x56{left:149.220000px;}
.x10{left:161.100000px;}
.x3f{left:184.500000px;}
.x1b{left:187.740000px;}
.x5b{left:192.060000px;}
.xa{left:204.120000px;}
.x30{left:206.100000px;}
.x53{left:211.140000px;}
.x63{left:212.400000px;}
.x11{left:214.200000px;}
.x21{left:220.140000px;}
.x2a{left:224.100000px;}
.x42{left:235.080000px;}
.x4d{left:237.960000px;}
.x17{left:244.080000px;}
.x1e{left:252.540000px;}
.x40{left:254.160000px;}
.x60{left:255.240000px;}
.x32{left:263.520000px;}
.x4e{left:271.620000px;}
.x39{left:277.560000px;}
.x44{left:278.820000px;}
.x5{left:286.560000px;}
.x2b{left:288.900000px;}
.x7{left:290.340000px;}
.x26{left:292.140000px;}
.x4f{left:299.520000px;}
.x5a{left:305.640000px;}
.x2c{left:312.480000px;}
.x6{left:314.280000px;}
.x49{left:324.000000px;}
.x8{left:327.600000px;}
.x4{left:332.640000px;}
.x1c{left:337.500000px;}
.x5c{left:347.220000px;}
.x28{left:349.920000px;}
.x41{left:352.980000px;}
.x57{left:356.220000px;}
.x27{left:358.380000px;}
.x3c{left:366.840000px;}
.x19{left:367.920000px;}
.x22{left:369.180000px;}
.x58{left:370.980000px;}
.x48{left:376.740000px;}
.x4a{left:379.800000px;}
.x9{left:387.540000px;}
.x23{left:390.960000px;}
.x1f{left:392.400000px;}
.x12{left:394.740000px;}
.x33{left:401.220000px;}
.x59{left:402.480000px;}
.x3a{left:419.220000px;}
.x55{left:422.640000px;}
.x54{left:426.240000px;}
.x64{left:433.080000px;}
.x1{left:438.120000px;}
.x5d{left:442.260000px;}
.xf{left:447.300000px;}
.x2e{left:451.620000px;}
.x15{left:457.560000px;}
.x14{left:462.420000px;}
.x16{left:465.480000px;}
.xd{left:485.640000px;}
.x2f{left:489.060000px;}
.x29{left:497.160000px;}
.x24{left:502.380000px;}
.x1d{left:503.820000px;}
.x4c{left:508.320000px;}
.x13{left:514.260000px;}
.x25{left:516.420000px;}
.x5f{left:518.220000px;}
.x65{left:532.440000px;}
.xb{left:543.060000px;}
.x46{left:554.580000px;}
.x34{left:565.200000px;}
.x4b{left:570.600000px;}
.x3d{left:571.680000px;}
.x45{left:585.000000px;}
.x3e{left:596.160000px;}
.x38{left:597.960000px;}
.x43{left:608.760000px;}
.x51{left:617.400000px;}
.x2d{left:621.720000px;}
.x35{left:636.300000px;}
.x36{left:639.720000px;}
.x3b{left:654.840000px;}
.x1a{left:660.240000px;}
.x20{left:672.120000px;}
.x31{left:674.820000px;}
.x66{left:690.840000px;}
.x47{left:710.280000px;}
.x18{left:720.360000px;}
.x37{left:721.800000px;}
.x50{left:723.600000px;}
.x5e{left:754.380000px;}
.xe{left:779.220000px;}
@media print{
.v3{vertical-align:-76.799467pt;}
.v4{vertical-align:-71.040000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:29.440000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.046019pt;}
.ls7{letter-spacing:0.057604pt;}
.ls2{letter-spacing:0.132216pt;}
.ls9{letter-spacing:5.252216pt;}
.ls6{letter-spacing:5.375096pt;}
.ls3{letter-spacing:14.590752pt;}
.ls4{letter-spacing:20.350752pt;}
.ls0{letter-spacing:22.070400pt;}
.ls8{letter-spacing:45.750400pt;}
.ls5{letter-spacing:1202.815096pt;}
.ws14{word-spacing:-21.866128pt;}
.ws19{word-spacing:-21.118608pt;}
.wsc{word-spacing:-20.026852pt;}
.ws6{word-spacing:-19.969248pt;}
.ws18{word-spacing:-18.735187pt;}
.ws9{word-spacing:-18.689168pt;}
.ws7{word-spacing:-18.371808pt;}
.ws15{word-spacing:-0.626002pt;}
.wsb{word-spacing:-0.255952pt;}
.wsf{word-spacing:-0.255202pt;}
.wse{word-spacing:-0.000320pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:0.000064pt;}
.ws1a{word-spacing:0.105650pt;}
.wsa{word-spacing:0.188572pt;}
.ws13{word-spacing:0.353481pt;}
.ws10{word-spacing:2.809262pt;}
.ws4{word-spacing:12.280826pt;}
.ws3{word-spacing:12.954857pt;}
.ws0{word-spacing:17.522931pt;}
.ws11{word-spacing:19.201328pt;}
.ws16{word-spacing:20.875207pt;}
.ws1{word-spacing:22.689777pt;}
.ws2{word-spacing:25.235833pt;}
.ws17{word-spacing:64.134611pt;}
.ws8{word-spacing:111.767897pt;}
.ws12{word-spacing:191.675940pt;}
._33{margin-left:-5.572043pt;}
._19{margin-left:-4.642758pt;}
._9{margin-left:-3.603821pt;}
._b{margin-left:-2.651573pt;}
._1{margin-left:-1.412633pt;}
._0{width:1.638126pt;}
._c{width:3.361067pt;}
._22{width:4.409511pt;}
._f{width:5.621655pt;}
._10{width:7.015855pt;}
._36{width:8.000749pt;}
._7{width:8.976633pt;}
._6{width:10.557598pt;}
._d{width:12.125829pt;}
._8{width:13.154087pt;}
._a{width:14.531881pt;}
._15{width:15.713962pt;}
._5{width:16.674242pt;}
._11{width:17.911967pt;}
._13{width:19.060135pt;}
._3f{width:20.475328pt;}
._32{width:22.021621pt;}
._24{width:22.984545pt;}
._2e{width:24.444815pt;}
._2d{width:25.344734pt;}
._2a{width:26.764809pt;}
._29{width:28.330511pt;}
._43{width:29.292191pt;}
._73{width:30.207904pt;}
._50{width:31.863551pt;}
._3e{width:32.881199pt;}
._3{width:34.192812pt;}
._30{width:35.858108pt;}
._20{width:36.855849pt;}
._1f{width:38.028117pt;}
._2{width:39.239441pt;}
._58{width:40.214509pt;}
._5c{width:41.309014pt;}
._51{width:42.925883pt;}
._2c{width:44.297032pt;}
._7a{width:45.247870pt;}
._2f{width:46.268988pt;}
._42{width:47.696933pt;}
._41{width:48.605150pt;}
._6e{width:49.512174pt;}
._4d{width:50.424839pt;}
._3c{width:52.387537pt;}
._3b{width:53.443845pt;}
._47{width:55.185609pt;}
._23{width:56.869320pt;}
._28{width:58.377032pt;}
._53{width:59.385015pt;}
._54{width:60.379647pt;}
._55{width:61.945495pt;}
._56{width:63.832752pt;}
._63{width:65.785607pt;}
._64{width:67.115746pt;}
._4f{width:71.003524pt;}
._4e{width:72.409719pt;}
._85{width:73.313958pt;}
._84{width:74.366248pt;}
._46{width:75.590800pt;}
._70{width:76.649305pt;}
._57{width:77.933239pt;}
._1d{width:79.629866pt;}
._1e{width:80.520572pt;}
._2b{width:82.305618pt;}
._66{width:85.146953pt;}
._48{width:86.266887pt;}
._4a{width:87.783399pt;}
._7d{width:88.828921pt;}
._21{width:92.106598pt;}
._74{width:93.103031pt;}
._71{width:95.622040pt;}
._6f{width:96.738611pt;}
._61{width:97.860068pt;}
._62{width:98.846554pt;}
._67{width:103.698961pt;}
._e{width:105.432288pt;}
._77{width:106.826196pt;}
._49{width:108.047757pt;}
._81{width:113.623229pt;}
._6a{width:117.639216pt;}
._6b{width:119.367844pt;}
._35{width:124.361132pt;}
._18{width:130.580046pt;}
._34{width:132.197657pt;}
._8a{width:144.056043pt;}
._83{width:146.118810pt;}
._82{width:147.244978pt;}
._69{width:159.134734pt;}
._68{width:160.389995pt;}
._8e{width:162.173848pt;}
._5b{width:165.032712pt;}
._8f{width:178.035608pt;}
._86{width:181.755871pt;}
._26{width:189.398796pt;}
._1a{width:202.736729pt;}
._90{width:204.404776pt;}
._91{width:217.974024pt;}
._1c{width:221.490458pt;}
._5f{width:279.252834pt;}
._78{width:343.336144pt;}
._7b{width:365.269424pt;}
._45{width:370.497139pt;}
._39{width:371.643528pt;}
._37{width:373.284870pt;}
._7c{width:376.387379pt;}
._79{width:378.227905pt;}
._89{width:379.458581pt;}
._76{width:382.929540pt;}
._7f{width:384.451373pt;}
._17{width:391.645178pt;}
._12{width:409.068243pt;}
._7e{width:451.493620pt;}
._6d{width:457.220949pt;}
._60{width:485.083480pt;}
._27{width:492.146565pt;}
._14{width:542.330379pt;}
._5d{width:552.626980pt;}
._1b{width:635.566825pt;}
._8b{width:660.884071pt;}
._38{width:848.559849pt;}
._72{width:866.418200pt;}
._59{width:875.773880pt;}
._40{width:885.594585pt;}
._88{width:921.715909pt;}
._4b{width:923.172980pt;}
._52{width:937.105181pt;}
._5a{width:1038.945230pt;}
._25{width:1065.893650pt;}
._31{width:1070.145696pt;}
._87{width:1073.329296pt;}
._3d{width:1176.593220pt;}
._8d{width:1181.780092pt;}
._5e{width:1195.186980pt;}
._44{width:1222.201774pt;}
._16{width:1229.230991pt;}
._8c{width:1253.621724pt;}
._3a{width:1256.921234pt;}
._80{width:1271.034200pt;}
._6c{width:1321.266980pt;}
._75{width:1347.506980pt;}
._4{width:1468.325614pt;}
._65{width:1623.302893pt;}
._4c{width:1883.826980pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:53.124000pt;}
.fs6{font-size:56.324000pt;}
.fs0{font-size:58.884000pt;}
.fs2{font-size:64.004000pt;}
.fs8{font-size:69.124000pt;}
.fs7{font-size:72.324000pt;}
.fs4{font-size:74.884000pt;}
.fs1{font-size:85.124000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:99.360000pt;}
.yc3{bottom:99.360133pt;}
.ye9{bottom:99.680000pt;}
.y37{bottom:100.160133pt;}
.yb2{bottom:102.880000pt;}
.y84{bottom:106.080000pt;}
.ye5{bottom:109.280000pt;}
.y161{bottom:112.480000pt;}
.y6e{bottom:114.240000pt;}
.y19{bottom:118.720000pt;}
.yc2{bottom:118.720133pt;}
.ye8{bottom:119.040000pt;}
.yb1{bottom:122.240000pt;}
.yb0{bottom:122.240133pt;}
.y83{bottom:125.440000pt;}
.y36{bottom:135.520133pt;}
.yc1{bottom:138.080133pt;}
.ye7{bottom:138.400000pt;}
.ya8{bottom:140.480133pt;}
.y160{bottom:141.440133pt;}
.y94{bottom:141.600000pt;}
.yaf{bottom:141.600133pt;}
.y18{bottom:143.360000pt;}
.y153{bottom:144.000000pt;}
.y82{bottom:144.800000pt;}
.ye4{bottom:148.000000pt;}
.y53{bottom:150.880000pt;}
.y6d{bottom:152.800000pt;}
.yc9{bottom:153.120000pt;}
.y35{bottom:153.280133pt;}
.yc0{bottom:157.280133pt;}
.ye6{bottom:157.600000pt;}
.ya7{bottom:159.840000pt;}
.y93{bottom:160.800000pt;}
.yae{bottom:160.800133pt;}
.yf5{bottom:164.000133pt;}
.ye3{bottom:167.360000pt;}
.y15f{bottom:170.400133pt;}
.y6c{bottom:172.160000pt;}
.y17{bottom:172.800133pt;}
.yc8{bottom:174.080000pt;}
.ybf{bottom:176.640133pt;}
.ya6{bottom:179.200000pt;}
.y152{bottom:179.520133pt;}
.y92{bottom:180.160000pt;}
.yad{bottom:180.160133pt;}
.y81{bottom:183.360000pt;}
.yf4{bottom:183.360133pt;}
.y52{bottom:186.240133pt;}
.y16{bottom:188.800133pt;}
.y6b{bottom:191.360000pt;}
.yc7{bottom:194.880000pt;}
.ybe{bottom:196.000133pt;}
.y11b{bottom:196.480000pt;}
.ya5{bottom:198.560000pt;}
.y91{bottom:199.520000pt;}
.yb3{bottom:199.520133pt;}
.y80{bottom:202.720000pt;}
.yf3{bottom:202.720133pt;}
.y51{bottom:204.000133pt;}
.y15{bottom:204.960133pt;}
.ye2{bottom:205.920000pt;}
.y34{bottom:206.400133pt;}
.y6a{bottom:210.720000pt;}
.ybd{bottom:215.200133pt;}
.yc6{bottom:215.680000pt;}
.ya1{bottom:218.720000pt;}
.yac{bottom:218.720133pt;}
.y7f{bottom:222.080000pt;}
.ye1{bottom:225.280000pt;}
.y130{bottom:225.280133pt;}
.y11a{bottom:228.800000pt;}
.yc5{bottom:236.480133pt;}
.y14{bottom:237.120000pt;}
.y90{bottom:238.080000pt;}
.yab{bottom:238.080133pt;}
.y50{bottom:239.360000pt;}
.ybc{bottom:239.840133pt;}
.y7e{bottom:241.280000pt;}
.yf2{bottom:241.280133pt;}
.y33{bottom:241.760133pt;}
.yf8{bottom:242.560000pt;}
.y109{bottom:244.000000pt;}
.ye0{bottom:244.480000pt;}
.y69{bottom:249.440000pt;}
.y119{bottom:253.120000pt;}
.y13{bottom:253.280000pt;}
.ybb{bottom:254.560000pt;}
.y8f{bottom:257.440000pt;}
.yc4{bottom:257.440133pt;}
.y12f{bottom:257.600133pt;}
.y32{bottom:259.520133pt;}
.y13f{bottom:260.320000pt;}
.yf7{bottom:260.320133pt;}
.y7d{bottom:260.640000pt;}
.ydf{bottom:263.840000pt;}
.y108{bottom:268.160000pt;}
.y12{bottom:269.280000pt;}
.y151{bottom:272.960000pt;}
.y4f{bottom:274.880000pt;}
.y8e{bottom:276.800000pt;}
.yea{bottom:276.800133pt;}
.y118{bottom:277.440000pt;}
.yf6{bottom:278.080133pt;}
.yf1{bottom:280.000000pt;}
.y12e{bottom:281.920133pt;}
.yde{bottom:283.200000pt;}
.y107{bottom:285.440000pt;}
.y11{bottom:285.600000pt;}
.y68{bottom:288.000000pt;}
.y4e{bottom:292.480000pt;}
.y15e{bottom:292.960000pt;}
.y31{bottom:294.880133pt;}
.y8d{bottom:296.000000pt;}
.ya0{bottom:296.000133pt;}
.yba{bottom:299.200000pt;}
.y12d{bottom:306.240133pt;}
.y7c{bottom:306.880000pt;}
.y67{bottom:307.360000pt;}
.y150{bottom:308.480000pt;}
.y30{bottom:312.640133pt;}
.y8c{bottom:315.360000pt;}
.y9f{bottom:315.360133pt;}
.yb9{bottom:318.560000pt;}
.ydd{bottom:321.760000pt;}
.y106{bottom:323.040000pt;}
.y13e{bottom:326.080000pt;}
.y66{bottom:326.560000pt;}
.y4d{bottom:327.840133pt;}
.y15d{bottom:328.480000pt;}
.y8b{bottom:334.720000pt;}
.y9e{bottom:334.720133pt;}
.yb8{bottom:337.920000pt;}
.y105{bottom:340.160000pt;}
.ydc{bottom:341.120133pt;}
.y14f{bottom:344.000000pt;}
.y117{bottom:346.720000pt;}
.y2f{bottom:349.920133pt;}
.y7b{bottom:353.920000pt;}
.y9d{bottom:353.920133pt;}
.yf0{bottom:357.280133pt;}
.y13d{bottom:358.240000pt;}
.ydb{bottom:360.480133pt;}
.y4c{bottom:363.360000pt;}
.y15c{bottom:364.000000pt;}
.y65{bottom:365.280000pt;}
.y2e{bottom:369.280133pt;}
.y7a{bottom:373.280000pt;}
.yaa{bottom:373.280133pt;}
.y12c{bottom:375.360133pt;}
.yef{bottom:376.480133pt;}
.y104{bottom:377.760000pt;}
.y116{bottom:378.880000pt;}
.y14e{bottom:379.520000pt;}
.yda{bottom:379.680133pt;}
.yb7{bottom:380.800000pt;}
.y4b{bottom:380.960000pt;}
.y13c{bottom:382.560000pt;}
.y64{bottom:384.640000pt;}
.y15b{bottom:386.240000pt;}
.y2d{bottom:388.640133pt;}
.y79{bottom:392.640000pt;}
.y9c{bottom:392.640133pt;}
.y103{bottom:393.760000pt;}
.y12b{bottom:407.680133pt;}
.y15a{bottom:408.480000pt;}
.y102{bottom:409.920000pt;}
.y78{bottom:411.840000pt;}
.y9b{bottom:411.840133pt;}
.y14d{bottom:415.040000pt;}
.yee{bottom:415.200000pt;}
.y4a{bottom:416.480000pt;}
.yd9{bottom:418.400133pt;}
.y63{bottom:423.200000pt;}
.y9a{bottom:431.200000pt;}
.ya4{bottom:431.200133pt;}
.y12a{bottom:432.000133pt;}
.y2c{bottom:432.480000pt;}
.yed{bottom:434.400000pt;}
.y14c{bottom:437.280000pt;}
.yd8{bottom:437.600000pt;}
.y62{bottom:442.560000pt;}
.y159{bottom:444.000000pt;}
.y115{bottom:449.760000pt;}
.y77{bottom:450.560000pt;}
.ya3{bottom:450.560133pt;}
.y13b{bottom:451.840000pt;}
.y49{bottom:451.840133pt;}
.yec{bottom:453.760000pt;}
.y129{bottom:456.320133pt;}
.yd7{bottom:456.960000pt;}
.y48{bottom:469.600133pt;}
.y99{bottom:469.920000pt;}
.y76{bottom:469.920133pt;}
.y14b{bottom:472.800000pt;}
.yd6{bottom:476.320000pt;}
.y158{bottom:478.880000pt;}
.y10{bottom:479.520000pt;}
.y128{bottom:480.640133pt;}
.y61{bottom:481.120000pt;}
.y13a{bottom:484.160000pt;}
.y98{bottom:489.120000pt;}
.y8a{bottom:489.120133pt;}
.yd5{bottom:495.680000pt;}
.yeb{bottom:500.000000pt;}
.y60{bottom:500.480000pt;}
.y47{bottom:504.960000pt;}
.y14a{bottom:508.320133pt;}
.yb4{bottom:508.480000pt;}
.y75{bottom:508.480133pt;}
.y157{bottom:513.120000pt;}
.yf{bottom:513.280000pt;}
.y2b{bottom:517.120133pt;}
.y114{bottom:525.760000pt;}
.y97{bottom:527.840000pt;}
.y74{bottom:527.840133pt;}
.yd4{bottom:534.240000pt;}
.y156{bottom:535.360000pt;}
.y149{bottom:543.840000pt;}
.y46{bottom:545.440000pt;}
.y5f{bottom:546.560000pt;}
.ye{bottom:547.040000pt;}
.y2a{bottom:547.040133pt;}
.y127{bottom:551.520000pt;}
.yd3{bottom:553.600000pt;}
.y113{bottom:560.800000pt;}
.y45{bottom:564.800000pt;}
.y73{bottom:566.400000pt;}
.y29{bottom:566.400133pt;}
.yd2{bottom:572.800000pt;}
.y139{bottom:577.600000pt;}
.y148{bottom:579.360000pt;}
.y155{bottom:579.840133pt;}
.yd{bottom:580.800000pt;}
.y44{bottom:584.160000pt;}
.y96{bottom:585.760000pt;}
.y28{bottom:585.760133pt;}
.yd1{bottom:592.160000pt;}
.y5e{bottom:596.960000pt;}
.y147{bottom:601.600000pt;}
.y72{bottom:605.120000pt;}
.y27{bottom:605.120133pt;}
.y138{bottom:609.920000pt;}
.yc{bottom:614.720000pt;}
.y5d{bottom:616.320000pt;}
.y89{bottom:624.320000pt;}
.ya2{bottom:624.320133pt;}
.y126{bottom:626.720000pt;}
.yd0{bottom:630.720000pt;}
.y137{bottom:634.240000pt;}
.y5c{bottom:635.680000pt;}
.y146{bottom:637.120000pt;}
.y43{bottom:640.160000pt;}
.y71{bottom:643.680000pt;}
.y26{bottom:643.680133pt;}
.yb{bottom:648.480000pt;}
.ycf{bottom:650.080000pt;}
.y101{bottom:654.880000pt;}
.y42{bottom:657.760133pt;}
.y136{bottom:658.560000pt;}
.y125{bottom:659.040133pt;}
.y70{bottom:663.040000pt;}
.ya9{bottom:663.040133pt;}
.y112{bottom:665.760000pt;}
.yce{bottom:669.440000pt;}
.y145{bottom:672.800000pt;}
.y100{bottom:679.840000pt;}
.y5b{bottom:681.760000pt;}
.ya{bottom:682.240000pt;}
.yb6{bottom:682.240133pt;}
.y154{bottom:682.720000pt;}
.y124{bottom:683.360133pt;}
.ycd{bottom:688.800000pt;}
.y111{bottom:690.080000pt;}
.y41{bottom:693.280000pt;}
.y25{bottom:701.600000pt;}
.yb5{bottom:701.600133pt;}
.yff{bottom:704.960000pt;}
.y123{bottom:707.680133pt;}
.ycc{bottom:708.000000pt;}
.y144{bottom:708.320133pt;}
.y110{bottom:714.400000pt;}
.y9{bottom:716.000000pt;}
.y88{bottom:720.960000pt;}
.ycb{bottom:727.360000pt;}
.y135{bottom:727.680000pt;}
.y5a{bottom:728.640000pt;}
.y40{bottom:728.640133pt;}
.y122{bottom:732.000133pt;}
.y24{bottom:740.160000pt;}
.y59{bottom:746.400000pt;}
.yfe{bottom:755.040000pt;}
.y121{bottom:756.320133pt;}
.y23{bottom:759.520000pt;}
.y134{bottom:760.000000pt;}
.y3f{bottom:764.000133pt;}
.y143{bottom:766.560000pt;}
.yca{bottom:767.040000pt;}
.y87{bottom:778.880000pt;}
.yfd{bottom:780.000000pt;}
.y58{bottom:781.760133pt;}
.y10f{bottom:783.520000pt;}
.y133{bottom:784.320000pt;}
.y22{bottom:798.240000pt;}
.y3e{bottom:799.520000pt;}
.yfc{bottom:805.120000pt;}
.y10e{bottom:815.840000pt;}
.y57{bottom:817.120000pt;}
.y21{bottom:817.440000pt;}
.y8{bottom:817.920000pt;}
.y120{bottom:825.440000pt;}
.yfb{bottom:830.080000pt;}
.y3d{bottom:834.880000pt;}
.y20{bottom:836.800000pt;}
.y10d{bottom:840.160000pt;}
.y142{bottom:843.360000pt;}
.y7{bottom:851.360000pt;}
.y56{bottom:852.640000pt;}
.yfa{bottom:855.200000pt;}
.y1f{bottom:856.160000pt;}
.y11f{bottom:857.760000pt;}
.y10c{bottom:864.480000pt;}
.y3c{bottom:870.240000pt;}
.y86{bottom:875.360000pt;}
.y141{bottom:881.760000pt;}
.y11e{bottom:882.080000pt;}
.y55{bottom:888.000000pt;}
.y6{bottom:889.920000pt;}
.y1e{bottom:894.720000pt;}
.y3b{bottom:905.600000pt;}
.y1d{bottom:914.080000pt;}
.y140{bottom:920.000000pt;}
.yf9{bottom:920.480000pt;}
.y3a{bottom:923.360000pt;}
.y132{bottom:926.880000pt;}
.y5{bottom:928.320000pt;}
.y85{bottom:933.280000pt;}
.y10b{bottom:934.400000pt;}
.y54{bottom:941.120000pt;}
.y11d{bottom:951.200000pt;}
.y1c{bottom:952.640000pt;}
.y131{bottom:959.200000pt;}
.y4{bottom:966.880000pt;}
.y1b{bottom:972.000000pt;}
.y39{bottom:976.480000pt;}
.y11c{bottom:983.520000pt;}
.y95{bottom:991.360000pt;}
.y3{bottom:1005.280000pt;}
.y10a{bottom:1007.840000pt;}
.y6f{bottom:1010.560000pt;}
.y38{bottom:1011.840000pt;}
.y2{bottom:1042.720000pt;}
.y1{bottom:1060.640000pt;}
.h2{height:39.936463pt;}
.h8{height:42.915252pt;}
.h6{height:50.037205pt;}
.h7{height:53.149939pt;}
.ha{height:58.912752pt;}
.h9{height:60.285018pt;}
.hd{height:61.016617pt;}
.h4{height:64.035252pt;}
.hb{height:64.035785pt;}
.h10{height:65.107518pt;}
.hf{height:68.121580pt;}
.h5{height:70.532830pt;}
.he{height:74.920564pt;}
.h3{height:80.177830pt;}
.hc{height:82.491268pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:94.400000pt;}
.x2{left:96.000000pt;}
.x61{left:115.680000pt;}
.xc{left:118.720000pt;}
.x52{left:122.080000pt;}
.x3{left:128.160000pt;}
.x56{left:132.640000pt;}
.x10{left:143.200000pt;}
.x3f{left:164.000000pt;}
.x1b{left:166.880000pt;}
.x5b{left:170.720000pt;}
.xa{left:181.440000pt;}
.x30{left:183.200000pt;}
.x53{left:187.680000pt;}
.x63{left:188.800000pt;}
.x11{left:190.400000pt;}
.x21{left:195.680000pt;}
.x2a{left:199.200000pt;}
.x42{left:208.960000pt;}
.x4d{left:211.520000pt;}
.x17{left:216.960000pt;}
.x1e{left:224.480000pt;}
.x40{left:225.920000pt;}
.x60{left:226.880000pt;}
.x32{left:234.240000pt;}
.x4e{left:241.440000pt;}
.x39{left:246.720000pt;}
.x44{left:247.840000pt;}
.x5{left:254.720000pt;}
.x2b{left:256.800000pt;}
.x7{left:258.080000pt;}
.x26{left:259.680000pt;}
.x4f{left:266.240000pt;}
.x5a{left:271.680000pt;}
.x2c{left:277.760000pt;}
.x6{left:279.360000pt;}
.x49{left:288.000000pt;}
.x8{left:291.200000pt;}
.x4{left:295.680000pt;}
.x1c{left:300.000000pt;}
.x5c{left:308.640000pt;}
.x28{left:311.040000pt;}
.x41{left:313.760000pt;}
.x57{left:316.640000pt;}
.x27{left:318.560000pt;}
.x3c{left:326.080000pt;}
.x19{left:327.040000pt;}
.x22{left:328.160000pt;}
.x58{left:329.760000pt;}
.x48{left:334.880000pt;}
.x4a{left:337.600000pt;}
.x9{left:344.480000pt;}
.x23{left:347.520000pt;}
.x1f{left:348.800000pt;}
.x12{left:350.880000pt;}
.x33{left:356.640000pt;}
.x59{left:357.760000pt;}
.x3a{left:372.640000pt;}
.x55{left:375.680000pt;}
.x54{left:378.880000pt;}
.x64{left:384.960000pt;}
.x1{left:389.440000pt;}
.x5d{left:393.120000pt;}
.xf{left:397.600000pt;}
.x2e{left:401.440000pt;}
.x15{left:406.720000pt;}
.x14{left:411.040000pt;}
.x16{left:413.760000pt;}
.xd{left:431.680000pt;}
.x2f{left:434.720000pt;}
.x29{left:441.920000pt;}
.x24{left:446.560000pt;}
.x1d{left:447.840000pt;}
.x4c{left:451.840000pt;}
.x13{left:457.120000pt;}
.x25{left:459.040000pt;}
.x5f{left:460.640000pt;}
.x65{left:473.280000pt;}
.xb{left:482.720000pt;}
.x46{left:492.960000pt;}
.x34{left:502.400000pt;}
.x4b{left:507.200000pt;}
.x3d{left:508.160000pt;}
.x45{left:520.000000pt;}
.x3e{left:529.920000pt;}
.x38{left:531.520000pt;}
.x43{left:541.120000pt;}
.x51{left:548.800000pt;}
.x2d{left:552.640000pt;}
.x35{left:565.600000pt;}
.x36{left:568.640000pt;}
.x3b{left:582.080000pt;}
.x1a{left:586.880000pt;}
.x20{left:597.440000pt;}
.x31{left:599.840000pt;}
.x66{left:614.080000pt;}
.x47{left:631.360000pt;}
.x18{left:640.320000pt;}
.x37{left:641.600000pt;}
.x50{left:643.200000pt;}
.x5e{left:670.560000pt;}
.xe{left:692.640000pt;}
}




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