
    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_6950937bddccd49ba98556d2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.941000;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_2851a736927748df55f26f94.woff')format("woff");}.ff2{font-family:ff2;line-height:1.071000;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_85d5a4d42e7aeaae9c51feb6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_34c98e6e9da10fa99bba1bf2.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_685ecafd3669b9499536cc28.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_b80ffef0326db1d3d4d03590.woff')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_e15cbd8b9f558e1d232117e1.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d88205f0fa48575d056190d5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f4726a88312eb9152d85a235.woff')format("woff");}.ff9{font-family:ff9;line-height:0.726000;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;}
.m3{transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);-ms-transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);-webkit-transform:matrix(0.076029,0.238159,-0.238110,0.076180,0,0);}
.m6{transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);-ms-transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);-webkit-transform:matrix(0.188168,-0.164598,0.164411,0.188332,0,0);}
.m2{transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);-ms-transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);-webkit-transform:matrix(0.188193,-0.164570,0.164411,0.188332,0,0);}
.m4{transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);-ms-transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);-webkit-transform:matrix(0.226011,0.106859,-0.106777,0.226050,0,0);}
.mb{transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);-ms-transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);-webkit-transform:matrix(0.237313,-0.078628,0.078428,0.237380,0,0);}
.ma{transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);-ms-transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);-webkit-transform:matrix(0.241544,0.064469,-0.064572,0.241517,0,0);}
.m8{transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);-ms-transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000393,-0.000420,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);-ms-transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000253,-0.000420,0.250000,0,0);}
.m7{transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);-ms-transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001281,0.000321,0.250000,0,0);}
.m5{transform:matrix(0.250000,0.000131,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000131,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000131,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:80.930559px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000045px;}
.ls6{letter-spacing:0.000180px;}
.ls4{letter-spacing:0.000225px;}
.ls1{letter-spacing:107.972021px;}
.ls2{letter-spacing:107.986253px;}
.ls3{letter-spacing:108.000215px;}
.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;}
}
.wsa{word-spacing:-73.692001px;}
.ws2{word-spacing:-34.914000px;}
.ws3{word-spacing:-23.268000px;}
.ws0{word-spacing:-22.428000px;}
.ws4{word-spacing:-21.252000px;}
.ws8{word-spacing:-20.826001px;}
.ws6{word-spacing:-18.282001px;}
.ws9{word-spacing:-14.418000px;}
.ws5{word-spacing:-13.500000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:512.467504px;}
._8{margin-left:-17.664000px;}
._9{margin-left:-13.842000px;}
._6{margin-left:-12.096000px;}
._c{margin-left:-10.712729px;}
._0{margin-left:-9.660001px;}
._1{margin-left:-7.770000px;}
._b{margin-left:-6.636000px;}
._2{margin-left:-5.616000px;}
._4{margin-left:-4.176000px;}
._3{margin-left:-2.736000px;}
._5{margin-left:-1.584000px;}
._7{width:1.680000px;}
._a{width:3.180000px;}
._10{width:4.536000px;}
._d{width:5.592000px;}
._e{width:861.869037px;}
._f{width:1447.541043px;}
.fc10{color:rgb(0,79,159);}
.fce{color:rgb(0,0,255);}
.fcd{color:rgb(0,0,0);}
.fc0{color:rgb(19,41,75);}
.fc1{color:rgb(0,151,167);}
.fc2{color:rgb(0,132,255);}
.fc9{color:rgb(255,255,255);}
.fc7{color:rgb(246,178,107);}
.fc5{color:rgb(255,128,0);}
.fcf{color:rgb(95,152,196);}
.fcc{color:rgb(89,89,89);}
.fc6{color:rgb(255,153,0);}
.fc8{color:rgb(255,171,64);}
.fc4{color:rgb(4,51,88);}
.fca{color:rgb(7,42,84);}
.fc3{color:rgb(4,50,87);}
.fcb{color:rgb(4,51,92);}
.fsd{font-size:48.000002px;}
.fs9{font-size:48.000006px;}
.fsa{font-size:48.000008px;}
.fs8{font-size:48.000012px;}
.fse{font-size:48.000013px;}
.fsc{font-size:48.000017px;}
.fs7{font-size:48.000020px;}
.fsb{font-size:48.000028px;}
.fs6{font-size:54.000002px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:66.000004px;}
.fsf{font-size:72.000002px;}
.fs10{font-size:78.000005px;}
.fs2{font-size:84.000000px;}
.fs11{font-size:96.000006px;}
.fs4{font-size:138.000001px;}
.fs1{font-size:144.000005px;}
.fs0{font-size:210.000013px;}
.fs12{font-size:276.000003px;}
.y0{bottom:0.000000px;}
.y13f{bottom:18.429776px;}
.y2d{bottom:24.830869px;}
.y4b{bottom:30.452888px;}
.y11f{bottom:33.317343px;}
.yb8{bottom:34.740758px;}
.ya7{bottom:37.618456px;}
.y13b{bottom:40.866073px;}
.y22{bottom:42.830869px;}
.ydf{bottom:43.521136px;}
.y98{bottom:56.149520px;}
.ya6{bottom:57.418452px;}
.y1b{bottom:59.432900px;}
.y13a{bottom:59.496073px;}
.yb7{bottom:59.940759px;}
.yb{bottom:64.534010px;}
.yee{bottom:70.172938px;}
.ycb{bottom:74.617237px;}
.y97{bottom:75.949520px;}
.yb6{bottom:76.140748px;}
.ya5{bottom:77.218453px;}
.y139{bottom:78.126074px;}
.y140{bottom:82.209324px;}
.ya{bottom:87.304011px;}
.y1a{bottom:88.412912px;}
.yca{bottom:90.791272px;}
.y5d{bottom:91.352571px;}
.y10b{bottom:91.367331px;}
.ycd{bottom:92.204363px;}
.yb5{bottom:92.340749px;}
.y96{bottom:95.749521px;}
.yed{bottom:96.632950px;}
.y138{bottom:96.756074px;}
.ya4{bottom:97.018454px;}
.yc9{bottom:106.991272px;}
.y5c{bottom:107.552573px;}
.y10a{bottom:107.567333px;}
.y107{bottom:108.249712px;}
.ycc{bottom:108.404362px;}
.yb4{bottom:108.540738px;}
.y9{bottom:110.074012px;}
.y142{bottom:111.074051px;}
.y9e{bottom:112.604080px;}
.y57{bottom:113.322314px;}
.y137{bottom:115.386064px;}
.y95{bottom:115.549522px;}
.y4a{bottom:116.699040px;}
.ya3{bottom:116.818454px;}
.y19{bottom:117.392936px;}
.y53{bottom:120.181777px;}
.ycf{bottom:124.214506px;}
.yd6{bottom:124.406670px;}
.y106{bottom:124.449713px;}
.yb3{bottom:124.740727px;}
.y8e{bottom:128.804081px;}
.y56{bottom:129.522315px;}
.yec{bottom:130.592932px;}
.y9c{bottom:131.190825px;}
.y7b{bottom:132.180307px;}
.y136{bottom:134.016064px;}
.y3a{bottom:134.385127px;}
.y8{bottom:134.734009px;}
.y141{bottom:136.274050px;}
.y52{bottom:136.381779px;}
.yce{bottom:140.414505px;}
.yb2{bottom:140.940728px;}
.ya0{bottom:141.956569px;}
.y9d{bottom:145.004080px;}
.y49{bottom:145.679041px;}
.y55{bottom:145.722316px;}
.y18{bottom:146.372936px;}
.y70{bottom:146.971403px;}
.y8d{bottom:147.390825px;}
.yc4{bottom:147.623119px;}
.y7a{bottom:148.380309px;}
.yd4{bottom:150.618544px;}
.y135{bottom:152.646065px;}
.yb1{bottom:157.140717px;}
.y8f{bottom:158.156569px;}
.y74{bottom:159.033181px;}
.y54{bottom:161.922317px;}
.y6f{bottom:163.171404px;}
.y9b{bottom:163.590825px;}
.y7{bottom:163.714004px;}
.yc3{bottom:163.823121px;}
.yeb{bottom:164.552915px;}
.yd3{bottom:166.818547px;}
.y39{bottom:170.865166px;}
.y134{bottom:171.276066px;}
.yb0{bottom:173.340717px;}
.y9f{bottom:174.356569px;}
.y48{bottom:174.659042px;}
.y73{bottom:175.233181px;}
.y21{bottom:175.352937px;}
.yd7{bottom:175.735263px;}
.yc2{bottom:180.023123px;}
.yd5{bottom:180.642933px;}
.yd2{bottom:183.018548px;}
.y91{bottom:184.245499px;}
.ya2{bottom:184.247475px;}
.yaf{bottom:189.540718px;}
.y133{bottom:189.906066px;}
.yea{bottom:191.012938px;}
.y72{bottom:191.433183px;}
.y90{bottom:195.093438px;}
.ya1{bottom:195.095416px;}
.y38{bottom:199.845178px;}
.y47{bottom:203.639065px;}
.yd9{bottom:203.925871px;}
.y17{bottom:204.332961px;}
.yae{bottom:205.740730px;}
.y71{bottom:207.633183px;}
.y132{bottom:208.536055px;}
.y2c{bottom:214.702102px;}
.y13e{bottom:217.522203px;}
.yd1{bottom:218.212264px;}
.yc1{bottom:221.498586px;}
.yad{bottom:221.940736px;}
.y105{bottom:224.936720px;}
.ye9{bottom:224.972909px;}
.y131{bottom:227.166056px;}
.y93{bottom:228.312187px;}
.y37{bottom:228.825190px;}
.y6{bottom:230.917405px;}
.y46{bottom:232.619078px;}
.y92{bottom:232.700158px;}
.y16{bottom:233.312973px;}
.yc8{bottom:233.884338px;}
.yd0{bottom:234.412263px;}
.y5b{bottom:236.006561px;}
.yc0{bottom:237.698589px;}
.yac{bottom:238.140742px;}
.y94{bottom:241.449560px;}
.y88{bottom:241.527746px;}
.y50{bottom:243.181060px;}
.y130{bottom:245.796057px;}
.y6e{bottom:246.032721px;}
.yc7{bottom:246.613897px;}
.y8c{bottom:249.636791px;}
.ye8{bottom:251.432932px;}
.y5a{bottom:252.206562px;}
.ybf{bottom:253.898590px;}
.yab{bottom:254.340731px;}
.y51{bottom:256.795506px;}
.y87{bottom:257.727750px;}
.y2b{bottom:258.682167px;}
.y4f{bottom:259.381063px;}
.y45{bottom:261.599090px;}
.y15{bottom:262.292985px;}
.y79{bottom:262.789515px;}
.yc6{bottom:262.813900px;}
.y12f{bottom:264.426057px;}
.y36{bottom:265.305150px;}
.y8b{bottom:265.836792px;}
.ybe{bottom:269.595066px;}
.y6d{bottom:269.964004px;}
.yaa{bottom:270.540732px;}
.y9a{bottom:271.654926px;}
.y86{bottom:273.927749px;}
.y5{bottom:274.117406px;}
.y78{bottom:278.989517px;}
.yc5{bottom:279.013901px;}
.y12e{bottom:283.056047px;}
.ye7{bottom:285.392903px;}
.ybd{bottom:285.795065px;}
.y6c{bottom:286.164007px;}
.ya9{bottom:286.740728px;}
.y44{bottom:290.579102px;}
.y100{bottom:291.062487px;}
.y14{bottom:291.272997px;}
.y35{bottom:294.285129px;}
.y13d{bottom:300.322216px;}
.y12d{bottom:301.686036px;}
.y2a{bottom:302.662142px;}
.y104{bottom:306.880652px;}
.yf4{bottom:307.715897px;}
.y7e{bottom:308.847662px;}
.y66{bottom:312.619254px;}
.yff{bottom:312.662477px;}
.ya8{bottom:313.440729px;}
.y99{bottom:314.875740px;}
.y4{bottom:317.317407px;}
.ye6{bottom:319.352920px;}
.y43{bottom:319.559103px;}
.y20{bottom:320.252998px;}
.y12c{bottom:320.316025px;}
.y119{bottom:322.149871px;}
.y103{bottom:323.080652px;}
.yd8{bottom:329.746874px;}
.y109{bottom:330.346971px;}
.y34{bottom:330.765134px;}
.y65{bottom:332.419266px;}
.yfe{bottom:334.262471px;}
.yf9{bottom:334.265362px;}
.y6b{bottom:335.540106px;}
.y12b{bottom:338.946026px;}
.y102{bottom:339.280653px;}
.yf3{bottom:340.340902px;}
.y59{bottom:342.488703px;}
.y108{bottom:346.546973px;}
.y29{bottom:346.642129px;}
.y42{bottom:348.539092px;}
.y13{bottom:349.232988px;}
.y85{bottom:350.149368px;}
.y76{bottom:350.345984px;}
.y8a{bottom:350.919833px;}
.y6a{bottom:351.740107px;}
.y64{bottom:352.219256px;}
.ye5{bottom:353.312936px;}
.yfd{bottom:355.862467px;}
.yf8{bottom:355.865358px;}
.y12a{bottom:357.576027px;}
.y58{bottom:358.688704px;}
.yba{bottom:362.771206px;}
.y3{bottom:364.477409px;}
.y75{bottom:366.545986px;}
.y89{bottom:367.119833px;}
.y33{bottom:367.245139px;}
.y69{bottom:367.940107px;}
.y4e{bottom:369.108510px;}
.y118{bottom:369.551939px;}
.y84{bottom:369.949364px;}
.y63{bottom:372.019252px;}
.yf2{bottom:372.965903px;}
.y1c{bottom:374.924335px;}
.y129{bottom:376.206016px;}
.yfc{bottom:377.462465px;}
.yf7{bottom:377.465357px;}
.y41{bottom:377.519082px;}
.y12{bottom:378.212978px;}
.yb9{bottom:378.971205px;}
.y13c{bottom:383.122200px;}
.y4d{bottom:385.308510px;}
.ye4{bottom:387.272940px;}
.yde{bottom:389.074120px;}
.y83{bottom:389.749363px;}
.y28{bottom:390.622115px;}
.y62{bottom:391.819250px;}
.y115{bottom:393.127316px;}
.y128{bottom:394.836016px;}
.y68{bottom:395.009554px;}
.y77{bottom:396.585446px;}
.yfb{bottom:399.062468px;}
.yf6{bottom:399.065360px;}
.yef{bottom:400.801156px;}
.y4c{bottom:401.508511px;}
.y32{bottom:403.725132px;}
.yf1{bottom:405.590900px;}
.y40{bottom:406.499083px;}
.y11{bottom:407.192979px;}
.y7d{bottom:407.375865px;}
.y82{bottom:409.549359px;}
.ydd{bottom:410.674122px;}
.ydb{bottom:411.093074px;}
.y67{bottom:411.209556px;}
.y61{bottom:411.619246px;}
.y114{bottom:412.927328px;}
.y127{bottom:413.466017px;}
.y117{bottom:417.333853px;}
.y27{bottom:419.602116px;}
.yfa{bottom:420.662469px;}
.yf5{bottom:420.665360px;}
.ye3{bottom:421.232957px;}
.y7c{bottom:423.575864px;}
.y11e{bottom:424.490203px;}
.yda{bottom:425.493073px;}
.y2{bottom:427.477411px;}
.y81{bottom:429.349359px;}
.y60{bottom:431.419247px;}
.y126{bottom:432.096029px;}
.ydc{bottom:432.274123px;}
.y113{bottom:432.727340px;}
.y116{bottom:433.533854px;}
.y11b{bottom:434.096297px;}
.y3f{bottom:435.479073px;}
.y10{bottom:436.172968px;}
.yf0{bottom:438.215901px;}
.y31{bottom:440.205137px;}
.ybc{bottom:442.000621px;}
.ye2{bottom:447.692962px;}
.y26{bottom:448.582094px;}
.y1f{bottom:449.060320px;}
.y80{bottom:449.149360px;}
.y11d{bottom:449.690197px;}
.y11a{bottom:450.296299px;}
.y125{bottom:450.726041px;}
.y5f{bottom:451.219247px;}
.y112{bottom:452.527329px;}
.ybb{bottom:458.200621px;}
.y3e{bottom:464.459074px;}
.yf{bottom:465.152969px;}
.y7f{bottom:468.949361px;}
.y124{bottom:469.356037px;}
.y5e{bottom:471.019248px;}
.y111{bottom:472.327325px;}
.y11c{bottom:474.890196px;}
.y30{bottom:476.685131px;}
.y25{bottom:477.562095px;}
.ye1{bottom:481.652957px;}
.y101{bottom:481.958612px;}
.y123{bottom:487.986031px;}
.y1e{bottom:490.460321px;}
.y1{bottom:490.477413px;}
.y110{bottom:492.127323px;}
.y3d{bottom:493.439063px;}
.ye{bottom:494.132959px;}
.y2f{bottom:505.665120px;}
.y122{bottom:506.616031px;}
.ye0{bottom:508.112952px;}
.y10f{bottom:511.927320px;}
.y24{bottom:521.542090px;}
.y3c{bottom:522.419061px;}
.yd{bottom:523.112956px;}
.y121{bottom:525.246026px;}
.y10e{bottom:531.727320px;}
.y1d{bottom:531.860312px;}
.y120{bottom:547.026024px;}
.y2e{bottom:549.645120px;}
.y23{bottom:550.522085px;}
.y3b{bottom:551.399056px;}
.y10d{bottom:551.527321px;}
.yc{bottom:552.092952px;}
.y10c{bottom:571.327321px;}
.h15{height:33.351564px;}
.hd{height:33.351567px;}
.he{height:33.351568px;}
.hc{height:33.351571px;}
.h13{height:33.351574px;}
.hb{height:33.351577px;}
.hf{height:33.351582px;}
.h12{height:36.571290px;}
.h10{height:36.597657px;}
.h11{height:37.494142px;}
.h9{height:37.520509px;}
.h14{height:37.624365px;}
.h1c{height:40.368003px;}
.h1a{height:45.414001px;}
.ha{height:47.586003px;}
.h7{height:50.460000px;}
.h4{height:55.506003px;}
.h16{height:60.552002px;}
.h5{height:60.564000px;}
.h1d{height:61.154297px;}
.h17{height:65.598005px;}
.h18{height:68.448004px;}
.h3{height:70.644000px;}
.h19{height:80.736005px;}
.h6{height:99.498001px;}
.h2{height:121.104004px;}
.h1{height:151.410009px;}
.h8{height:151.574558px;}
.h1b{height:232.116002px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x6f{left:10.210630px;}
.x71{left:23.622048px;}
.x70{left:28.125001px;}
.xe{left:42.425197px;}
.xd{left:45.429456px;}
.x11{left:52.358271px;}
.x33{left:64.723537px;}
.x62{left:73.529093px;}
.x72{left:77.622050px;}
.x6e{left:79.714771px;}
.x31{left:91.312367px;}
.x4f{left:97.888337px;}
.x32{left:105.567128px;}
.x6d{left:108.514925px;}
.x50{left:114.769930px;}
.x45{left:116.245668px;}
.x3b{left:117.432191px;}
.x54{left:123.951137px;}
.x55{left:126.956997px;}
.x46{left:133.127260px;}
.x44{left:134.488467px;}
.x17{left:142.072317px;}
.x3c{left:155.352393px;}
.x27{left:161.250738px;}
.x3d{left:164.822469px;}
.x60{left:180.141846px;}
.x61{left:196.783476px;}
.x65{left:214.356845px;}
.x66{left:223.552402px;}
.x12{left:229.903108px;}
.x39{left:232.541546px;}
.x67{left:234.422276px;}
.x18{left:237.598491px;}
.x13{left:239.098665px;}
.x24{left:241.641359px;}
.x3a{left:246.796307px;}
.x68{left:248.887290px;}
.x14{left:249.968539px;}
.x19{left:253.342999px;}
.x25{left:261.706790px;}
.x4c{left:263.112134px;}
.x4b{left:270.972852px;}
.x51{left:273.511096px;}
.x3f{left:276.966082px;}
.x47{left:278.114733px;}
.x28{left:279.837236px;}
.x48{left:282.610339px;}
.x4{left:284.645593px;}
.x3e{left:290.681248px;}
.x74{left:291.689942px;}
.x29{left:295.581744px;}
.x5{left:311.825649px;}
.x2{left:332.718896px;}
.x3{left:334.372067px;}
.x6{left:341.194267px;}
.x40{left:345.095079px;}
.x8{left:358.078163px;}
.x73{left:362.891942px;}
.x7{left:376.706543px;}
.x43{left:378.633994px;}
.x69{left:384.404506px;}
.x2e{left:394.463628px;}
.x20{left:402.203739px;}
.x76{left:407.447444px;}
.x30{left:410.385774px;}
.x1f{left:411.831058px;}
.x77{left:413.857684px;}
.x26{left:417.746774px;}
.x49{left:419.047098px;}
.x15{left:420.182579px;}
.x16{left:422.806115px;}
.x56{left:424.152563px;}
.x9{left:427.551854px;}
.x22{left:445.028513px;}
.x53{left:450.456681px;}
.x4d{left:453.588720px;}
.x4e{left:456.212254px;}
.x23{left:464.527050px;}
.x52{left:468.089739px;}
.x6b{left:473.001425px;}
.xa{left:483.851805px;}
.x6c{left:492.499962px;}
.x1{left:501.835235px;}
.x41{left:504.451794px;}
.x42{left:509.712496px;}
.x5b{left:521.464586px;}
.x5a{left:530.073474px;}
.x5c{left:533.448474px;}
.x35{left:544.686002px;}
.x36{left:553.881559px;}
.x38{left:562.133460px;}
.x37{left:564.751433px;}
.xb{left:572.733459px;}
.x2d{left:573.780075px;}
.x2a{left:581.835251px;}
.x2c{left:584.847703px;}
.x1a{left:590.445720px;}
.x5e{left:595.024266px;}
.x2b{left:597.589647px;}
.x1c{left:602.224430px;}
.x1b{left:606.200116px;}
.xc{left:612.410465px;}
.x5d{left:616.041743px;}
.xf{left:626.733461px;}
.x1d{left:661.171784px;}
.x2f{left:662.486711px;}
.x10{left:666.410466px;}
.x1e{left:681.296541px;}
.x4a{left:734.444911px;}
.x57{left:738.566519px;}
.x58{left:747.406492px;}
.x5f{left:754.502987px;}
.x59{left:756.780027px;}
.x75{left:791.734300px;}
.x21{left:831.992202px;}
.x34{left:842.701797px;}
.x6a{left:866.964628px;}
.x64{left:877.712822px;}
.x63{left:879.014953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:71.938274pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000040pt;}
.ls6{letter-spacing:0.000160pt;}
.ls4{letter-spacing:0.000200pt;}
.ls1{letter-spacing:95.975130pt;}
.ls2{letter-spacing:95.987780pt;}
.ls3{letter-spacing:96.000191pt;}
.wsa{word-spacing:-65.504001pt;}
.ws2{word-spacing:-31.034667pt;}
.ws3{word-spacing:-20.682667pt;}
.ws0{word-spacing:-19.936000pt;}
.ws4{word-spacing:-18.890667pt;}
.ws8{word-spacing:-18.512001pt;}
.ws6{word-spacing:-16.250668pt;}
.ws9{word-spacing:-12.816000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:455.526671pt;}
._8{margin-left:-15.701333pt;}
._9{margin-left:-12.304000pt;}
._6{margin-left:-10.752000pt;}
._c{margin-left:-9.522426pt;}
._0{margin-left:-8.586667pt;}
._1{margin-left:-6.906667pt;}
._b{margin-left:-5.898667pt;}
._2{margin-left:-4.992000pt;}
._4{margin-left:-3.712000pt;}
._3{margin-left:-2.432000pt;}
._5{margin-left:-1.408000pt;}
._7{width:1.493333pt;}
._a{width:2.826667pt;}
._10{width:4.032000pt;}
._d{width:4.970667pt;}
._e{width:766.105810pt;}
._f{width:1286.703149pt;}
.fsd{font-size:42.666669pt;}
.fs9{font-size:42.666672pt;}
.fsa{font-size:42.666674pt;}
.fs8{font-size:42.666677pt;}
.fse{font-size:42.666678pt;}
.fsc{font-size:42.666681pt;}
.fs7{font-size:42.666685pt;}
.fsb{font-size:42.666692pt;}
.fs6{font-size:48.000002pt;}
.fs5{font-size:53.333334pt;}
.fs3{font-size:58.666670pt;}
.fsf{font-size:64.000002pt;}
.fs10{font-size:69.333338pt;}
.fs2{font-size:74.666666pt;}
.fs11{font-size:85.333339pt;}
.fs4{font-size:122.666668pt;}
.fs1{font-size:128.000004pt;}
.fs0{font-size:186.666678pt;}
.fs12{font-size:245.333336pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:16.382023pt;}
.y2d{bottom:22.071883pt;}
.y4b{bottom:27.069234pt;}
.y11f{bottom:29.615416pt;}
.yb8{bottom:30.880674pt;}
.ya7{bottom:33.438628pt;}
.y13b{bottom:36.325398pt;}
.y22{bottom:38.071884pt;}
.ydf{bottom:38.685454pt;}
.y98{bottom:49.910684pt;}
.ya6{bottom:51.038624pt;}
.y1b{bottom:52.829244pt;}
.y13a{bottom:52.885398pt;}
.yb7{bottom:53.280674pt;}
.yb{bottom:57.363565pt;}
.yee{bottom:62.375945pt;}
.ycb{bottom:66.326433pt;}
.y97{bottom:67.510685pt;}
.yb6{bottom:67.680665pt;}
.ya5{bottom:68.638625pt;}
.y139{bottom:69.445399pt;}
.y140{bottom:73.074955pt;}
.ya{bottom:77.603565pt;}
.y1a{bottom:78.589255pt;}
.yca{bottom:80.703353pt;}
.y5d{bottom:81.202285pt;}
.y10b{bottom:81.215405pt;}
.ycd{bottom:81.959433pt;}
.yb5{bottom:82.080665pt;}
.y96{bottom:85.110685pt;}
.yed{bottom:85.895955pt;}
.y138{bottom:86.005399pt;}
.ya4{bottom:86.238625pt;}
.yc9{bottom:95.103353pt;}
.y5c{bottom:95.602287pt;}
.y10a{bottom:95.615407pt;}
.y107{bottom:96.221966pt;}
.ycc{bottom:96.359433pt;}
.yb4{bottom:96.480656pt;}
.y9{bottom:97.843566pt;}
.y142{bottom:98.732490pt;}
.y9e{bottom:100.092516pt;}
.y57{bottom:100.730946pt;}
.y137{bottom:102.565390pt;}
.y95{bottom:102.710686pt;}
.y4a{bottom:103.732480pt;}
.ya3{bottom:103.838626pt;}
.y19{bottom:104.349276pt;}
.y53{bottom:106.828246pt;}
.ycf{bottom:110.412894pt;}
.yd6{bottom:110.583706pt;}
.y106{bottom:110.621967pt;}
.yb3{bottom:110.880646pt;}
.y8e{bottom:114.492516pt;}
.y56{bottom:115.130946pt;}
.yec{bottom:116.082606pt;}
.y9c{bottom:116.614066pt;}
.y7b{bottom:117.493606pt;}
.y136{bottom:119.125391pt;}
.y3a{bottom:119.453447pt;}
.y8{bottom:119.763564pt;}
.y141{bottom:121.132489pt;}
.y52{bottom:121.228248pt;}
.yce{bottom:124.812894pt;}
.yb2{bottom:125.280647pt;}
.ya0{bottom:126.183617pt;}
.y9d{bottom:128.892516pt;}
.y49{bottom:129.492481pt;}
.y55{bottom:129.530948pt;}
.y18{bottom:130.109277pt;}
.y70{bottom:130.641247pt;}
.y8d{bottom:131.014067pt;}
.yc4{bottom:131.220550pt;}
.y7a{bottom:131.893608pt;}
.yd4{bottom:133.883150pt;}
.y135{bottom:135.685391pt;}
.yb1{bottom:139.680637pt;}
.y8f{bottom:140.583617pt;}
.y74{bottom:141.362827pt;}
.y54{bottom:143.930948pt;}
.y6f{bottom:145.041248pt;}
.y9b{bottom:145.414066pt;}
.y7{bottom:145.523559pt;}
.yc3{bottom:145.620552pt;}
.yeb{bottom:146.269257pt;}
.yd3{bottom:148.283152pt;}
.y39{bottom:151.880148pt;}
.y134{bottom:152.245392pt;}
.yb0{bottom:154.080638pt;}
.y9f{bottom:154.983617pt;}
.y48{bottom:155.252482pt;}
.y73{bottom:155.762828pt;}
.y21{bottom:155.869278pt;}
.yd7{bottom:156.209122pt;}
.yc2{bottom:160.020553pt;}
.yd5{bottom:160.571496pt;}
.yd2{bottom:162.683153pt;}
.y91{bottom:163.773777pt;}
.ya2{bottom:163.775533pt;}
.yaf{bottom:168.480638pt;}
.y133{bottom:168.805392pt;}
.yea{bottom:169.789278pt;}
.y72{bottom:170.162829pt;}
.y90{bottom:173.416389pt;}
.ya1{bottom:173.418148pt;}
.y38{bottom:177.640158pt;}
.y47{bottom:181.012503pt;}
.yd9{bottom:181.267441pt;}
.y17{bottom:181.629299pt;}
.yae{bottom:182.880649pt;}
.y71{bottom:184.562830pt;}
.y132{bottom:185.365383pt;}
.y2c{bottom:190.846313pt;}
.y13e{bottom:193.353069pt;}
.yd1{bottom:193.966457pt;}
.yc1{bottom:196.887632pt;}
.yad{bottom:197.280654pt;}
.y105{bottom:199.943751pt;}
.ye9{bottom:199.975919pt;}
.y131{bottom:201.925383pt;}
.y93{bottom:202.944167pt;}
.y37{bottom:203.400169pt;}
.y6{bottom:205.259915pt;}
.y46{bottom:206.772513pt;}
.y92{bottom:206.844585pt;}
.y16{bottom:207.389309pt;}
.yc8{bottom:207.897190pt;}
.yd0{bottom:208.366456pt;}
.y5b{bottom:209.783609pt;}
.yc0{bottom:211.287634pt;}
.yac{bottom:211.680659pt;}
.y94{bottom:214.621832pt;}
.y88{bottom:214.691330pt;}
.y50{bottom:216.160943pt;}
.y130{bottom:218.485384pt;}
.y6e{bottom:218.695752pt;}
.yc7{bottom:219.212353pt;}
.y8c{bottom:221.899370pt;}
.ye8{bottom:223.495940pt;}
.y5a{bottom:224.183611pt;}
.ybf{bottom:225.687635pt;}
.yab{bottom:226.080650pt;}
.y51{bottom:228.262672pt;}
.y87{bottom:229.091333pt;}
.y2b{bottom:229.939704pt;}
.y4f{bottom:230.560945pt;}
.y45{bottom:232.532524pt;}
.y15{bottom:233.149320pt;}
.y79{bottom:233.590680pt;}
.yc6{bottom:233.612355pt;}
.y12f{bottom:235.045384pt;}
.y36{bottom:235.826800pt;}
.y8b{bottom:236.299370pt;}
.ybe{bottom:239.640058pt;}
.y6d{bottom:239.968003pt;}
.yaa{bottom:240.480650pt;}
.y9a{bottom:241.471045pt;}
.y86{bottom:243.491333pt;}
.y5{bottom:243.659917pt;}
.y78{bottom:247.990682pt;}
.yc5{bottom:248.012356pt;}
.y12e{bottom:251.605375pt;}
.ye7{bottom:253.682581pt;}
.ybd{bottom:254.040058pt;}
.y6c{bottom:254.368006pt;}
.ya9{bottom:254.880647pt;}
.y44{bottom:258.292535pt;}
.y100{bottom:258.722211pt;}
.y14{bottom:258.909331pt;}
.y35{bottom:261.586781pt;}
.y13d{bottom:266.953081pt;}
.y12d{bottom:268.165365pt;}
.y2a{bottom:269.033015pt;}
.y104{bottom:272.782801pt;}
.yf4{bottom:273.525241pt;}
.y7e{bottom:274.531256pt;}
.y66{bottom:277.883782pt;}
.yff{bottom:277.922202pt;}
.ya8{bottom:278.613982pt;}
.y99{bottom:279.889546pt;}
.y4{bottom:282.059918pt;}
.ye6{bottom:283.869262pt;}
.y43{bottom:284.052536pt;}
.y20{bottom:284.669332pt;}
.y12c{bottom:284.725356pt;}
.y119{bottom:286.355441pt;}
.y103{bottom:287.182802pt;}
.yd8{bottom:293.108332pt;}
.y109{bottom:293.641752pt;}
.y34{bottom:294.013452pt;}
.y65{bottom:295.483792pt;}
.yfe{bottom:297.122196pt;}
.yf9{bottom:297.124766pt;}
.y6b{bottom:298.257872pt;}
.y12b{bottom:301.285356pt;}
.y102{bottom:301.582802pt;}
.yf3{bottom:302.525246pt;}
.y59{bottom:304.434402pt;}
.y108{bottom:308.041754pt;}
.y29{bottom:308.126337pt;}
.y42{bottom:309.812527pt;}
.y13{bottom:310.429323pt;}
.y85{bottom:311.243883pt;}
.y76{bottom:311.418653pt;}
.y8a{bottom:311.928741pt;}
.y6a{bottom:312.657873pt;}
.y64{bottom:313.083783pt;}
.ye5{bottom:314.055943pt;}
.yfd{bottom:316.322193pt;}
.yf8{bottom:316.324763pt;}
.y12a{bottom:317.845357pt;}
.y58{bottom:318.834404pt;}
.yba{bottom:322.463294pt;}
.y3{bottom:323.979919pt;}
.y75{bottom:325.818654pt;}
.y89{bottom:326.328740pt;}
.y33{bottom:326.440123pt;}
.y69{bottom:327.057873pt;}
.y4e{bottom:328.096453pt;}
.y118{bottom:328.490612pt;}
.y84{bottom:328.843879pt;}
.y63{bottom:330.683779pt;}
.yf2{bottom:331.525247pt;}
.y1c{bottom:333.266075pt;}
.y129{bottom:334.405347pt;}
.yfc{bottom:335.522191pt;}
.yf7{bottom:335.524761pt;}
.y41{bottom:335.572517pt;}
.y12{bottom:336.189313pt;}
.yb9{bottom:336.863293pt;}
.y13c{bottom:340.553067pt;}
.y4d{bottom:342.496454pt;}
.ye4{bottom:344.242614pt;}
.yde{bottom:345.843662pt;}
.y83{bottom:346.443878pt;}
.y28{bottom:347.219658pt;}
.y62{bottom:348.283778pt;}
.y115{bottom:349.446503pt;}
.y128{bottom:350.965348pt;}
.y68{bottom:351.119604pt;}
.y77{bottom:352.520396pt;}
.yfb{bottom:354.722194pt;}
.yf6{bottom:354.724764pt;}
.yef{bottom:356.267694pt;}
.y4c{bottom:356.896454pt;}
.y32{bottom:358.866784pt;}
.yf1{bottom:360.525244pt;}
.y40{bottom:361.332518pt;}
.y11{bottom:361.949314pt;}
.y7d{bottom:362.111880pt;}
.y82{bottom:364.043874pt;}
.ydd{bottom:365.043664pt;}
.ydb{bottom:365.416065pt;}
.y67{bottom:365.519605pt;}
.y61{bottom:365.883774pt;}
.y114{bottom:367.046513pt;}
.y127{bottom:367.525348pt;}
.y117{bottom:370.963425pt;}
.y27{bottom:372.979659pt;}
.yfa{bottom:373.922195pt;}
.yf5{bottom:373.924765pt;}
.ye3{bottom:374.429295pt;}
.y7c{bottom:376.511879pt;}
.y11e{bottom:377.324625pt;}
.yda{bottom:378.216065pt;}
.y2{bottom:379.979921pt;}
.y81{bottom:381.643875pt;}
.y60{bottom:383.483775pt;}
.y126{bottom:384.085359pt;}
.ydc{bottom:384.243665pt;}
.y113{bottom:384.646524pt;}
.y116{bottom:385.363426pt;}
.y11b{bottom:385.863375pt;}
.y3f{bottom:387.092509pt;}
.y10{bottom:387.709305pt;}
.yf0{bottom:389.525245pt;}
.y31{bottom:391.293455pt;}
.ybc{bottom:392.889441pt;}
.ye2{bottom:397.949299pt;}
.y26{bottom:398.739639pt;}
.y1f{bottom:399.164728pt;}
.y80{bottom:399.243875pt;}
.y11d{bottom:399.724620pt;}
.y11a{bottom:400.263377pt;}
.y125{bottom:400.645370pt;}
.y5f{bottom:401.083776pt;}
.y112{bottom:402.246515pt;}
.ybb{bottom:407.289441pt;}
.y3e{bottom:412.852510pt;}
.yf{bottom:413.469306pt;}
.y7f{bottom:416.843876pt;}
.y124{bottom:417.205366pt;}
.y5e{bottom:418.683776pt;}
.y111{bottom:419.846511pt;}
.y11c{bottom:422.124618pt;}
.y30{bottom:423.720116pt;}
.y25{bottom:424.499640pt;}
.ye1{bottom:428.135961pt;}
.y101{bottom:428.407655pt;}
.y123{bottom:433.765361pt;}
.y1e{bottom:435.964730pt;}
.y1{bottom:435.979923pt;}
.y110{bottom:437.446510pt;}
.y3d{bottom:438.612501pt;}
.ye{bottom:439.229297pt;}
.y2f{bottom:449.480107pt;}
.y122{bottom:450.325361pt;}
.ye0{bottom:451.655957pt;}
.y10f{bottom:455.046506pt;}
.y24{bottom:463.592969pt;}
.y3c{bottom:464.372499pt;}
.yd{bottom:464.989295pt;}
.y121{bottom:466.885357pt;}
.y10e{bottom:472.646507pt;}
.y1d{bottom:472.764722pt;}
.y120{bottom:486.245354pt;}
.y2e{bottom:488.573440pt;}
.y23{bottom:489.352964pt;}
.y3b{bottom:490.132494pt;}
.y10d{bottom:490.246507pt;}
.yc{bottom:490.749290pt;}
.y10c{bottom:507.846508pt;}
.h15{height:29.645835pt;}
.hd{height:29.645837pt;}
.he{height:29.645838pt;}
.hc{height:29.645841pt;}
.h13{height:29.645844pt;}
.hb{height:29.645846pt;}
.hf{height:29.645851pt;}
.h12{height:32.507814pt;}
.h10{height:32.531251pt;}
.h11{height:33.328126pt;}
.h9{height:33.351564pt;}
.h14{height:33.443880pt;}
.h1c{height:35.882669pt;}
.h1a{height:40.368001pt;}
.ha{height:42.298669pt;}
.h7{height:44.853334pt;}
.h4{height:49.338669pt;}
.h16{height:53.824002pt;}
.h5{height:53.834666pt;}
.h1d{height:54.359375pt;}
.h17{height:58.309337pt;}
.h18{height:60.842671pt;}
.h3{height:62.794666pt;}
.h19{height:71.765338pt;}
.h6{height:88.442668pt;}
.h2{height:107.648003pt;}
.h1{height:134.586675pt;}
.h8{height:134.732941pt;}
.h1b{height:206.325335pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x6f{left:9.076116pt;}
.x71{left:20.997376pt;}
.x70{left:25.000001pt;}
.xe{left:37.711286pt;}
.xd{left:40.381738pt;}
.x11{left:46.540685pt;}
.x33{left:57.532033pt;}
.x62{left:65.359194pt;}
.x72{left:68.997378pt;}
.x6e{left:70.857574pt;}
.x31{left:81.166549pt;}
.x4f{left:87.011855pt;}
.x32{left:93.837447pt;}
.x6d{left:96.457711pt;}
.x50{left:102.017715pt;}
.x45{left:103.329482pt;}
.x3b{left:104.384170pt;}
.x54{left:110.178789pt;}
.x55{left:112.850664pt;}
.x46{left:118.335342pt;}
.x44{left:119.545304pt;}
.x17{left:126.286504pt;}
.x3c{left:138.091016pt;}
.x27{left:143.333990pt;}
.x3d{left:146.508861pt;}
.x60{left:160.126085pt;}
.x61{left:174.918646pt;}
.x65{left:190.539418pt;}
.x66{left:198.713246pt;}
.x12{left:204.358319pt;}
.x39{left:206.703597pt;}
.x67{left:208.375357pt;}
.x18{left:211.198659pt;}
.x13{left:212.532147pt;}
.x24{left:214.792319pt;}
.x3a{left:219.374495pt;}
.x68{left:221.233147pt;}
.x14{left:222.194257pt;}
.x19{left:225.193777pt;}
.x25{left:232.628257pt;}
.x4c{left:233.877452pt;}
.x4b{left:240.864758pt;}
.x51{left:243.120974pt;}
.x3f{left:246.192073pt;}
.x47{left:247.213096pt;}
.x28{left:248.744210pt;}
.x48{left:251.209190pt;}
.x4{left:253.018305pt;}
.x3e{left:258.383331pt;}
.x74{left:259.279948pt;}
.x29{left:262.739328pt;}
.x5{left:277.178355pt;}
.x2{left:295.750129pt;}
.x3{left:297.219616pt;}
.x6{left:303.283793pt;}
.x40{left:306.751181pt;}
.x8{left:318.291700pt;}
.x73{left:322.570615pt;}
.x7{left:334.850261pt;}
.x43{left:336.563550pt;}
.x69{left:341.692894pt;}
.x2e{left:350.634336pt;}
.x20{left:357.514434pt;}
.x76{left:362.175506pt;}
.x30{left:364.787355pt;}
.x1f{left:366.072052pt;}
.x77{left:367.873497pt;}
.x26{left:371.330466pt;}
.x49{left:372.486309pt;}
.x15{left:373.495626pt;}
.x16{left:375.827658pt;}
.x56{left:377.024500pt;}
.x9{left:380.046092pt;}
.x22{left:395.580901pt;}
.x53{left:400.405939pt;}
.x4d{left:403.189973pt;}
.x4e{left:405.522004pt;}
.x23{left:412.912933pt;}
.x52{left:416.079768pt;}
.x6b{left:420.445711pt;}
.xa{left:430.090494pt;}
.x6c{left:437.777744pt;}
.x1{left:446.075764pt;}
.x41{left:448.401594pt;}
.x42{left:453.077774pt;}
.x5b{left:463.524077pt;}
.x5a{left:471.176421pt;}
.x5c{left:474.176421pt;}
.x35{left:484.165335pt;}
.x36{left:492.339164pt;}
.x38{left:499.674187pt;}
.x37{left:502.001274pt;}
.xb{left:509.096408pt;}
.x2d{left:510.026733pt;}
.x2a{left:517.186890pt;}
.x2c{left:519.864625pt;}
.x1a{left:524.840640pt;}
.x5e{left:528.910458pt;}
.x2b{left:531.190797pt;}
.x1c{left:535.310604pt;}
.x1b{left:538.844547pt;}
.xc{left:544.364857pt;}
.x5d{left:547.592661pt;}
.xf{left:557.096410pt;}
.x1d{left:587.708253pt;}
.x2f{left:588.877077pt;}
.x10{left:592.364859pt;}
.x1e{left:605.596925pt;}
.x4a{left:652.839921pt;}
.x57{left:656.503573pt;}
.x58{left:664.361326pt;}
.x5f{left:670.669321pt;}
.x59{left:672.693358pt;}
.x75{left:703.763823pt;}
.x21{left:739.548624pt;}
.x34{left:749.068264pt;}
.x6a{left:770.635225pt;}
.x64{left:780.189175pt;}
.x63{left:781.346625pt;}
}




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