
    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_bcfe81ed295433a794ef3741.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_e2c1aa2629d44de6b47b25d1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_57257d5df0a57136f37045c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_7a13874f7c27f1c5c6b4fcbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.722656;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.000436,-0.250000,0.250000,0.000436,0,0);-ms-transform:matrix(0.000436,-0.250000,0.250000,0.000436,0,0);-webkit-transform:matrix(0.000436,-0.250000,0.250000,0.000436,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.755488px;}
.ls5{letter-spacing:-0.909792px;}
.ls4{letter-spacing:-0.682344px;}
.ls5f{letter-spacing:-0.581256px;}
.ls60{letter-spacing:-0.564408px;}
.ls36{letter-spacing:-0.486000px;}
.ls6{letter-spacing:-0.381600px;}
.ls44{letter-spacing:-0.353808px;}
.ls7{letter-spacing:-0.345600px;}
.ls5c{letter-spacing:-0.345384px;}
.ls3c{letter-spacing:-0.324000px;}
.ls43{letter-spacing:-0.311688px;}
.ls49{letter-spacing:-0.307584px;}
.ls37{letter-spacing:-0.302400px;}
.ls40{letter-spacing:-0.286416px;}
.ls39{letter-spacing:-0.280800px;}
.ls27{letter-spacing:-0.277992px;}
.ls47{letter-spacing:-0.269568px;}
.ls50{letter-spacing:-0.269136px;}
.ls5a{letter-spacing:-0.261144px;}
.ls2f{letter-spacing:-0.259200px;}
.ls61{letter-spacing:-0.252720px;}
.lsd{letter-spacing:-0.249912px;}
.ls54{letter-spacing:-0.248976px;}
.lse{letter-spacing:-0.248400px;}
.ls5e{letter-spacing:-0.244296px;}
.ls33{letter-spacing:-0.230688px;}
.ls2a{letter-spacing:-0.227448px;}
.ls2e{letter-spacing:-0.226800px;}
.ls25{letter-spacing:-0.216000px;}
.ls63{letter-spacing:-0.211464px;}
.ls26{letter-spacing:-0.205200px;}
.ls1b{letter-spacing:-0.194400px;}
.ls55{letter-spacing:-0.192384px;}
.ls17{letter-spacing:-0.192240px;}
.ls22{letter-spacing:-0.183600px;}
.ls18{letter-spacing:-0.172800px;}
.ls23{letter-spacing:-0.162000px;}
.ls12{letter-spacing:-0.151200px;}
.ls2b{letter-spacing:-0.140400px;}
.ls11{letter-spacing:-0.129600px;}
.ls48{letter-spacing:-0.126360px;}
.ls1a{letter-spacing:-0.118800px;}
.ls46{letter-spacing:-0.117936px;}
.ls52{letter-spacing:-0.114912px;}
.ls24{letter-spacing:-0.108000px;}
.ls41{letter-spacing:-0.101088px;}
.ls3d{letter-spacing:-0.097200px;}
.lsc{letter-spacing:-0.095616px;}
.ls3f{letter-spacing:-0.092664px;}
.ls3a{letter-spacing:-0.086400px;}
.ls19{letter-spacing:-0.075600px;}
.ls45{letter-spacing:-0.067392px;}
.ls10{letter-spacing:-0.064800px;}
.ls34{letter-spacing:-0.054000px;}
.ls28{letter-spacing:-0.050544px;}
.ls51{letter-spacing:-0.047880px;}
.ls14{letter-spacing:-0.043200px;}
.ls15{letter-spacing:-0.032400px;}
.ls13{letter-spacing:-0.021600px;}
.ls42{letter-spacing:-0.016848px;}
.ls21{letter-spacing:-0.010800px;}
.lsb{letter-spacing:-0.005976px;}
.ls2d{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.008424px;}
.ls9{letter-spacing:0.010800px;}
.ls53{letter-spacing:0.019152px;}
.lsf{letter-spacing:0.021600px;}
.ls1c{letter-spacing:0.038448px;}
.ls5d{letter-spacing:0.042120px;}
.ls16{letter-spacing:0.043200px;}
.ls58{letter-spacing:0.047880px;}
.ls1f{letter-spacing:0.054000px;}
.ls4d{letter-spacing:0.057456px;}
.ls20{letter-spacing:0.064800px;}
.ls4a{letter-spacing:0.067032px;}
.ls3{letter-spacing:0.072000px;}
.ls4b{letter-spacing:0.114912px;}
.ls30{letter-spacing:0.118800px;}
.ls8{letter-spacing:0.137448px;}
.ls35{letter-spacing:0.140400px;}
.ls57{letter-spacing:0.143640px;}
.ls4f{letter-spacing:0.144288px;}
.ls1{letter-spacing:0.144936px;}
.ls0{letter-spacing:0.171288px;}
.ls56{letter-spacing:0.183600px;}
.ls62{letter-spacing:0.194400px;}
.ls2{letter-spacing:0.205200px;}
.ls2c{letter-spacing:0.216000px;}
.ls38{letter-spacing:0.237600px;}
.ls1e{letter-spacing:0.248400px;}
.ls1d{letter-spacing:0.268416px;}
.ls4c{letter-spacing:0.288576px;}
.ls4e{letter-spacing:0.316008px;}
.ls31{letter-spacing:0.345600px;}
.ls29{letter-spacing:0.361800px;}
.ls59{letter-spacing:0.507528px;}
.ls5b{letter-spacing:0.756504px;}
.ls32{letter-spacing:75.308400px;}
.ls3e{letter-spacing:78.511680px;}
.lsa{letter-spacing:124.200000px;}
.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;}
}
.ws62{word-spacing:-64.800000px;}
.ws64{word-spacing:-57.599640px;}
.ws1b{word-spacing:-53.481168px;}
.ws56{word-spacing:-33.715296px;}
.ws59{word-spacing:-33.571008px;}
.ws58{word-spacing:-33.234336px;}
.ws37{word-spacing:-30.142800px;}
.ws1e{word-spacing:-30.078000px;}
.ws76{word-spacing:-30.045600px;}
.ws1c{word-spacing:-30.034800px;}
.ws77{word-spacing:-29.894400px;}
.ws73{word-spacing:-29.883600px;}
.ws1d{word-spacing:-29.840400px;}
.ws4f{word-spacing:-29.818800px;}
.ws3d{word-spacing:-29.808000px;}
.ws3c{word-spacing:-29.743200px;}
.ws3b{word-spacing:-29.721600px;}
.ws69{word-spacing:-27.128808px;}
.ws55{word-spacing:-26.736192px;}
.ws54{word-spacing:-26.688312px;}
.ws57{word-spacing:-26.678736px;}
.ws53{word-spacing:-26.506368px;}
.ws41{word-spacing:-23.418720px;}
.ws29{word-spacing:-15.373800px;}
.ws0{word-spacing:-15.217200px;}
.ws39{word-spacing:-0.831600px;}
.ws22{word-spacing:-0.734400px;}
.ws33{word-spacing:-0.702000px;}
.ws74{word-spacing:-0.680400px;}
.ws27{word-spacing:-0.550800px;}
.ws1a{word-spacing:-0.496800px;}
.ws61{word-spacing:-0.486000px;}
.ws36{word-spacing:-0.378000px;}
.ws49{word-spacing:-0.370656px;}
.ws60{word-spacing:-0.367200px;}
.ws52{word-spacing:-0.356400px;}
.ws66{word-spacing:-0.345600px;}
.ws65{word-spacing:-0.334800px;}
.ws23{word-spacing:-0.324000px;}
.ws79{word-spacing:-0.313200px;}
.ws2f{word-spacing:-0.311688px;}
.ws4b{word-spacing:-0.294840px;}
.ws75{word-spacing:-0.291600px;}
.ws63{word-spacing:-0.270000px;}
.ws44{word-spacing:-0.269568px;}
.ws46{word-spacing:-0.261144px;}
.ws34{word-spacing:-0.259200px;}
.ws4c{word-spacing:-0.244296px;}
.ws51{word-spacing:-0.237600px;}
.ws4e{word-spacing:-0.235872px;}
.ws5e{word-spacing:-0.230688px;}
.ws20{word-spacing:-0.216000px;}
.ws78{word-spacing:-0.211464px;}
.ws9{word-spacing:-0.179280px;}
.ws30{word-spacing:-0.134784px;}
.ws71{word-spacing:-0.109512px;}
.ws6b{word-spacing:-0.101088px;}
.ws4d{word-spacing:-0.092664px;}
.ws2e{word-spacing:-0.084240px;}
.ws1f{word-spacing:-0.083880px;}
.ws6a{word-spacing:-0.076608px;}
.ws45{word-spacing:-0.075816px;}
.ws1{word-spacing:-0.052704px;}
.ws48{word-spacing:-0.050544px;}
.ws8{word-spacing:-0.035856px;}
.ws2{word-spacing:-0.026352px;}
.ws6d{word-spacing:-0.016848px;}
.ws6c{word-spacing:-0.009576px;}
.ws4a{word-spacing:-0.008424px;}
.wsb{word-spacing:0.000000px;}
.wsa{word-spacing:0.053784px;}
.ws5f{word-spacing:0.054000px;}
.ws14{word-spacing:0.057672px;}
.ws6{word-spacing:0.086400px;}
.ws38{word-spacing:0.096120px;}
.ws3e{word-spacing:0.097200px;}
.ws2a{word-spacing:0.115344px;}
.ws5a{word-spacing:0.134568px;}
.ws50{word-spacing:0.153792px;}
.ws3f{word-spacing:0.172800px;}
.ws67{word-spacing:0.183600px;}
.ws15{word-spacing:0.194400px;}
.ws25{word-spacing:0.216000px;}
.wsc{word-spacing:0.226800px;}
.ws72{word-spacing:0.237600px;}
.ws21{word-spacing:0.248400px;}
.ws11{word-spacing:0.259200px;}
.ws13{word-spacing:0.270000px;}
.ws12{word-spacing:0.280800px;}
.ws3a{word-spacing:0.291600px;}
.wse{word-spacing:0.302400px;}
.ws17{word-spacing:0.313200px;}
.ws40{word-spacing:0.324000px;}
.ws43{word-spacing:0.334800px;}
.ws24{word-spacing:0.345600px;}
.ws18{word-spacing:0.356400px;}
.wsf{word-spacing:0.367200px;}
.ws47{word-spacing:0.370656px;}
.ws32{word-spacing:0.378000px;}
.ws10{word-spacing:0.388800px;}
.ws28{word-spacing:0.399600px;}
.ws16{word-spacing:0.410400px;}
.ws26{word-spacing:0.421200px;}
.ws19{word-spacing:0.432000px;}
.ws5d{word-spacing:0.440496px;}
.ws2d{word-spacing:0.442800px;}
.ws2b{word-spacing:0.453600px;}
.ws2c{word-spacing:0.464400px;}
.wsd{word-spacing:0.486000px;}
.ws35{word-spacing:0.496800px;}
.ws7{word-spacing:0.504000px;}
.ws5{word-spacing:0.540000px;}
.ws42{word-spacing:0.561600px;}
.ws6e{word-spacing:0.598104px;}
.ws31{word-spacing:0.631800px;}
.ws68{word-spacing:0.718200px;}
.ws5b{word-spacing:0.804384px;}
.ws70{word-spacing:0.918216px;}
.ws6f{word-spacing:0.935064px;}
.ws5c{word-spacing:1.005480px;}
.ws3{word-spacing:1.036152px;}
.ws4{word-spacing:1.263600px;}
._4{margin-left:-78.865488px;}
._5{margin-left:-77.795640px;}
._1{margin-left:-1.261080px;}
._0{width:1.264896px;}
._3{width:70.372800px;}
._6{width:75.492000px;}
._2{width:78.789672px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,25);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fsb{font-size:84.240128px;}
.fs9{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs0{font-size:131.760000px;}
.fs7{font-size:167.760000px;}
.fs5{font-size:192.240000px;}
.fs8{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:21.841446px;}
.y8{bottom:40.020438px;}
.y7{bottom:58.020150px;}
.y8c{bottom:106.800000px;}
.yec{bottom:107.700000px;}
.yeb{bottom:112.019100px;}
.yb8{bottom:127.320930px;}
.y8b{bottom:130.020000px;}
.yd6{bottom:133.797300px;}
.y61{bottom:135.059100px;}
.y71{bottom:137.400000px;}
.yea{bottom:142.618200px;}
.ydf{bottom:144.420000px;}
.yc7{bottom:148.380900px;}
.y96{bottom:149.277300px;}
.y3f{bottom:149.279100px;}
.y13{bottom:149.459100px;}
.y32{bottom:154.320000px;}
.yad{bottom:156.302532px;}
.y2b{bottom:159.540000px;}
.y7d{bottom:160.980000px;}
.yd5{bottom:161.518200px;}
.y60{bottom:162.599100px;}
.y70{bottom:164.940000px;}
.ya2{bottom:164.940900px;}
.y55{bottom:167.817300px;}
.y1e{bottom:171.600900px;}
.yde{bottom:175.200000px;}
.y4a{bottom:176.100900px;}
.y95{bottom:176.817300px;}
.y3e{bottom:176.819100px;}
.yc6{bottom:178.980000px;}
.y31{bottom:185.100000px;}
.yd4{bottom:189.058200px;}
.ye9{bottom:189.957300px;}
.y5f{bottom:190.139100px;}
.y2a{bottom:190.320000px;}
.y7c{bottom:191.760000px;}
.ya1{bottom:194.100900px;}
.y12{bottom:196.439100px;}
.y6f{bottom:200.939652px;}
.y1d{bottom:202.380900px;}
.y94{bottom:204.357300px;}
.y3d{bottom:204.359100px;}
.yf4{bottom:204.898200px;}
.y49{bottom:206.880900px;}
.yc5{bottom:209.760000px;}
.y54{bottom:214.797300px;}
.yfa{bottom:215.699100px;}
.y30{bottom:215.880000px;}
.ybe{bottom:216.059304px;}
.yd3{bottom:216.598200px;}
.y29{bottom:221.100000px;}
.y6e{bottom:221.100390px;}
.ye8{bottom:222.357300px;}
.y7b{bottom:222.540000px;}
.ya0{bottom:224.880900px;}
.ydd{bottom:231.900000px;}
.y1c{bottom:232.980000px;}
.yf3{bottom:235.678200px;}
.y5e{bottom:237.119100px;}
.yc4{bottom:240.540000px;}
.y6d{bottom:241.080012px;}
.y53{bottom:242.518200px;}
.y11{bottom:243.600000px;}
.yd2{bottom:244.138200px;}
.yc0{bottom:247.379868px;}
.ya4{bottom:247.919100px;}
.y93{bottom:251.518200px;}
.y3c{bottom:251.520000px;}
.y2f{bottom:254.581578px;}
.y48{bottom:257.100900px;}
.y6c{bottom:261.240750px;}
.ydc{bottom:262.680000px;}
.y5d{bottom:264.659100px;}
.ye7{bottom:271.138200px;}
.y10{bottom:271.140000px;}
.y28{bottom:271.320000px;}
.yd1{bottom:271.678200px;}
.y7a{bottom:272.760000px;}
.y6{bottom:273.120000px;}
.y9f{bottom:275.100900px;}
.y92{bottom:279.058200px;}
.y3b{bottom:279.059100px;}
.y2e{bottom:282.300750px;}
.y1b{bottom:283.380900px;}
.yb7{bottom:286.260750px;}
.y47{bottom:287.880900px;}
.yc3{bottom:290.760000px;}
.yf2{bottom:292.559100px;}
.y6b{bottom:297.420000px;}
.yf9{bottom:299.399100px;}
.y5c{bottom:301.919100px;}
.y27{bottom:302.100000px;}
.ye6{bottom:303.538200px;}
.y79{bottom:303.540000px;}
.y9e{bottom:305.880900px;}
.y91{bottom:306.598200px;}
.y5{bottom:306.780000px;}
.ybc{bottom:307.500528px;}
.yac{bottom:311.282910px;}
.y1a{bottom:313.980000px;}
.y52{bottom:315.958200px;}
.yf{bottom:318.120000px;}
.y46{bottom:318.480000px;}
.yd0{bottom:318.658200px;}
.ydb{bottom:319.560900px;}
.y2d{bottom:321.540000px;}
.y82{bottom:322.620900px;}
.y88{bottom:324.060900px;}
.y6a{bottom:324.960000px;}
.y3a{bottom:326.039100px;}
.y78{bottom:334.320000px;}
.y9d{bottom:336.480000px;}
.yab{bottom:340.082730px;}
.y4{bottom:340.260000px;}
.y5b{bottom:344.220000px;}
.ycf{bottom:346.379100px;}
.yf1{bottom:349.259100px;}
.yaf{bottom:349.981530px;}
.yda{bottom:350.160000px;}
.yb5{bottom:351.241080px;}
.y51{bottom:351.779100px;}
.y26{bottom:352.320000px;}
.y90{bottom:353.578200px;}
.y39{bottom:353.579100px;}
.y69{bottom:360.960390px;}
.yb9{bottom:361.826700px;}
.ye5{bottom:361.858200px;}
.y19{bottom:364.380900px;}
.ye{bottom:365.280900px;}
.y9c{bottom:367.260000px;}
.y45{bottom:368.880900px;}
.yaa{bottom:369.062100px;}
.y81{bottom:370.320900px;}
.y87{bottom:371.580900px;}
.y5a{bottom:371.760000px;}
.yce{bottom:373.919100px;}
.yae{bottom:378.960900px;}
.yb4{bottom:380.040900px;}
.y68{bottom:380.940012px;}
.y8f{bottom:381.118200px;}
.y38{bottom:381.119100px;}
.y25{bottom:383.100000px;}
.yf8{bottom:383.280000px;}
.y77{bottom:384.540000px;}
.ybd{bottom:387.060330px;}
.y50{bottom:387.600000px;}
.y3{bottom:392.280750px;}
.y18{bottom:394.980000px;}
.ya9{bottom:397.861920px;}
.yf0{bottom:399.479100px;}
.y44{bottom:399.480000px;}
.y67{bottom:401.100750px;}
.yd9{bottom:407.040900px;}
.y8e{bottom:408.658200px;}
.y59{bottom:409.018200px;}
.yd{bottom:412.260900px;}
.yf7{bottom:414.060000px;}
.y76{bottom:415.320000px;}
.y9b{bottom:417.480000px;}
.y80{bottom:418.020900px;}
.ybf{bottom:418.380750px;}
.ye4{bottom:418.739100px;}
.y86{bottom:419.280900px;}
.ycd{bottom:420.899100px;}
.y17{bottom:425.760000px;}
.ya8{bottom:426.661740px;}
.y37{bottom:428.280000px;}
.y43{bottom:430.260000px;}
.y4f{bottom:432.779100px;}
.y24{bottom:433.320000px;}
.y66{bottom:437.279100px;}
.y75{bottom:446.100000px;}
.y9a{bottom:448.260000px;}
.ycc{bottom:448.439100px;}
.ye3{bottom:449.519100px;}
.yef{bottom:449.880000px;}
.y58{bottom:451.319100px;}
.yd8{bottom:454.380000px;}
.ya7{bottom:455.641110px;}
.y8d{bottom:455.819100px;}
.y36{bottom:455.820000px;}
.y16{bottom:456.540000px;}
.yc{bottom:459.419100px;}
.y4e{bottom:460.319100px;}
.y42{bottom:461.040000px;}
.y23{bottom:464.100000px;}
.y65{bottom:464.819100px;}
.y7f{bottom:465.540900px;}
.y85{bottom:466.800900px;}
.ybb{bottom:472.559646px;}
.ycb{bottom:475.979100px;}
.y74{bottom:476.880000px;}
.y57{bottom:478.859100px;}
.yee{bottom:480.479100px;}
.y35{bottom:483.359100px;}
.ya6{bottom:484.440930px;}
.yd7{bottom:486.780000px;}
.y2{bottom:490.380402px;}
.y64{bottom:492.359100px;}
.y22{bottom:494.880000px;}
.yf6{bottom:497.760000px;}
.y99{bottom:498.480000px;}
.yb2{bottom:498.481530px;}
.yc1{bottom:502.260624px;}
.ye2{bottom:506.219100px;}
.y15{bottom:506.760000px;}
.y4d{bottom:507.299100px;}
.y41{bottom:511.260000px;}
.y7e{bottom:513.240900px;}
.ya5{bottom:513.420300px;}
.y2c{bottom:514.320000px;}
.y84{bottom:514.500900px;}
.y1{bottom:522.058800px;}
.yca{bottom:523.140000px;}
.y56{bottom:526.020000px;}
.y73{bottom:527.100000px;}
.yb1{bottom:527.460900px;}
.yf5{bottom:528.540000px;}
.y98{bottom:529.260000px;}
.y34{bottom:530.520000px;}
.yed{bottom:530.880000px;}
.y4c{bottom:535.020000px;}
.yba{bottom:535.560150px;}
.ye1{bottom:536.999100px;}
.y14{bottom:537.540000px;}
.y63{bottom:539.520000px;}
.y40{bottom:542.040000px;}
.y21{bottom:545.100000px;}
.yc9{bottom:550.680000px;}
.yb{bottom:553.560000px;}
.y72{bottom:557.880000px;}
.y33{bottom:558.060000px;}
.y97{bottom:560.040000px;}
.y4b{bottom:562.560000px;}
.yb6{bottom:563.820750px;}
.y83{bottom:564.900150px;}
.y8a{bottom:566.160150px;}
.y62{bottom:567.060000px;}
.y89{bottom:567.780150px;}
.y20{bottom:575.880000px;}
.ya3{bottom:577.500000px;}
.yc8{bottom:578.220000px;}
.yb0{bottom:580.379550px;}
.ye0{bottom:593.880000px;}
.yb3{bottom:627.001026px;}
.yc2{bottom:628.260498px;}
.y1f{bottom:698.463300px;}
.ya{bottom:700.623300px;}
.h4{height:62.327813px;}
.hd{height:69.201563px;}
.h3{height:75.093750px;}
.h2{height:87.859687px;}
.he{height:87.859821px;}
.hc{height:93.936445px;}
.ha{height:99.874688px;}
.h6{height:112.640625px;}
.h8{height:112.644225px;}
.h9{height:112.647825px;}
.hb{height:125.406562px;}
.h1{height:137.421562px;}
.h5{height:200.500313px;}
.h7{height:225.282450px;}
.h0{height:805.500000px;}
.w0{width:1075.500000px;}
.x0{left:0.000000px;}
.x10{left:52.140000px;}
.xd{left:54.300000px;}
.x13{left:58.800000px;}
.xb{left:61.140000px;}
.x1f{left:69.419028px;}
.x17{left:73.020000px;}
.x37{left:83.640000px;}
.x11{left:92.640000px;}
.xe{left:94.800000px;}
.x14{left:99.300000px;}
.xc{left:101.640000px;}
.x22{left:106.860000px;}
.x12{left:108.300000px;}
.x34{left:112.800000px;}
.x20{left:119.100000px;}
.x38{left:124.140000px;}
.x23{left:136.740000px;}
.x33{left:142.139100px;}
.x35{left:146.639100px;}
.x1e{left:153.300000px;}
.x21{left:159.599298px;}
.xf{left:162.300000px;}
.xa{left:165.360000px;}
.x15{left:166.800000px;}
.x24{left:171.479334px;}
.x16{left:193.801026px;}
.x1{left:206.940000px;}
.x25{left:264.359352px;}
.x31{left:303.419568px;}
.x36{left:331.680000px;}
.x5{left:380.820000px;}
.x2{left:384.239550px;}
.x3{left:393.240000px;}
.x30{left:397.920000px;}
.x18{left:410.340000px;}
.x2f{left:417.359460px;}
.x6{left:418.800000px;}
.x19{left:439.680000px;}
.x2e{left:466.860198px;}
.x28{left:469.920000px;}
.x4{left:494.760000px;}
.x1d{left:514.920000px;}
.x2b{left:546.420000px;}
.x7{left:572.520000px;}
.x29{left:657.299082px;}
.x9{left:674.221062px;}
.x26{left:686.460000px;}
.x1c{left:732.540000px;}
.x27{left:735.599244px;}
.x1a{left:759.720000px;}
.x8{left:791.580738px;}
.x32{left:805.799550px;}
.x1b{left:814.620000px;}
.x2d{left:855.301062px;}
.x2c{left:900.301080px;}
.x2a{left:942.060450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.115989pt;}
.ls5{letter-spacing:-0.808704pt;}
.ls4{letter-spacing:-0.606528pt;}
.ls5f{letter-spacing:-0.516672pt;}
.ls60{letter-spacing:-0.501696pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls6{letter-spacing:-0.339200pt;}
.ls44{letter-spacing:-0.314496pt;}
.ls7{letter-spacing:-0.307200pt;}
.ls5c{letter-spacing:-0.307008pt;}
.ls3c{letter-spacing:-0.288000pt;}
.ls43{letter-spacing:-0.277056pt;}
.ls49{letter-spacing:-0.273408pt;}
.ls37{letter-spacing:-0.268800pt;}
.ls40{letter-spacing:-0.254592pt;}
.ls39{letter-spacing:-0.249600pt;}
.ls27{letter-spacing:-0.247104pt;}
.ls47{letter-spacing:-0.239616pt;}
.ls50{letter-spacing:-0.239232pt;}
.ls5a{letter-spacing:-0.232128pt;}
.ls2f{letter-spacing:-0.230400pt;}
.ls61{letter-spacing:-0.224640pt;}
.lsd{letter-spacing:-0.222144pt;}
.ls54{letter-spacing:-0.221312pt;}
.lse{letter-spacing:-0.220800pt;}
.ls5e{letter-spacing:-0.217152pt;}
.ls33{letter-spacing:-0.205056pt;}
.ls2a{letter-spacing:-0.202176pt;}
.ls2e{letter-spacing:-0.201600pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls63{letter-spacing:-0.187968pt;}
.ls26{letter-spacing:-0.182400pt;}
.ls1b{letter-spacing:-0.172800pt;}
.ls55{letter-spacing:-0.171008pt;}
.ls17{letter-spacing:-0.170880pt;}
.ls22{letter-spacing:-0.163200pt;}
.ls18{letter-spacing:-0.153600pt;}
.ls23{letter-spacing:-0.144000pt;}
.ls12{letter-spacing:-0.134400pt;}
.ls2b{letter-spacing:-0.124800pt;}
.ls11{letter-spacing:-0.115200pt;}
.ls48{letter-spacing:-0.112320pt;}
.ls1a{letter-spacing:-0.105600pt;}
.ls46{letter-spacing:-0.104832pt;}
.ls52{letter-spacing:-0.102144pt;}
.ls24{letter-spacing:-0.096000pt;}
.ls41{letter-spacing:-0.089856pt;}
.ls3d{letter-spacing:-0.086400pt;}
.lsc{letter-spacing:-0.084992pt;}
.ls3f{letter-spacing:-0.082368pt;}
.ls3a{letter-spacing:-0.076800pt;}
.ls19{letter-spacing:-0.067200pt;}
.ls45{letter-spacing:-0.059904pt;}
.ls10{letter-spacing:-0.057600pt;}
.ls34{letter-spacing:-0.048000pt;}
.ls28{letter-spacing:-0.044928pt;}
.ls51{letter-spacing:-0.042560pt;}
.ls14{letter-spacing:-0.038400pt;}
.ls15{letter-spacing:-0.028800pt;}
.ls13{letter-spacing:-0.019200pt;}
.ls42{letter-spacing:-0.014976pt;}
.ls21{letter-spacing:-0.009600pt;}
.lsb{letter-spacing:-0.005312pt;}
.ls2d{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.007488pt;}
.ls9{letter-spacing:0.009600pt;}
.ls53{letter-spacing:0.017024pt;}
.lsf{letter-spacing:0.019200pt;}
.ls1c{letter-spacing:0.034176pt;}
.ls5d{letter-spacing:0.037440pt;}
.ls16{letter-spacing:0.038400pt;}
.ls58{letter-spacing:0.042560pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls4d{letter-spacing:0.051072pt;}
.ls20{letter-spacing:0.057600pt;}
.ls4a{letter-spacing:0.059584pt;}
.ls3{letter-spacing:0.064000pt;}
.ls4b{letter-spacing:0.102144pt;}
.ls30{letter-spacing:0.105600pt;}
.ls8{letter-spacing:0.122176pt;}
.ls35{letter-spacing:0.124800pt;}
.ls57{letter-spacing:0.127680pt;}
.ls4f{letter-spacing:0.128256pt;}
.ls1{letter-spacing:0.128832pt;}
.ls0{letter-spacing:0.152256pt;}
.ls56{letter-spacing:0.163200pt;}
.ls62{letter-spacing:0.172800pt;}
.ls2{letter-spacing:0.182400pt;}
.ls2c{letter-spacing:0.192000pt;}
.ls38{letter-spacing:0.211200pt;}
.ls1e{letter-spacing:0.220800pt;}
.ls1d{letter-spacing:0.238592pt;}
.ls4c{letter-spacing:0.256512pt;}
.ls4e{letter-spacing:0.280896pt;}
.ls31{letter-spacing:0.307200pt;}
.ls29{letter-spacing:0.321600pt;}
.ls59{letter-spacing:0.451136pt;}
.ls5b{letter-spacing:0.672448pt;}
.ls32{letter-spacing:66.940800pt;}
.ls3e{letter-spacing:69.788160pt;}
.lsa{letter-spacing:110.400000pt;}
.ws62{word-spacing:-57.600000pt;}
.ws64{word-spacing:-51.199680pt;}
.ws1b{word-spacing:-47.538816pt;}
.ws56{word-spacing:-29.969152pt;}
.ws59{word-spacing:-29.840896pt;}
.ws58{word-spacing:-29.541632pt;}
.ws37{word-spacing:-26.793600pt;}
.ws1e{word-spacing:-26.736000pt;}
.ws76{word-spacing:-26.707200pt;}
.ws1c{word-spacing:-26.697600pt;}
.ws77{word-spacing:-26.572800pt;}
.ws73{word-spacing:-26.563200pt;}
.ws1d{word-spacing:-26.524800pt;}
.ws4f{word-spacing:-26.505600pt;}
.ws3d{word-spacing:-26.496000pt;}
.ws3c{word-spacing:-26.438400pt;}
.ws3b{word-spacing:-26.419200pt;}
.ws69{word-spacing:-24.114496pt;}
.ws55{word-spacing:-23.765504pt;}
.ws54{word-spacing:-23.722944pt;}
.ws57{word-spacing:-23.714432pt;}
.ws53{word-spacing:-23.561216pt;}
.ws41{word-spacing:-20.816640pt;}
.ws29{word-spacing:-13.665600pt;}
.ws0{word-spacing:-13.526400pt;}
.ws39{word-spacing:-0.739200pt;}
.ws22{word-spacing:-0.652800pt;}
.ws33{word-spacing:-0.624000pt;}
.ws74{word-spacing:-0.604800pt;}
.ws27{word-spacing:-0.489600pt;}
.ws1a{word-spacing:-0.441600pt;}
.ws61{word-spacing:-0.432000pt;}
.ws36{word-spacing:-0.336000pt;}
.ws49{word-spacing:-0.329472pt;}
.ws60{word-spacing:-0.326400pt;}
.ws52{word-spacing:-0.316800pt;}
.ws66{word-spacing:-0.307200pt;}
.ws65{word-spacing:-0.297600pt;}
.ws23{word-spacing:-0.288000pt;}
.ws79{word-spacing:-0.278400pt;}
.ws2f{word-spacing:-0.277056pt;}
.ws4b{word-spacing:-0.262080pt;}
.ws75{word-spacing:-0.259200pt;}
.ws63{word-spacing:-0.240000pt;}
.ws44{word-spacing:-0.239616pt;}
.ws46{word-spacing:-0.232128pt;}
.ws34{word-spacing:-0.230400pt;}
.ws4c{word-spacing:-0.217152pt;}
.ws51{word-spacing:-0.211200pt;}
.ws4e{word-spacing:-0.209664pt;}
.ws5e{word-spacing:-0.205056pt;}
.ws20{word-spacing:-0.192000pt;}
.ws78{word-spacing:-0.187968pt;}
.ws9{word-spacing:-0.159360pt;}
.ws30{word-spacing:-0.119808pt;}
.ws71{word-spacing:-0.097344pt;}
.ws6b{word-spacing:-0.089856pt;}
.ws4d{word-spacing:-0.082368pt;}
.ws2e{word-spacing:-0.074880pt;}
.ws1f{word-spacing:-0.074560pt;}
.ws6a{word-spacing:-0.068096pt;}
.ws45{word-spacing:-0.067392pt;}
.ws1{word-spacing:-0.046848pt;}
.ws48{word-spacing:-0.044928pt;}
.ws8{word-spacing:-0.031872pt;}
.ws2{word-spacing:-0.023424pt;}
.ws6d{word-spacing:-0.014976pt;}
.ws6c{word-spacing:-0.008512pt;}
.ws4a{word-spacing:-0.007488pt;}
.wsb{word-spacing:0.000000pt;}
.wsa{word-spacing:0.047808pt;}
.ws5f{word-spacing:0.048000pt;}
.ws14{word-spacing:0.051264pt;}
.ws6{word-spacing:0.076800pt;}
.ws38{word-spacing:0.085440pt;}
.ws3e{word-spacing:0.086400pt;}
.ws2a{word-spacing:0.102528pt;}
.ws5a{word-spacing:0.119616pt;}
.ws50{word-spacing:0.136704pt;}
.ws3f{word-spacing:0.153600pt;}
.ws67{word-spacing:0.163200pt;}
.ws15{word-spacing:0.172800pt;}
.ws25{word-spacing:0.192000pt;}
.wsc{word-spacing:0.201600pt;}
.ws72{word-spacing:0.211200pt;}
.ws21{word-spacing:0.220800pt;}
.ws11{word-spacing:0.230400pt;}
.ws13{word-spacing:0.240000pt;}
.ws12{word-spacing:0.249600pt;}
.ws3a{word-spacing:0.259200pt;}
.wse{word-spacing:0.268800pt;}
.ws17{word-spacing:0.278400pt;}
.ws40{word-spacing:0.288000pt;}
.ws43{word-spacing:0.297600pt;}
.ws24{word-spacing:0.307200pt;}
.ws18{word-spacing:0.316800pt;}
.wsf{word-spacing:0.326400pt;}
.ws47{word-spacing:0.329472pt;}
.ws32{word-spacing:0.336000pt;}
.ws10{word-spacing:0.345600pt;}
.ws28{word-spacing:0.355200pt;}
.ws16{word-spacing:0.364800pt;}
.ws26{word-spacing:0.374400pt;}
.ws19{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.391552pt;}
.ws2d{word-spacing:0.393600pt;}
.ws2b{word-spacing:0.403200pt;}
.ws2c{word-spacing:0.412800pt;}
.wsd{word-spacing:0.432000pt;}
.ws35{word-spacing:0.441600pt;}
.ws7{word-spacing:0.448000pt;}
.ws5{word-spacing:0.480000pt;}
.ws42{word-spacing:0.499200pt;}
.ws6e{word-spacing:0.531648pt;}
.ws31{word-spacing:0.561600pt;}
.ws68{word-spacing:0.638400pt;}
.ws5b{word-spacing:0.715008pt;}
.ws70{word-spacing:0.816192pt;}
.ws6f{word-spacing:0.831168pt;}
.ws5c{word-spacing:0.893760pt;}
.ws3{word-spacing:0.921024pt;}
.ws4{word-spacing:1.123200pt;}
._4{margin-left:-70.102656pt;}
._5{margin-left:-69.151680pt;}
._1{margin-left:-1.120960pt;}
._0{width:1.124352pt;}
._3{width:62.553600pt;}
._6{width:67.104000pt;}
._2{width:70.035264pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fsb{font-size:74.880114pt;}
.fs9{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs0{font-size:117.120000pt;}
.fs7{font-size:149.120000pt;}
.fs5{font-size:170.880000pt;}
.fs8{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:19.414619pt;}
.y8{bottom:35.573723pt;}
.y7{bottom:51.573467pt;}
.y8c{bottom:94.933333pt;}
.yec{bottom:95.733333pt;}
.yeb{bottom:99.572533pt;}
.yb8{bottom:113.174160pt;}
.y8b{bottom:115.573333pt;}
.yd6{bottom:118.930933pt;}
.y61{bottom:120.052533pt;}
.y71{bottom:122.133333pt;}
.yea{bottom:126.771733pt;}
.ydf{bottom:128.373333pt;}
.yc7{bottom:131.894133pt;}
.y96{bottom:132.690933pt;}
.y3f{bottom:132.692533pt;}
.y13{bottom:132.852533pt;}
.y32{bottom:137.173333pt;}
.yad{bottom:138.935584pt;}
.y2b{bottom:141.813333pt;}
.y7d{bottom:143.093333pt;}
.yd5{bottom:143.571733pt;}
.y60{bottom:144.532533pt;}
.y70{bottom:146.613333pt;}
.ya2{bottom:146.614133pt;}
.y55{bottom:149.170933pt;}
.y1e{bottom:152.534133pt;}
.yde{bottom:155.733333pt;}
.y4a{bottom:156.534133pt;}
.y95{bottom:157.170933pt;}
.y3e{bottom:157.172533pt;}
.yc6{bottom:159.093333pt;}
.y31{bottom:164.533333pt;}
.yd4{bottom:168.051733pt;}
.ye9{bottom:168.850933pt;}
.y5f{bottom:169.012533pt;}
.y2a{bottom:169.173333pt;}
.y7c{bottom:170.453333pt;}
.ya1{bottom:172.534133pt;}
.y12{bottom:174.612533pt;}
.y6f{bottom:178.613024pt;}
.y1d{bottom:179.894133pt;}
.y94{bottom:181.650933pt;}
.y3d{bottom:181.652533pt;}
.yf4{bottom:182.131733pt;}
.y49{bottom:183.894133pt;}
.yc5{bottom:186.453333pt;}
.y54{bottom:190.930933pt;}
.yfa{bottom:191.732533pt;}
.y30{bottom:191.893333pt;}
.ybe{bottom:192.052715pt;}
.yd3{bottom:192.531733pt;}
.y29{bottom:196.533333pt;}
.y6e{bottom:196.533680pt;}
.ye8{bottom:197.650933pt;}
.y7b{bottom:197.813333pt;}
.ya0{bottom:199.894133pt;}
.ydd{bottom:206.133333pt;}
.y1c{bottom:207.093333pt;}
.yf3{bottom:209.491733pt;}
.y5e{bottom:210.772533pt;}
.yc4{bottom:213.813333pt;}
.y6d{bottom:214.293344pt;}
.y53{bottom:215.571733pt;}
.y11{bottom:216.533333pt;}
.yd2{bottom:217.011733pt;}
.yc0{bottom:219.893216pt;}
.ya4{bottom:220.372533pt;}
.y93{bottom:223.571733pt;}
.y3c{bottom:223.573333pt;}
.y2f{bottom:226.294736pt;}
.y48{bottom:228.534133pt;}
.y6c{bottom:232.214000pt;}
.ydc{bottom:233.493333pt;}
.y5d{bottom:235.252533pt;}
.ye7{bottom:241.011733pt;}
.y10{bottom:241.013333pt;}
.y28{bottom:241.173333pt;}
.yd1{bottom:241.491733pt;}
.y7a{bottom:242.453333pt;}
.y6{bottom:242.773333pt;}
.y9f{bottom:244.534133pt;}
.y92{bottom:248.051733pt;}
.y3b{bottom:248.052533pt;}
.y2e{bottom:250.934000pt;}
.y1b{bottom:251.894133pt;}
.yb7{bottom:254.454000pt;}
.y47{bottom:255.894133pt;}
.yc3{bottom:258.453333pt;}
.yf2{bottom:260.052533pt;}
.y6b{bottom:264.373333pt;}
.yf9{bottom:266.132533pt;}
.y5c{bottom:268.372533pt;}
.y27{bottom:268.533333pt;}
.ye6{bottom:269.811733pt;}
.y79{bottom:269.813333pt;}
.y9e{bottom:271.894133pt;}
.y91{bottom:272.531733pt;}
.y5{bottom:272.693333pt;}
.ybc{bottom:273.333803pt;}
.yac{bottom:276.695920pt;}
.y1a{bottom:279.093333pt;}
.y52{bottom:280.851733pt;}
.yf{bottom:282.773333pt;}
.y46{bottom:283.093333pt;}
.yd0{bottom:283.251733pt;}
.ydb{bottom:284.054133pt;}
.y2d{bottom:285.813333pt;}
.y82{bottom:286.774133pt;}
.y88{bottom:288.054133pt;}
.y6a{bottom:288.853333pt;}
.y3a{bottom:289.812533pt;}
.y78{bottom:297.173333pt;}
.y9d{bottom:299.093333pt;}
.yab{bottom:302.295760pt;}
.y4{bottom:302.453333pt;}
.y5b{bottom:305.973333pt;}
.ycf{bottom:307.892533pt;}
.yf1{bottom:310.452533pt;}
.yaf{bottom:311.094693pt;}
.yda{bottom:311.253333pt;}
.yb5{bottom:312.214293pt;}
.y51{bottom:312.692533pt;}
.y26{bottom:313.173333pt;}
.y90{bottom:314.291733pt;}
.y39{bottom:314.292533pt;}
.y69{bottom:320.853680pt;}
.yb9{bottom:321.623733pt;}
.ye5{bottom:321.651733pt;}
.y19{bottom:323.894133pt;}
.ye{bottom:324.694133pt;}
.y9c{bottom:326.453333pt;}
.y45{bottom:327.894133pt;}
.yaa{bottom:328.055200pt;}
.y81{bottom:329.174133pt;}
.y87{bottom:330.294133pt;}
.y5a{bottom:330.453333pt;}
.yce{bottom:332.372533pt;}
.yae{bottom:336.854133pt;}
.yb4{bottom:337.814133pt;}
.y68{bottom:338.613344pt;}
.y8f{bottom:338.771733pt;}
.y38{bottom:338.772533pt;}
.y25{bottom:340.533333pt;}
.yf8{bottom:340.693333pt;}
.y77{bottom:341.813333pt;}
.ybd{bottom:344.053627pt;}
.y50{bottom:344.533333pt;}
.y3{bottom:348.694000pt;}
.y18{bottom:351.093333pt;}
.ya9{bottom:353.655040pt;}
.yf0{bottom:355.092533pt;}
.y44{bottom:355.093333pt;}
.y67{bottom:356.534000pt;}
.yd9{bottom:361.814133pt;}
.y8e{bottom:363.251733pt;}
.y59{bottom:363.571733pt;}
.yd{bottom:366.454133pt;}
.yf7{bottom:368.053333pt;}
.y76{bottom:369.173333pt;}
.y9b{bottom:371.093333pt;}
.y80{bottom:371.574133pt;}
.ybf{bottom:371.894000pt;}
.ye4{bottom:372.212533pt;}
.y86{bottom:372.694133pt;}
.ycd{bottom:374.132533pt;}
.y17{bottom:378.453333pt;}
.ya8{bottom:379.254880pt;}
.y37{bottom:380.693333pt;}
.y43{bottom:382.453333pt;}
.y4f{bottom:384.692533pt;}
.y24{bottom:385.173333pt;}
.y66{bottom:388.692533pt;}
.y75{bottom:396.533333pt;}
.y9a{bottom:398.453333pt;}
.ycc{bottom:398.612533pt;}
.ye3{bottom:399.572533pt;}
.yef{bottom:399.893333pt;}
.y58{bottom:401.172533pt;}
.yd8{bottom:403.893333pt;}
.ya7{bottom:405.014320pt;}
.y8d{bottom:405.172533pt;}
.y36{bottom:405.173333pt;}
.y16{bottom:405.813333pt;}
.yc{bottom:408.372533pt;}
.y4e{bottom:409.172533pt;}
.y42{bottom:409.813333pt;}
.y23{bottom:412.533333pt;}
.y65{bottom:413.172533pt;}
.y7f{bottom:413.814133pt;}
.y85{bottom:414.934133pt;}
.ybb{bottom:420.053019pt;}
.ycb{bottom:423.092533pt;}
.y74{bottom:423.893333pt;}
.y57{bottom:425.652533pt;}
.yee{bottom:427.092533pt;}
.y35{bottom:429.652533pt;}
.ya6{bottom:430.614160pt;}
.yd7{bottom:432.693333pt;}
.y2{bottom:435.893691pt;}
.y64{bottom:437.652533pt;}
.y22{bottom:439.893333pt;}
.yf6{bottom:442.453333pt;}
.y99{bottom:443.093333pt;}
.yb2{bottom:443.094693pt;}
.yc1{bottom:446.453888pt;}
.ye2{bottom:449.972533pt;}
.y15{bottom:450.453333pt;}
.y4d{bottom:450.932533pt;}
.y41{bottom:454.453333pt;}
.y7e{bottom:456.214133pt;}
.ya5{bottom:456.373600pt;}
.y2c{bottom:457.173333pt;}
.y84{bottom:457.334133pt;}
.y1{bottom:464.052267pt;}
.yca{bottom:465.013333pt;}
.y56{bottom:467.573333pt;}
.y73{bottom:468.533333pt;}
.yb1{bottom:468.854133pt;}
.yf5{bottom:469.813333pt;}
.y98{bottom:470.453333pt;}
.y34{bottom:471.573333pt;}
.yed{bottom:471.893333pt;}
.y4c{bottom:475.573333pt;}
.yba{bottom:476.053467pt;}
.ye1{bottom:477.332533pt;}
.y14{bottom:477.813333pt;}
.y63{bottom:479.573333pt;}
.y40{bottom:481.813333pt;}
.y21{bottom:484.533333pt;}
.yc9{bottom:489.493333pt;}
.yb{bottom:492.053333pt;}
.y72{bottom:495.893333pt;}
.y33{bottom:496.053333pt;}
.y97{bottom:497.813333pt;}
.y4b{bottom:500.053333pt;}
.yb6{bottom:501.174000pt;}
.y83{bottom:502.133467pt;}
.y8a{bottom:503.253467pt;}
.y62{bottom:504.053333pt;}
.y89{bottom:504.693467pt;}
.y20{bottom:511.893333pt;}
.ya3{bottom:513.333333pt;}
.yc8{bottom:513.973333pt;}
.yb0{bottom:515.892933pt;}
.ye0{bottom:527.893333pt;}
.yb3{bottom:557.334245pt;}
.yc2{bottom:558.453776pt;}
.y1f{bottom:620.856267pt;}
.ya{bottom:622.776267pt;}
.h4{height:55.402500pt;}
.hd{height:61.512500pt;}
.h3{height:66.750000pt;}
.h2{height:78.097500pt;}
.he{height:78.097619pt;}
.hc{height:83.499062pt;}
.ha{height:88.777500pt;}
.h6{height:100.125000pt;}
.h8{height:100.128200pt;}
.h9{height:100.131400pt;}
.hb{height:111.472500pt;}
.h1{height:122.152500pt;}
.h5{height:178.222500pt;}
.h7{height:200.251067pt;}
.h0{height:716.000000pt;}
.w0{width:956.000000pt;}
.x0{left:0.000000pt;}
.x10{left:46.346667pt;}
.xd{left:48.266667pt;}
.x13{left:52.266667pt;}
.xb{left:54.346667pt;}
.x1f{left:61.705803pt;}
.x17{left:64.906667pt;}
.x37{left:74.346667pt;}
.x11{left:82.346667pt;}
.xe{left:84.266667pt;}
.x14{left:88.266667pt;}
.xc{left:90.346667pt;}
.x22{left:94.986667pt;}
.x12{left:96.266667pt;}
.x34{left:100.266667pt;}
.x20{left:105.866667pt;}
.x38{left:110.346667pt;}
.x23{left:121.546667pt;}
.x33{left:126.345867pt;}
.x35{left:130.345867pt;}
.x1e{left:136.266667pt;}
.x21{left:141.866043pt;}
.xf{left:144.266667pt;}
.xa{left:146.986667pt;}
.x15{left:148.266667pt;}
.x24{left:152.426075pt;}
.x16{left:172.267579pt;}
.x1{left:183.946667pt;}
.x25{left:234.986091pt;}
.x31{left:269.706283pt;}
.x36{left:294.826667pt;}
.x5{left:338.506667pt;}
.x2{left:341.546267pt;}
.x3{left:349.546667pt;}
.x30{left:353.706667pt;}
.x18{left:364.746667pt;}
.x2f{left:370.986187pt;}
.x6{left:372.266667pt;}
.x19{left:390.826667pt;}
.x2e{left:414.986843pt;}
.x28{left:417.706667pt;}
.x4{left:439.786667pt;}
.x1d{left:457.706667pt;}
.x2b{left:485.706667pt;}
.x7{left:508.906667pt;}
.x29{left:584.265851pt;}
.x9{left:599.307611pt;}
.x26{left:610.186667pt;}
.x1c{left:651.146667pt;}
.x27{left:653.865995pt;}
.x1a{left:675.306667pt;}
.x8{left:703.627323pt;}
.x32{left:716.266267pt;}
.x1b{left:724.106667pt;}
.x2d{left:760.267611pt;}
.x2c{left:800.267627pt;}
.x2a{left:837.387067pt;}
}




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