
    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_a350950e69868cf7b81681ea.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_2f51f59775a2539d60f6b49f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.107422;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_807ea021e748f1738672b736.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089355;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_46b362c57347b4a9125b0faf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_33cceae7f725c0cfcda0d2a9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e96011e4d0a91b604445023d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.948242;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_87b06df8d1a5a511a6817e21.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.201172;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_1af0b15483f34a8f8999849f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_a8f2c6b7d95bc88f0f0b3697.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.089355;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5db46aba8aa5e0f619a9410b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.964844;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-73.650000px;}
.v2{vertical-align:-2.250000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.250000px;}
.v1{vertical-align:17.400000px;}
.ls1f{letter-spacing:-7.140000px;}
.ls1c{letter-spacing:-2.622000px;}
.lsa{letter-spacing:-2.322000px;}
.ls6{letter-spacing:-1.878000px;}
.ls20{letter-spacing:-1.632000px;}
.ls17{letter-spacing:-1.626000px;}
.ls1b{letter-spacing:-1.434000px;}
.ls1d{letter-spacing:-0.732000px;}
.ls1{letter-spacing:-0.522000px;}
.ls19{letter-spacing:-0.330000px;}
.lsb{letter-spacing:-0.220800px;}
.ls8{letter-spacing:-0.137400px;}
.ls30{letter-spacing:-0.131400px;}
.ls9{letter-spacing:-0.070800px;}
.ls13{letter-spacing:-0.031500px;}
.ls2d{letter-spacing:-0.018480px;}
.ls7{letter-spacing:-0.009420px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012600px;}
.ls2c{letter-spacing:0.031500px;}
.ls1e{letter-spacing:0.252600px;}
.ls11{letter-spacing:0.567900px;}
.ls26{letter-spacing:0.594600px;}
.ls25{letter-spacing:0.654600px;}
.ls27{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.681450px;}
.ls2a{letter-spacing:0.687300px;}
.ls2f{letter-spacing:0.690000px;}
.ls10{letter-spacing:0.701550px;}
.ls18{letter-spacing:0.870000px;}
.ls32{letter-spacing:1.242000px;}
.ls22{letter-spacing:1.325100px;}
.ls12{letter-spacing:1.374000px;}
.ls16{letter-spacing:1.392000px;}
.ls2e{letter-spacing:1.524000px;}
.ls31{letter-spacing:27.594600px;}
.ls4{letter-spacing:51.495000px;}
.ls2{letter-spacing:51.547500px;}
.ls24{letter-spacing:53.460150px;}
.ls23{letter-spacing:56.460150px;}
.lsd{letter-spacing:58.935900px;}
.ls29{letter-spacing:59.085900px;}
.ls14{letter-spacing:59.422500px;}
.ls28{letter-spacing:59.970000px;}
.ls21{letter-spacing:60.997500px;}
.lse{letter-spacing:61.095000px;}
.lsc{letter-spacing:61.147500px;}
.lsf{letter-spacing:61.177500px;}
.ls2b{letter-spacing:105.022500px;}
.ls1a{letter-spacing:124.147500px;}
.ls5{letter-spacing:234.360600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(76,172,78),0 0.015em rgb(76,172,78),0.015em 0 rgb(76,172,78),0 -0.015em  rgb(76,172,78);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(76,172,78);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-88.561350px;}
.ws5{word-spacing:-60.039900px;}
.ws3c{word-spacing:-59.989950px;}
.ws3{word-spacing:-36.013950px;}
.ws15{word-spacing:-33.860400px;}
.ws26{word-spacing:-33.818700px;}
.ws23{word-spacing:-33.789600px;}
.ws6{word-spacing:-30.065700px;}
.ws2f{word-spacing:-28.814700px;}
.ws32{word-spacing:-28.631700px;}
.ws31{word-spacing:-28.484700px;}
.ws48{word-spacing:-27.836700px;}
.ws47{word-spacing:-27.686700px;}
.ws49{word-spacing:-27.002700px;}
.ws3f{word-spacing:-26.978700px;}
.ws2b{word-spacing:-26.880600px;}
.ws27{word-spacing:-26.312700px;}
.ws45{word-spacing:-26.302500px;}
.ws46{word-spacing:-26.294220px;}
.ws2a{word-spacing:-26.271000px;}
.ws29{word-spacing:-26.239500px;}
.ws4a{word-spacing:-26.181300px;}
.ws41{word-spacing:-23.810700px;}
.ws42{word-spacing:-23.769000px;}
.ws44{word-spacing:-21.188700px;}
.ws3e{word-spacing:-20.057700px;}
.ws3b{word-spacing:-18.806700px;}
.ws7{word-spacing:-17.555700px;}
.ws8{word-spacing:-17.514000px;}
.ws3d{word-spacing:-16.305900px;}
.ws0{word-spacing:-13.761000px;}
.ws4{word-spacing:-11.300700px;}
.ws2d{word-spacing:-4.119300px;}
.ws28{word-spacing:-3.772800px;}
.ws25{word-spacing:-3.261300px;}
.ws1e{word-spacing:-3.165600px;}
.ws24{word-spacing:-2.735250px;}
.ws3a{word-spacing:-0.522450px;}
.ws19{word-spacing:-0.253350px;}
.ws4f{word-spacing:-0.106650px;}
.ws1a{word-spacing:-0.048900px;}
.ws4e{word-spacing:-0.040800px;}
.ws2{word-spacing:0.000000px;}
.ws40{word-spacing:0.240900px;}
.ws17{word-spacing:0.466650px;}
.ws50{word-spacing:0.603600px;}
.ws2e{word-spacing:0.630600px;}
.ws4d{word-spacing:0.664800px;}
.ws4c{word-spacing:0.678300px;}
.ws1c{word-spacing:0.792600px;}
.ws39{word-spacing:1.117800px;}
.ws16{word-spacing:1.303350px;}
.ws18{word-spacing:1.492950px;}
.ws2c{word-spacing:1.705500px;}
.ws1b{word-spacing:2.674050px;}
.ws4b{word-spacing:3.205500px;}
.ws30{word-spacing:14.281200px;}
.wse{word-spacing:28.425600px;}
.wsf{word-spacing:28.448400px;}
.ws10{word-spacing:29.438700px;}
.ws11{word-spacing:29.739900px;}
.ws1d{word-spacing:37.584900px;}
.wsb{word-spacing:95.259300px;}
.ws20{word-spacing:113.433000px;}
.wsc{word-spacing:118.035000px;}
.ws12{word-spacing:125.005200px;}
.ws13{word-spacing:125.701200px;}
.ws14{word-spacing:126.561600px;}
.wsd{word-spacing:136.932600px;}
.ws1f{word-spacing:199.063200px;}
.ws21{word-spacing:199.501800px;}
.ws22{word-spacing:201.442800px;}
.wsa{word-spacing:361.648500px;}
.ws38{word-spacing:496.206900px;}
.ws37{word-spacing:538.615950px;}
.ws36{word-spacing:557.347500px;}
.ws35{word-spacing:645.327150px;}
.ws43{word-spacing:792.729900px;}
.ws33{word-spacing:4080.829800px;}
.ws34{word-spacing:4087.009800px;}
.ws9{word-spacing:4127.509800px;}
._7{margin-left:-16.164150px;}
._a{margin-left:-12.154500px;}
._1b{margin-left:-10.038150px;}
._b{margin-left:-8.943900px;}
._18{margin-left:-7.536300px;}
._9{margin-left:-6.225450px;}
._1{margin-left:-4.766400px;}
._3{margin-left:-3.312000px;}
._0{margin-left:-1.489500px;}
._2{width:1.439850px;}
._4{width:2.578500px;}
._6{width:4.145100px;}
._16{width:5.251500px;}
._1e{width:6.583200px;}
._c{width:10.161600px;}
._1c{width:11.184300px;}
._5{width:15.094500px;}
._24{width:18.469200px;}
._1a{width:27.360750px;}
._17{width:28.535850px;}
._19{width:29.587500px;}
._13{width:33.094200px;}
._21{width:34.379700px;}
._12{width:35.846700px;}
._1f{width:62.135400px;}
._f{width:63.765300px;}
._e{width:65.382900px;}
._26{width:68.450400px;}
._8{width:81.642750px;}
._23{width:119.507250px;}
._10{width:159.936900px;}
._11{width:162.096000px;}
._15{width:234.313200px;}
._25{width:481.455300px;}
._14{width:488.523450px;}
._d{width:585.816150px;}
._20{width:788.315250px;}
._22{width:1114.701000px;}
._1d{width:1269.982950px;}
.fc2{color:rgb(76,172,78);}
.fc1{color:transparent;}
.fc4{color:rgb(22,26,38);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:40.650000px;}
.fs1{font-size:49.500000px;}
.fs0{font-size:49.650000px;}
.fs17{font-size:54.000000px;}
.fs9{font-size:63.000000px;}
.fs8{font-size:63.150000px;}
.fs14{font-size:67.650000px;}
.fs18{font-size:72.150000px;}
.fs15{font-size:76.650000px;}
.fs19{font-size:85.500000px;}
.fsa{font-size:85.650000px;}
.fs11{font-size:94.500000px;}
.fs7{font-size:94.650000px;}
.fs12{font-size:103.500000px;}
.fs13{font-size:103.650000px;}
.fs4{font-size:108.150000px;}
.fsf{font-size:117.150000px;}
.fs10{font-size:117.300000px;}
.fsc{font-size:121.650000px;}
.fsd{font-size:121.800000px;}
.fsb{font-size:144.150000px;}
.fse{font-size:144.300000px;}
.fs16{font-size:180.150000px;}
.fs6{font-size:180.300000px;}
.fs1a{font-size:193.800000px;}
.fs3{font-size:238.800000px;}
.fs2{font-size:265.950000px;}
.y0{bottom:0.000000px;}
.y56{bottom:6.675000px;}
.yc{bottom:27.937500px;}
.y1c{bottom:32.287500px;}
.yaa{bottom:50.700000px;}
.y65{bottom:52.725000px;}
.y76{bottom:65.212500px;}
.yb{bottom:71.025000px;}
.ya9{bottom:75.487500px;}
.y93{bottom:77.175000px;}
.y72{bottom:80.625000px;}
.yba{bottom:81.225000px;}
.y11{bottom:82.237500px;}
.y5{bottom:82.837500px;}
.y46{bottom:90.450000px;}
.y4{bottom:97.500000px;}
.ya8{bottom:101.400000px;}
.y92{bottom:103.087500px;}
.y59{bottom:103.575000px;}
.ya{bottom:104.812500px;}
.y91{bottom:111.975000px;}
.y3{bottom:112.125000px;}
.y89{bottom:115.687500px;}
.yb7{bottom:115.950000px;}
.y26{bottom:116.550000px;}
.y57{bottom:116.850000px;}
.y71{bottom:122.325000px;}
.y45{bottom:123.112500px;}
.ya7{bottom:126.187500px;}
.y2{bottom:127.912500px;}
.y90{bottom:137.887500px;}
.y9{bottom:138.600000px;}
.y88{bottom:141.600000px;}
.y1{bottom:142.575000px;}
.y25{bottom:151.500000px;}
.ya6{bottom:152.100000px;}
.y70{bottom:152.745000px;}
.y44{bottom:155.805000px;}
.y3a{bottom:165.825000px;}
.y54{bottom:174.975000px;}
.ya5{bottom:176.895000px;}
.ya1{bottom:184.725000px;}
.y30{bottom:197.370000px;}
.ya4{bottom:201.630000px;}
.y17{bottom:202.380000px;}
.yb6{bottom:207.975000px;}
.y53{bottom:211.005000px;}
.y39{bottom:212.025000px;}
.ya0{bottom:215.130000px;}
.y43{bottom:217.755000px;}
.y24{bottom:217.950000px;}
.y1b{bottom:218.400000px;}
.y8f{bottom:220.500000px;}
.y87{bottom:223.050000px;}
.y6f{bottom:225.975000px;}
.ya3{bottom:227.550000px;}
.y5a{bottom:232.170000px;}
.y10{bottom:232.575000px;}
.y16{bottom:235.050000px;}
.y1a{bottom:236.445000px;}
.yb5{bottom:238.380000px;}
.y9f{bottom:245.550000px;}
.y42{bottom:249.300000px;}
.y23{bottom:252.870000px;}
.y2f{bottom:253.725000px;}
.y52{bottom:256.095000px;}
.y6e{bottom:256.380000px;}
.y38{bottom:259.350000px;}
.y6{bottom:262.575000px;}
.yf{bottom:266.370000px;}
.yb4{bottom:268.800000px;}
.y8e{bottom:282.450000px;}
.ya2{bottom:284.205000px;}
.y86{bottom:285.000000px;}
.y22{bottom:286.695000px;}
.y9e{bottom:287.220000px;}
.y37{bottom:287.505000px;}
.y41{bottom:290.955000px;}
.y51{bottom:291.000000px;}
.y63{bottom:295.095000px;}
.y6d{bottom:299.175000px;}
.y2e{bottom:310.050000px;}
.yb3{bottom:310.500000px;}
.y9d{bottom:317.655000px;}
.y8d{bottom:318.495000px;}
.y85{bottom:321.030000px;}
.y21{bottom:322.725000px;}
.y62{bottom:325.500000px;}
.y80{bottom:326.820000px;}
.y50{bottom:327.030000px;}
.y36{bottom:334.800000px;}
.y6c{bottom:340.875000px;}
.yb2{bottom:340.905000px;}
.y9c{bottom:348.075000px;}
.y40{bottom:349.575000px;}
.y4f{bottom:363.105000px;}
.y2d{bottom:365.250000px;}
.y61{bottom:367.170000px;}
.yb1{bottom:371.325000px;}
.y9b{bottom:378.495000px;}
.y5b{bottom:379.650000px;}
.y35{bottom:382.125000px;}
.y3f{bottom:382.245000px;}
.y6b{bottom:383.655000px;}
.y20{bottom:390.300000px;}
.yd{bottom:393.825000px;}
.y60{bottom:397.575000px;}
.y8c{bottom:398.745000px;}
.y84{bottom:400.425000px;}
.y4e{bottom:407.025000px;}
.yb0{bottom:414.150000px;}
.y9a{bottom:421.275000px;}
.y2c{bottom:421.575000px;}
.y6a{bottom:425.370000px;}
.y7e{bottom:425.880000px;}
.y5f{bottom:427.995000px;}
.y34{bottom:428.325000px;}
.y3e{bottom:441.945000px;}
.y4d{bottom:443.070000px;}
.yaf{bottom:444.570000px;}
.y77{bottom:447.975000px;}
.y2b{bottom:449.745000px;}
.y7d{bottom:456.300000px;}
.y1f{bottom:459.030000px;}
.y99{bottom:462.975000px;}
.y5e{bottom:469.695000px;}
.yae{bottom:474.975000px;}
.y33{bottom:475.650000px;}
.y8b{bottom:478.950000px;}
.y83{bottom:479.775000px;}
.y13{bottom:485.775000px;}
.y7c{bottom:486.720000px;}
.y2a{bottom:488.025000px;}
.y4c{bottom:488.130000px;}
.y8{bottom:498.255000px;}
.y69{bottom:498.600000px;}
.y5d{bottom:500.100000px;}
.yad{bottom:504.255000px;}
.y98{bottom:505.755000px;}
.y19{bottom:513.945000px;}
.y3d{bottom:517.425000px;}
.y12{bottom:519.600000px;}
.y32{bottom:521.820000px;}
.y4b{bottom:523.050000px;}
.y1e{bottom:526.620000px;}
.y7b{bottom:529.545000px;}
.y18{bottom:531.975000px;}
.y29{bottom:535.350000px;}
.y7f{bottom:538.575000px;}
.y68{bottom:541.380000px;}
.y5c{bottom:542.925000px;}
.yac{bottom:547.080000px;}
.y97{bottom:547.470000px;}
.y15{bottom:556.620000px;}
.y7{bottom:557.955000px;}
.y7a{bottom:558.825000px;}
.y4a{bottom:559.125000px;}
.y82{bottom:559.170000px;}
.y3c{bottom:562.470000px;}
.y58{bottom:565.800000px;}
.y31{bottom:569.130000px;}
.y28{bottom:572.505000px;}
.yab{bottom:577.500000px;}
.yb9{bottom:582.255000px;}
.y67{bottom:583.095000px;}
.y79{bottom:589.245000px;}
.y96{bottom:590.295000px;}
.y14{bottom:590.445000px;}
.y1d{bottom:595.350000px;}
.y73{bottom:598.500000px;}
.y48{bottom:600.255000px;}
.yb8{bottom:610.425000px;}
.y81{bottom:610.470000px;}
.y8a{bottom:610.545000px;}
.y47{bottom:614.925000px;}
.y27{bottom:620.970000px;}
.y66{bottom:625.875000px;}
.y78{bottom:632.025000px;}
.y49{bottom:640.245000px;}
.y75{bottom:640.725000px;}
.y95{bottom:653.220000px;}
.y64{bottom:657.720000px;}
.y74{bottom:662.130000px;}
.y55{bottom:664.470000px;}
.y94{bottom:700.530000px;}
.ye{bottom:702.780000px;}
.y3b{bottom:702.825000px;}
.ha{height:36.461938px;}
.h1b{height:36.520752px;}
.h1a{height:36.631421px;}
.h2{height:37.342529px;}
.h1{height:37.455688px;}
.h2a{height:39.840820px;}
.h3{height:44.400146px;}
.h4{height:44.534692px;}
.h20{height:48.436523px;}
.h23{height:53.231763px;}
.he{height:56.509277px;}
.hd{height:56.643823px;}
.h1d{height:60.680200px;}
.h26{height:71.403442px;}
.h22{height:73.876245px;}
.h2b{height:74.770752px;}
.h27{height:74.901929px;}
.h25{height:76.691162px;}
.hf{height:76.825708px;}
.h1c{height:78.483911px;}
.h9{height:81.587769px;}
.h24{height:82.641357px;}
.h1e{height:82.772534px;}
.h29{height:84.763916px;}
.hc{height:84.898462px;}
.h21{height:86.775659px;}
.h18{height:90.643140px;}
.h19{height:92.971216px;}
.h10{height:94.225708px;}
.h7{height:94.578442px;}
.h8{height:97.007593px;}
.h16{height:105.080347px;}
.h17{height:105.214893px;}
.h14{height:109.116724px;}
.h13{height:109.251270px;}
.h12{height:129.298608px;}
.h15{height:129.433154px;}
.h1f{height:135.904175px;}
.hb{height:136.017334px;}
.h28{height:146.201660px;}
.h11{height:161.724170px;}
.h6{height:180.149414px;}
.h5{height:200.631226px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.xf{left:57.412479px;}
.x2{left:67.012479px;}
.x3{left:68.212479px;}
.x11{left:72.487479px;}
.x16{left:79.462479px;}
.x4a{left:92.062479px;}
.x24{left:94.162479px;}
.x12{left:98.024979px;}
.x18{left:100.462479px;}
.x17{left:104.962479px;}
.x1b{left:107.062479px;}
.x26{left:115.499979px;}
.x13{left:123.524979px;}
.x19{left:133.499979px;}
.x9{left:145.162479px;}
.x8{left:149.174979px;}
.x33{left:160.679979px;}
.x34{left:169.304979px;}
.x1d{left:177.869979px;}
.x1f{left:194.969979px;}
.x32{left:221.504979px;}
.x3b{left:244.424979px;}
.x7{left:273.494979px;}
.x35{left:304.244979px;}
.x36{left:314.099979px;}
.x50{left:321.074979px;}
.x22{left:326.819979px;}
.x21{left:332.324979px;}
.xd{left:336.344979px;}
.x20{left:338.324979px;}
.x31{left:346.379979px;}
.x2f{left:354.869979px;}
.x30{left:356.819979px;}
.x2e{left:358.574979px;}
.x10{left:375.494979px;}
.x51{left:436.424979px;}
.x37{left:447.824979px;}
.x38{left:456.449979px;}
.xc{left:462.299979px;}
.x4{left:495.449979px;}
.x2c{left:527.969979px;}
.x1e{left:541.169979px;}
.x5{left:565.979979px;}
.x39{left:591.374979px;}
.x3a{left:601.229979px;}
.x6{left:608.744979px;}
.x28{left:637.574979px;}
.x14{left:731.354979px;}
.x15{left:756.899979px;}
.x41{left:766.094979px;}
.x52{left:770.774979px;}
.x40{left:818.279979px;}
.x4c{left:820.379979px;}
.x42{left:901.019979px;}
.x27{left:904.949979px;}
.x43{left:910.874979px;}
.x4d{left:914.399979px;}
.x1a{left:919.619979px;}
.x4e{left:939.899979px;}
.x3f{left:943.169979px;}
.x3e{left:953.579979px;}
.x3c{left:955.349979px;}
.x3d{left:956.879979px;}
.xa{left:992.969979px;}
.x48{left:1027.619979px;}
.x49{left:1041.494979px;}
.x44{left:1044.599979px;}
.x45{left:1053.224979px;}
.xb{left:1071.044979px;}
.x2d{left:1106.324979px;}
.x46{left:1188.149979px;}
.x47{left:1198.019979px;}
.x1{left:1200.449979px;}
.x1c{left:1310.444979px;}
.x2a{left:1320.674979px;}
.x29{left:1330.349979px;}
.x25{left:1332.944979px;}
.x2b{left:1339.049979px;}
.x4f{left:1340.969979px;}
.x23{left:1349.549979px;}
.xe{left:1361.174979px;}
.x4b{left:1406.369979px;}
@media print{
.v4{vertical-align:-65.466667pt;}
.v2{vertical-align:-2.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.000000pt;}
.v1{vertical-align:15.466667pt;}
.ls1f{letter-spacing:-6.346667pt;}
.ls1c{letter-spacing:-2.330667pt;}
.lsa{letter-spacing:-2.064000pt;}
.ls6{letter-spacing:-1.669333pt;}
.ls20{letter-spacing:-1.450667pt;}
.ls17{letter-spacing:-1.445333pt;}
.ls1b{letter-spacing:-1.274667pt;}
.ls1d{letter-spacing:-0.650667pt;}
.ls1{letter-spacing:-0.464000pt;}
.ls19{letter-spacing:-0.293333pt;}
.lsb{letter-spacing:-0.196267pt;}
.ls8{letter-spacing:-0.122133pt;}
.ls30{letter-spacing:-0.116800pt;}
.ls9{letter-spacing:-0.062933pt;}
.ls13{letter-spacing:-0.028000pt;}
.ls2d{letter-spacing:-0.016427pt;}
.ls7{letter-spacing:-0.008373pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011200pt;}
.ls2c{letter-spacing:0.028000pt;}
.ls1e{letter-spacing:0.224533pt;}
.ls11{letter-spacing:0.504800pt;}
.ls26{letter-spacing:0.528533pt;}
.ls25{letter-spacing:0.581867pt;}
.ls27{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.605733pt;}
.ls2a{letter-spacing:0.610933pt;}
.ls2f{letter-spacing:0.613333pt;}
.ls10{letter-spacing:0.623600pt;}
.ls18{letter-spacing:0.773333pt;}
.ls32{letter-spacing:1.104000pt;}
.ls22{letter-spacing:1.177867pt;}
.ls12{letter-spacing:1.221333pt;}
.ls16{letter-spacing:1.237333pt;}
.ls2e{letter-spacing:1.354667pt;}
.ls31{letter-spacing:24.528533pt;}
.ls4{letter-spacing:45.773333pt;}
.ls2{letter-spacing:45.820000pt;}
.ls24{letter-spacing:47.520133pt;}
.ls23{letter-spacing:50.186800pt;}
.lsd{letter-spacing:52.387467pt;}
.ls29{letter-spacing:52.520800pt;}
.ls14{letter-spacing:52.820000pt;}
.ls28{letter-spacing:53.306667pt;}
.ls21{letter-spacing:54.220000pt;}
.lse{letter-spacing:54.306667pt;}
.lsc{letter-spacing:54.353333pt;}
.lsf{letter-spacing:54.380000pt;}
.ls2b{letter-spacing:93.353333pt;}
.ls1a{letter-spacing:110.353333pt;}
.ls5{letter-spacing:208.320533pt;}
.ws1{word-spacing:-78.721200pt;}
.ws5{word-spacing:-53.368800pt;}
.ws3c{word-spacing:-53.324400pt;}
.ws3{word-spacing:-32.012400pt;}
.ws15{word-spacing:-30.098133pt;}
.ws26{word-spacing:-30.061067pt;}
.ws23{word-spacing:-30.035200pt;}
.ws6{word-spacing:-26.725067pt;}
.ws2f{word-spacing:-25.613067pt;}
.ws32{word-spacing:-25.450400pt;}
.ws31{word-spacing:-25.319733pt;}
.ws48{word-spacing:-24.743733pt;}
.ws47{word-spacing:-24.610400pt;}
.ws49{word-spacing:-24.002400pt;}
.ws3f{word-spacing:-23.981067pt;}
.ws2b{word-spacing:-23.893867pt;}
.ws27{word-spacing:-23.389067pt;}
.ws45{word-spacing:-23.380000pt;}
.ws46{word-spacing:-23.372640pt;}
.ws2a{word-spacing:-23.352000pt;}
.ws29{word-spacing:-23.324000pt;}
.ws4a{word-spacing:-23.272267pt;}
.ws41{word-spacing:-21.165067pt;}
.ws42{word-spacing:-21.128000pt;}
.ws44{word-spacing:-18.834400pt;}
.ws3e{word-spacing:-17.829067pt;}
.ws3b{word-spacing:-16.717067pt;}
.ws7{word-spacing:-15.605067pt;}
.ws8{word-spacing:-15.568000pt;}
.ws3d{word-spacing:-14.494133pt;}
.ws0{word-spacing:-12.232000pt;}
.ws4{word-spacing:-10.045067pt;}
.ws2d{word-spacing:-3.661600pt;}
.ws28{word-spacing:-3.353600pt;}
.ws25{word-spacing:-2.898933pt;}
.ws1e{word-spacing:-2.813867pt;}
.ws24{word-spacing:-2.431333pt;}
.ws3a{word-spacing:-0.464400pt;}
.ws19{word-spacing:-0.225200pt;}
.ws4f{word-spacing:-0.094800pt;}
.ws1a{word-spacing:-0.043467pt;}
.ws4e{word-spacing:-0.036267pt;}
.ws2{word-spacing:0.000000pt;}
.ws40{word-spacing:0.214133pt;}
.ws17{word-spacing:0.414800pt;}
.ws50{word-spacing:0.536533pt;}
.ws2e{word-spacing:0.560533pt;}
.ws4d{word-spacing:0.590933pt;}
.ws4c{word-spacing:0.602933pt;}
.ws1c{word-spacing:0.704533pt;}
.ws39{word-spacing:0.993600pt;}
.ws16{word-spacing:1.158533pt;}
.ws18{word-spacing:1.327067pt;}
.ws2c{word-spacing:1.516000pt;}
.ws1b{word-spacing:2.376933pt;}
.ws4b{word-spacing:2.849333pt;}
.ws30{word-spacing:12.694400pt;}
.wse{word-spacing:25.267200pt;}
.wsf{word-spacing:25.287467pt;}
.ws10{word-spacing:26.167733pt;}
.ws11{word-spacing:26.435467pt;}
.ws1d{word-spacing:33.408800pt;}
.wsb{word-spacing:84.674933pt;}
.ws20{word-spacing:100.829333pt;}
.wsc{word-spacing:104.920000pt;}
.ws12{word-spacing:111.115733pt;}
.ws13{word-spacing:111.734400pt;}
.ws14{word-spacing:112.499200pt;}
.wsd{word-spacing:121.717867pt;}
.ws1f{word-spacing:176.945067pt;}
.ws21{word-spacing:177.334933pt;}
.ws22{word-spacing:179.060267pt;}
.wsa{word-spacing:321.465333pt;}
.ws38{word-spacing:441.072800pt;}
.ws37{word-spacing:478.769733pt;}
.ws36{word-spacing:495.420000pt;}
.ws35{word-spacing:573.624133pt;}
.ws43{word-spacing:704.648800pt;}
.ws33{word-spacing:3627.404267pt;}
.ws34{word-spacing:3632.897600pt;}
.ws9{word-spacing:3668.897600pt;}
._7{margin-left:-14.368133pt;}
._a{margin-left:-10.804000pt;}
._1b{margin-left:-8.922800pt;}
._b{margin-left:-7.950133pt;}
._18{margin-left:-6.698933pt;}
._9{margin-left:-5.533733pt;}
._1{margin-left:-4.236800pt;}
._3{margin-left:-2.944000pt;}
._0{margin-left:-1.324000pt;}
._2{width:1.279867pt;}
._4{width:2.292000pt;}
._6{width:3.684533pt;}
._16{width:4.668000pt;}
._1e{width:5.851733pt;}
._c{width:9.032533pt;}
._1c{width:9.941600pt;}
._5{width:13.417333pt;}
._24{width:16.417067pt;}
._1a{width:24.320667pt;}
._17{width:25.365200pt;}
._19{width:26.300000pt;}
._13{width:29.417067pt;}
._21{width:30.559733pt;}
._12{width:31.863733pt;}
._1f{width:55.231467pt;}
._f{width:56.680267pt;}
._e{width:58.118133pt;}
._26{width:60.844800pt;}
._8{width:72.571333pt;}
._23{width:106.228667pt;}
._10{width:142.166133pt;}
._11{width:144.085333pt;}
._15{width:208.278400pt;}
._25{width:427.960267pt;}
._14{width:434.243067pt;}
._d{width:520.725467pt;}
._20{width:700.724667pt;}
._22{width:990.845333pt;}
._1d{width:1128.873733pt;}
.fs5{font-size:36.133333pt;}
.fs1{font-size:44.000000pt;}
.fs0{font-size:44.133333pt;}
.fs17{font-size:48.000000pt;}
.fs9{font-size:56.000000pt;}
.fs8{font-size:56.133333pt;}
.fs14{font-size:60.133333pt;}
.fs18{font-size:64.133333pt;}
.fs15{font-size:68.133333pt;}
.fs19{font-size:76.000000pt;}
.fsa{font-size:76.133333pt;}
.fs11{font-size:84.000000pt;}
.fs7{font-size:84.133333pt;}
.fs12{font-size:92.000000pt;}
.fs13{font-size:92.133333pt;}
.fs4{font-size:96.133333pt;}
.fsf{font-size:104.133333pt;}
.fs10{font-size:104.266667pt;}
.fsc{font-size:108.133333pt;}
.fsd{font-size:108.266667pt;}
.fsb{font-size:128.133333pt;}
.fse{font-size:128.266667pt;}
.fs16{font-size:160.133333pt;}
.fs6{font-size:160.266667pt;}
.fs1a{font-size:172.266667pt;}
.fs3{font-size:212.266667pt;}
.fs2{font-size:236.400000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:5.933333pt;}
.yc{bottom:24.833333pt;}
.y1c{bottom:28.700000pt;}
.yaa{bottom:45.066667pt;}
.y65{bottom:46.866667pt;}
.y76{bottom:57.966667pt;}
.yb{bottom:63.133333pt;}
.ya9{bottom:67.100000pt;}
.y93{bottom:68.600000pt;}
.y72{bottom:71.666667pt;}
.yba{bottom:72.200000pt;}
.y11{bottom:73.100000pt;}
.y5{bottom:73.633333pt;}
.y46{bottom:80.400000pt;}
.y4{bottom:86.666667pt;}
.ya8{bottom:90.133333pt;}
.y92{bottom:91.633333pt;}
.y59{bottom:92.066667pt;}
.ya{bottom:93.166667pt;}
.y91{bottom:99.533333pt;}
.y3{bottom:99.666667pt;}
.y89{bottom:102.833333pt;}
.yb7{bottom:103.066667pt;}
.y26{bottom:103.600000pt;}
.y57{bottom:103.866667pt;}
.y71{bottom:108.733333pt;}
.y45{bottom:109.433333pt;}
.ya7{bottom:112.166667pt;}
.y2{bottom:113.700000pt;}
.y90{bottom:122.566667pt;}
.y9{bottom:123.200000pt;}
.y88{bottom:125.866667pt;}
.y1{bottom:126.733333pt;}
.y25{bottom:134.666667pt;}
.ya6{bottom:135.200000pt;}
.y70{bottom:135.773333pt;}
.y44{bottom:138.493333pt;}
.y3a{bottom:147.400000pt;}
.y54{bottom:155.533333pt;}
.ya5{bottom:157.240000pt;}
.ya1{bottom:164.200000pt;}
.y30{bottom:175.440000pt;}
.ya4{bottom:179.226667pt;}
.y17{bottom:179.893333pt;}
.yb6{bottom:184.866667pt;}
.y53{bottom:187.560000pt;}
.y39{bottom:188.466667pt;}
.ya0{bottom:191.226667pt;}
.y43{bottom:193.560000pt;}
.y24{bottom:193.733333pt;}
.y1b{bottom:194.133333pt;}
.y8f{bottom:196.000000pt;}
.y87{bottom:198.266667pt;}
.y6f{bottom:200.866667pt;}
.ya3{bottom:202.266667pt;}
.y5a{bottom:206.373333pt;}
.y10{bottom:206.733333pt;}
.y16{bottom:208.933333pt;}
.y1a{bottom:210.173333pt;}
.yb5{bottom:211.893333pt;}
.y9f{bottom:218.266667pt;}
.y42{bottom:221.600000pt;}
.y23{bottom:224.773333pt;}
.y2f{bottom:225.533333pt;}
.y52{bottom:227.640000pt;}
.y6e{bottom:227.893333pt;}
.y38{bottom:230.533333pt;}
.y6{bottom:233.400000pt;}
.yf{bottom:236.773333pt;}
.yb4{bottom:238.933333pt;}
.y8e{bottom:251.066667pt;}
.ya2{bottom:252.626667pt;}
.y86{bottom:253.333333pt;}
.y22{bottom:254.840000pt;}
.y9e{bottom:255.306667pt;}
.y37{bottom:255.560000pt;}
.y41{bottom:258.626667pt;}
.y51{bottom:258.666667pt;}
.y63{bottom:262.306667pt;}
.y6d{bottom:265.933333pt;}
.y2e{bottom:275.600000pt;}
.yb3{bottom:276.000000pt;}
.y9d{bottom:282.360000pt;}
.y8d{bottom:283.106667pt;}
.y85{bottom:285.360000pt;}
.y21{bottom:286.866667pt;}
.y62{bottom:289.333333pt;}
.y80{bottom:290.506667pt;}
.y50{bottom:290.693333pt;}
.y36{bottom:297.600000pt;}
.y6c{bottom:303.000000pt;}
.yb2{bottom:303.026667pt;}
.y9c{bottom:309.400000pt;}
.y40{bottom:310.733333pt;}
.y4f{bottom:322.760000pt;}
.y2d{bottom:324.666667pt;}
.y61{bottom:326.373333pt;}
.yb1{bottom:330.066667pt;}
.y9b{bottom:336.440000pt;}
.y5b{bottom:337.466667pt;}
.y35{bottom:339.666667pt;}
.y3f{bottom:339.773333pt;}
.y6b{bottom:341.026667pt;}
.y20{bottom:346.933333pt;}
.yd{bottom:350.066667pt;}
.y60{bottom:353.400000pt;}
.y8c{bottom:354.440000pt;}
.y84{bottom:355.933333pt;}
.y4e{bottom:361.800000pt;}
.yb0{bottom:368.133333pt;}
.y9a{bottom:374.466667pt;}
.y2c{bottom:374.733333pt;}
.y6a{bottom:378.106667pt;}
.y7e{bottom:378.560000pt;}
.y5f{bottom:380.440000pt;}
.y34{bottom:380.733333pt;}
.y3e{bottom:392.840000pt;}
.y4d{bottom:393.840000pt;}
.yaf{bottom:395.173333pt;}
.y77{bottom:398.200000pt;}
.y2b{bottom:399.773333pt;}
.y7d{bottom:405.600000pt;}
.y1f{bottom:408.026667pt;}
.y99{bottom:411.533333pt;}
.y5e{bottom:417.506667pt;}
.yae{bottom:422.200000pt;}
.y33{bottom:422.800000pt;}
.y8b{bottom:425.733333pt;}
.y83{bottom:426.466667pt;}
.y13{bottom:431.800000pt;}
.y7c{bottom:432.640000pt;}
.y2a{bottom:433.800000pt;}
.y4c{bottom:433.893333pt;}
.y8{bottom:442.893333pt;}
.y69{bottom:443.200000pt;}
.y5d{bottom:444.533333pt;}
.yad{bottom:448.226667pt;}
.y98{bottom:449.560000pt;}
.y19{bottom:456.840000pt;}
.y3d{bottom:459.933333pt;}
.y12{bottom:461.866667pt;}
.y32{bottom:463.840000pt;}
.y4b{bottom:464.933333pt;}
.y1e{bottom:468.106667pt;}
.y7b{bottom:470.706667pt;}
.y18{bottom:472.866667pt;}
.y29{bottom:475.866667pt;}
.y7f{bottom:478.733333pt;}
.y68{bottom:481.226667pt;}
.y5c{bottom:482.600000pt;}
.yac{bottom:486.293333pt;}
.y97{bottom:486.640000pt;}
.y15{bottom:494.773333pt;}
.y7{bottom:495.960000pt;}
.y7a{bottom:496.733333pt;}
.y4a{bottom:497.000000pt;}
.y82{bottom:497.040000pt;}
.y3c{bottom:499.973333pt;}
.y58{bottom:502.933333pt;}
.y31{bottom:505.893333pt;}
.y28{bottom:508.893333pt;}
.yab{bottom:513.333333pt;}
.yb9{bottom:517.560000pt;}
.y67{bottom:518.306667pt;}
.y79{bottom:523.773333pt;}
.y96{bottom:524.706667pt;}
.y14{bottom:524.840000pt;}
.y1d{bottom:529.200000pt;}
.y73{bottom:532.000000pt;}
.y48{bottom:533.560000pt;}
.yb8{bottom:542.600000pt;}
.y81{bottom:542.640000pt;}
.y8a{bottom:542.706667pt;}
.y47{bottom:546.600000pt;}
.y27{bottom:551.973333pt;}
.y66{bottom:556.333333pt;}
.y78{bottom:561.800000pt;}
.y49{bottom:569.106667pt;}
.y75{bottom:569.533333pt;}
.y95{bottom:580.640000pt;}
.y64{bottom:584.640000pt;}
.y74{bottom:588.560000pt;}
.y55{bottom:590.640000pt;}
.y94{bottom:622.693333pt;}
.ye{bottom:624.693333pt;}
.y3b{bottom:624.733333pt;}
.ha{height:32.410612pt;}
.h1b{height:32.462891pt;}
.h1a{height:32.561263pt;}
.h2{height:33.193359pt;}
.h1{height:33.293945pt;}
.h2a{height:35.414063pt;}
.h3{height:39.466797pt;}
.h4{height:39.586393pt;}
.h20{height:43.054688pt;}
.h23{height:47.317122pt;}
.he{height:50.230469pt;}
.hd{height:50.350065pt;}
.h1d{height:53.937956pt;}
.h26{height:63.469727pt;}
.h22{height:65.667773pt;}
.h2b{height:66.462891pt;}
.h27{height:66.579492pt;}
.h25{height:68.169922pt;}
.hf{height:68.289518pt;}
.h1c{height:69.763477pt;}
.h9{height:72.522461pt;}
.h24{height:73.458984pt;}
.h1e{height:73.575586pt;}
.h29{height:75.345703pt;}
.hc{height:75.465299pt;}
.h21{height:77.133919pt;}
.h18{height:80.571680pt;}
.h19{height:82.641081pt;}
.h10{height:83.756185pt;}
.h7{height:84.069727pt;}
.h8{height:86.228971pt;}
.h16{height:93.404753pt;}
.h17{height:93.524349pt;}
.h14{height:96.992643pt;}
.h13{height:97.112240pt;}
.h12{height:114.932096pt;}
.h15{height:115.051693pt;}
.h1f{height:120.803711pt;}
.hb{height:120.904297pt;}
.h28{height:129.957031pt;}
.h11{height:143.754818pt;}
.h6{height:160.132812pt;}
.h5{height:178.338867pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.xf{left:51.033314pt;}
.x2{left:59.566648pt;}
.x3{left:60.633314pt;}
.x11{left:64.433314pt;}
.x16{left:70.633314pt;}
.x4a{left:81.833314pt;}
.x24{left:83.699981pt;}
.x12{left:87.133314pt;}
.x18{left:89.299981pt;}
.x17{left:93.299981pt;}
.x1b{left:95.166648pt;}
.x26{left:102.666648pt;}
.x13{left:109.799981pt;}
.x19{left:118.666648pt;}
.x9{left:129.033314pt;}
.x8{left:132.599981pt;}
.x33{left:142.826648pt;}
.x34{left:150.493314pt;}
.x1d{left:158.106648pt;}
.x1f{left:173.306648pt;}
.x32{left:196.893314pt;}
.x3b{left:217.266648pt;}
.x7{left:243.106648pt;}
.x35{left:270.439981pt;}
.x36{left:279.199981pt;}
.x50{left:285.399981pt;}
.x22{left:290.506648pt;}
.x21{left:295.399981pt;}
.xd{left:298.973314pt;}
.x20{left:300.733314pt;}
.x31{left:307.893314pt;}
.x2f{left:315.439981pt;}
.x30{left:317.173314pt;}
.x2e{left:318.733314pt;}
.x10{left:333.773314pt;}
.x51{left:387.933314pt;}
.x37{left:398.066648pt;}
.x38{left:405.733314pt;}
.xc{left:410.933314pt;}
.x4{left:440.399981pt;}
.x2c{left:469.306648pt;}
.x1e{left:481.039981pt;}
.x5{left:503.093314pt;}
.x39{left:525.666648pt;}
.x3a{left:534.426648pt;}
.x6{left:541.106648pt;}
.x28{left:566.733314pt;}
.x14{left:650.093314pt;}
.x15{left:672.799981pt;}
.x41{left:680.973314pt;}
.x52{left:685.133314pt;}
.x40{left:727.359981pt;}
.x4c{left:729.226648pt;}
.x42{left:800.906648pt;}
.x27{left:804.399981pt;}
.x43{left:809.666648pt;}
.x4d{left:812.799981pt;}
.x1a{left:817.439981pt;}
.x4e{left:835.466648pt;}
.x3f{left:838.373314pt;}
.x3e{left:847.626648pt;}
.x3c{left:849.199981pt;}
.x3d{left:850.559981pt;}
.xa{left:882.639981pt;}
.x48{left:913.439981pt;}
.x49{left:925.773314pt;}
.x44{left:928.533314pt;}
.x45{left:936.199981pt;}
.xb{left:952.039981pt;}
.x2d{left:983.399981pt;}
.x46{left:1056.133314pt;}
.x47{left:1064.906648pt;}
.x1{left:1067.066648pt;}
.x1c{left:1164.839981pt;}
.x2a{left:1173.933314pt;}
.x29{left:1182.533314pt;}
.x25{left:1184.839981pt;}
.x2b{left:1190.266648pt;}
.x4f{left:1191.973314pt;}
.x23{left:1199.599981pt;}
.xe{left:1209.933314pt;}
.x4b{left:1250.106648pt;}
}




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