
    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_e9b89fed1e62414d879f6220.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_f8b8757910a42b41bf7e195e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166000;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_a69ee858d0b2c16453c553e1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_8a8bc94f34cedc2fb46f6761.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_5cc9ab1cdfb26f4026ab6c6a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064000;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_bb3ec22c3b3f5fb224e61d16.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.202148;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_77ddfbad7ea7ad47cfa91974.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;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_06426a3018cc4e35b70ede72.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_17eabbc2b039f8df878ad872.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.171000;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_20e86bb53464b55114f37034.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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:ffb;src:url('chunks/assets/font_5aa02f57eb740814059ed105.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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:ffc;src:url('chunks/assets/font_122f677bb4603a400b980845.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.157000;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:ffd;src:url('chunks/assets/font_674e8bbffc6bcfdb1d7aa57e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.157000;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);}
.m2{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);}
.v1{vertical-align:-17.100000px;}
.v2{vertical-align:-12.528000px;}
.v3{vertical-align:-7.920000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.760000px;}
.v4{vertical-align:7.920000px;}
.ls12{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.338400px;}
.ls2a{letter-spacing:-0.298200px;}
.ls21{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.265200px;}
.ls25{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.084000px;}
.lsb{letter-spacing:-0.072600px;}
.ls1a{letter-spacing:-0.072000px;}
.ls2b{letter-spacing:-0.059040px;}
.ls1d{letter-spacing:-0.023040px;}
.ls20{letter-spacing:-0.018000px;}
.ls8{letter-spacing:-0.012240px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000714px;}
.ls22{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.046080px;}
.ls10{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.115200px;}
.ls1c{letter-spacing:0.118800px;}
.ls2d{letter-spacing:0.121200px;}
.ls11{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.217440px;}
.ls1{letter-spacing:0.235200px;}
.ls18{letter-spacing:0.240048px;}
.lsc{letter-spacing:0.247800px;}
.ls27{letter-spacing:0.264600px;}
.ls19{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.337440px;}
.ls2c{letter-spacing:0.349800px;}
.lse{letter-spacing:1.008000px;}
.ls2{letter-spacing:1.699200px;}
.ls4{letter-spacing:1.728000px;}
.ls16{letter-spacing:56.621376px;}
.ls17{letter-spacing:56.665440px;}
.ls9{letter-spacing:65.916000px;}
.ls7{letter-spacing:84.317184px;}
.ls6{letter-spacing:84.360960px;}
.ls24{letter-spacing:111.549600px;}
.ls23{letter-spacing:111.600000px;}
.ls15{letter-spacing:115.833600px;}
.ls14{letter-spacing:115.884000px;}
.lsa{letter-spacing:719.832000px;}
.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;}
}
.ws15{word-spacing:-124.270272px;}
.ws14{word-spacing:-124.195680px;}
.wsb{word-spacing:-68.251680px;}
.ws0{word-spacing:-64.828800px;}
.ws16{word-spacing:-49.603680px;}
.wsd{word-spacing:-47.980800px;}
.ws13{word-spacing:-36.288000px;}
.ws11{word-spacing:-36.036000px;}
.wsf{word-spacing:-36.000000px;}
.ws12{word-spacing:-35.964000px;}
.ws3{word-spacing:-33.580800px;}
.ws4{word-spacing:-33.552000px;}
.ws5{word-spacing:-32.215800px;}
.ws2e{word-spacing:-28.800000px;}
.ws2d{word-spacing:-28.656000px;}
.ws1f{word-spacing:-27.206784px;}
.ws20{word-spacing:-27.174240px;}
.wsc{word-spacing:-26.352000px;}
.ws8{word-spacing:-24.624000px;}
.wsa{word-spacing:-24.584544px;}
.ws6{word-spacing:-24.480000px;}
.ws9{word-spacing:-24.440544px;}
.ws7{word-spacing:-24.408000px;}
.ws1{word-spacing:-24.048000px;}
.ws34{word-spacing:-23.113728px;}
.ws1b{word-spacing:-21.641760px;}
.ws17{word-spacing:-19.270800px;}
.ws18{word-spacing:-19.152000px;}
.ws19{word-spacing:-19.128960px;}
.ws24{word-spacing:-16.304544px;}
.ws23{word-spacing:-16.272000px;}
.ws3a{word-spacing:-2.095200px;}
.ws3c{word-spacing:-1.098720px;}
.ws39{word-spacing:-1.001280px;}
.ws30{word-spacing:-0.888000px;}
.ws36{word-spacing:-0.727200px;}
.ws31{word-spacing:-0.552000px;}
.ws3b{word-spacing:-0.518760px;}
.ws35{word-spacing:-0.277920px;}
.ws2{word-spacing:0.000000px;}
.ws38{word-spacing:0.365760px;}
.ws37{word-spacing:0.861840px;}
.ws32{word-spacing:0.864000px;}
.ws2f{word-spacing:1.008000px;}
.ws1a{word-spacing:18.642000px;}
.ws26{word-spacing:19.008000px;}
.ws27{word-spacing:30.480000px;}
.ws1d{word-spacing:32.442000px;}
.ws33{word-spacing:41.757858px;}
.ws2c{word-spacing:41.940000px;}
.ws2b{word-spacing:43.104000px;}
.ws25{word-spacing:65.268000px;}
.ws22{word-spacing:79.854000px;}
.ws29{word-spacing:80.815440px;}
.ws2a{word-spacing:84.348000px;}
.ws28{word-spacing:93.220080px;}
.ws21{word-spacing:93.438000px;}
.ws1e{word-spacing:162.762000px;}
.ws1c{word-spacing:184.784880px;}
.wse{word-spacing:978.816000px;}
.ws10{word-spacing:1339.392000px;}
._5{margin-left:-5.004960px;}
._6{margin-left:-2.532480px;}
._1{margin-left:-1.487520px;}
._0{width:1.152000px;}
._2{width:2.516400px;}
._3{width:3.836160px;}
._d{width:5.477472px;}
._1b{width:21.803232px;}
._1a{width:22.835904px;}
._19{width:27.240000px;}
._18{width:29.100000px;}
._13{width:44.508000px;}
._12{width:58.308000px;}
._7{width:67.381680px;}
._14{width:72.168000px;}
._17{width:116.362320px;}
._16{width:119.382000px;}
._11{width:139.222560px;}
._15{width:188.628000px;}
._10{width:196.480128px;}
._e{width:220.932000px;}
._c{width:256.672128px;}
._9{width:257.739600px;}
._a{width:305.344128px;}
._8{width:307.312560px;}
._b{width:323.929008px;}
._f{width:671.472048px;}
._4{width:2299.454400px;}
.fca{color:rgb(153,204,221);}
.fc4{color:transparent;}
.fc2{color:rgb(7,65,110);}
.fc1{color:rgb(215,233,230);}
.fc9{color:rgb(64,64,64);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(0,176,80);}
.fc6{color:rgb(33,150,241);}
.fc5{color:rgb(0,0,0);}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(255,255,255);}
.fs21{font-size:48.240000px;}
.fs22{font-size:48.384000px;}
.fs1c{font-size:54.000000px;}
.fs1e{font-size:54.144000px;}
.fs19{font-size:59.760000px;}
.fs1f{font-size:72.000000px;}
.fs20{font-size:72.144000px;}
.fs18{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs1d{font-size:95.904000px;}
.fsf{font-size:108.000000px;}
.fs12{font-size:108.144000px;}
.fs10{font-size:112.320000px;}
.fs14{font-size:113.760000px;}
.fs13{font-size:113.904000px;}
.fs3{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs15{font-size:131.760000px;}
.fs16{font-size:131.904000px;}
.fs2{font-size:144.000000px;}
.fs17{font-size:144.144000px;}
.fse{font-size:159.840000px;}
.fs5{font-size:167.760000px;}
.fs6{font-size:167.904000px;}
.fs7{font-size:174.384000px;}
.fs1a{font-size:192.240000px;}
.fs1b{font-size:192.384000px;}
.fsa{font-size:216.000000px;}
.fs9{font-size:216.144000px;}
.fs11{font-size:239.760000px;}
.fs8{font-size:239.904000px;}
.fsc{font-size:257.760000px;}
.fsd{font-size:257.904000px;}
.fs1{font-size:324.000000px;}
.fs0{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:12.816000px;}
.ya9{bottom:13.248000px;}
.yc3{bottom:13.320000px;}
.yf{bottom:20.592000px;}
.yb{bottom:20.988000px;}
.y9b{bottom:22.824000px;}
.ydd{bottom:49.680000px;}
.yd2{bottom:50.790000px;}
.yc4{bottom:51.630000px;}
.ye7{bottom:51.765000px;}
.yce{bottom:51.810000px;}
.yb9{bottom:52.200000px;}
.yae{bottom:55.545000px;}
.y93{bottom:67.530000px;}
.y3a{bottom:71.352000px;}
.ya5{bottom:74.340000px;}
.y78{bottom:75.240000px;}
.yaa{bottom:77.940000px;}
.yaf{bottom:84.630000px;}
.yde{bottom:95.760000px;}
.yc5{bottom:95.790000px;}
.yba{bottom:96.375000px;}
.yd3{bottom:96.840000px;}
.y92{bottom:97.740000px;}
.yd1{bottom:103.320000px;}
.ya4{bottom:115.920000px;}
.y77{bottom:118.440000px;}
.yb8{bottom:119.340000px;}
.y95{bottom:120.060000px;}
.y9d{bottom:123.090000px;}
.y71{bottom:131.832000px;}
.y5a{bottom:139.716000px;}
.yc6{bottom:139.965000px;}
.ybb{bottom:140.550000px;}
.ydf{bottom:141.810000px;}
.yd4{bottom:142.920000px;}
.y94{bottom:149.370000px;}
.y7{bottom:149.796000px;}
.y2a{bottom:151.200000px;}
.y9c{bottom:152.385000px;}
.y76{bottom:161.670000px;}
.ya{bottom:171.645000px;}
.y59{bottom:172.110000px;}
.y84{bottom:175.350000px;}
.ya6{bottom:178.305000px;}
.y70{bottom:178.665000px;}
.y1c{bottom:180.975000px;}
.yab{bottom:181.905000px;}
.yc7{bottom:184.110000px;}
.ybc{bottom:184.680000px;}
.ye0{bottom:187.845000px;}
.yd5{bottom:188.970000px;}
.yf5{bottom:194.835000px;}
.y29{bottom:198.720000px;}
.y101{bottom:199.335000px;}
.y9{bottom:204.045000px;}
.y58{bottom:204.555000px;}
.y75{bottom:204.870000px;}
.y25{bottom:206.670000px;}
.y97{bottom:225.435000px;}
.y1b{bottom:226.365000px;}
.y36{bottom:227.850000px;}
.yc8{bottom:228.270000px;}
.ybd{bottom:228.855000px;}
.ye1{bottom:233.895000px;}
.y9f{bottom:234.435000px;}
.yd6{bottom:235.005000px;}
.y57{bottom:236.955000px;}
.y6{bottom:237.270000px;}
.yf4{bottom:237.855000px;}
.y28{bottom:246.270000px;}
.y74{bottom:248.070000px;}
.y8{bottom:253.005000px;}
.y24{bottom:254.190000px;}
.y6f{bottom:254.625000px;}
.y96{bottom:254.775000px;}
.yb1{bottom:258.225000px;}
.y35{bottom:260.250000px;}
.y9e{bottom:263.775000px;}
.y56{bottom:269.355000px;}
.y1a{bottom:271.725000px;}
.yc9{bottom:272.445000px;}
.ybe{bottom:273.030000px;}
.ye2{bottom:279.975000px;}
.yd7{bottom:281.055000px;}
.yb0{bottom:281.370000px;}
.ya7{bottom:282.270000px;}
.yac{bottom:285.840000px;}
.yb7{bottom:286.845000px;}
.y83{bottom:290.340000px;}
.y73{bottom:291.270000px;}
.y34{bottom:292.650000px;}
.y44{bottom:293.070000px;}
.y100{bottom:294.015000px;}
.y65{bottom:295.815000px;}
.y6e{bottom:301.425000px;}
.y23{bottom:301.710000px;}
.y55{bottom:301.755000px;}
.y7e{bottom:307.695000px;}
.yca{bottom:316.590000px;}
.y19{bottom:317.085000px;}
.ybf{bottom:317.190000px;}
.y5{bottom:324.795000px;}
.ye3{bottom:326.010000px;}
.yff{bottom:326.415000px;}
.yd8{bottom:327.090000px;}
.y64{bottom:328.215000px;}
.y13{bottom:329.685000px;}
.y99{bottom:330.915000px;}
.y33{bottom:334.080000px;}
.y54{bottom:334.155000px;}
.yb6{bottom:337.245000px;}
.y43{bottom:338.430000px;}
.ycf{bottom:344.415000px;}
.ya1{bottom:345.885000px;}
.y6d{bottom:348.045000px;}
.y22{bottom:349.230000px;}
.yd0{bottom:349.890000px;}
.y3e{bottom:354.855000px;}
.ye8{bottom:355.710000px;}
.y98{bottom:360.210000px;}
.ycb{bottom:360.750000px;}
.ye9{bottom:361.185000px;}
.yc0{bottom:361.335000px;}
.y18{bottom:362.445000px;}
.y32{bottom:366.480000px;}
.y53{bottom:366.585000px;}
.yf3{bottom:367.485000px;}
.y7d{bottom:367.995000px;}
.ye4{bottom:372.060000px;}
.yd9{bottom:373.170000px;}
.yfe{bottom:373.965000px;}
.ya0{bottom:375.195000px;}
.y12{bottom:380.085000px;}
.y42{bottom:383.790000px;}
.ya8{bottom:386.250000px;}
.yb5{bottom:387.645000px;}
.yad{bottom:389.805000px;}
.y21{bottom:396.795000px;}
.y31{bottom:398.880000px;}
.y52{bottom:398.985000px;}
.y8d{bottom:399.240000px;}
.ycc{bottom:404.925000px;}
.y82{bottom:405.360000px;}
.yc1{bottom:405.510000px;}
.yfd{bottom:406.365000px;}
.y17{bottom:407.850000px;}
.yf2{bottom:410.685000px;}
.y63{bottom:410.835000px;}
.y4{bottom:412.275000px;}
.y7c{bottom:413.385000px;}
.ye5{bottom:418.110000px;}
.yec{bottom:419.040000px;}
.yda{bottom:419.220000px;}
.y3d{bottom:419.655000px;}
.y2b{bottom:422.280000px;}
.y6c{bottom:424.230000px;}
.y11{bottom:430.485000px;}
.y51{bottom:431.385000px;}
.y9a{bottom:431.895000px;}
.y72{bottom:437.760000px;}
.yb4{bottom:438.045000px;}
.yfc{bottom:438.765000px;}
.y20{bottom:444.315000px;}
.ye{bottom:444.990000px;}
.ycd{bottom:449.100000px;}
.yc2{bottom:449.670000px;}
.ya2{bottom:449.895000px;}
.y16{bottom:453.210000px;}
.yf1{bottom:453.885000px;}
.y62{bottom:456.225000px;}
.y50{bottom:463.785000px;}
.ye6{bottom:464.145000px;}
.ydb{bottom:465.270000px;}
.y6b{bottom:470.850000px;}
.y7b{bottom:473.865000px;}
.y41{bottom:475.455000px;}
.y10{bottom:480.885000px;}
.y30{bottom:481.680000px;}
.yfb{bottom:486.105000px;}
.yd{bottom:490.395000px;}
.y1f{bottom:491.835000px;}
.y81{bottom:495.720000px;}
.y4f{bottom:496.185000px;}
.yf0{bottom:497.085000px;}
.y15{bottom:498.570000px;}
.y3{bottom:499.785000px;}
.y2f{bottom:514.110000px;}
.y6a{bottom:517.470000px;}
.y8c{bottom:518.250000px;}
.yfa{bottom:518.550000px;}
.y8f{bottom:518.790000px;}
.y7a{bottom:519.225000px;}
.y40{bottom:520.815000px;}
.y4e{bottom:528.585000px;}
.yc{bottom:535.755000px;}
.yef{bottom:540.285000px;}
.y3b{bottom:544.530000px;}
.y2e{bottom:546.510000px;}
.y61{bottom:546.945000px;}
.y8b{bottom:549.930000px;}
.yf9{bottom:550.950000px;}
.y4d{bottom:561.030000px;}
.y80{bottom:561.495000px;}
.y69{bottom:564.300000px;}
.y86{bottom:568.365000px;}
.y27{bottom:570.960000px;}
.y8a{bottom:581.610000px;}
.yf8{bottom:583.350000px;}
.yee{bottom:583.530000px;}
.y2{bottom:587.265000px;}
.y14{bottom:591.300000px;}
.y39{bottom:592.230000px;}
.y4c{bottom:593.430000px;}
.y48{bottom:593.970000px;}
.y1e{bottom:594.720000px;}
.y68{bottom:610.920000px;}
.y3f{bottom:612.435000px;}
.y26{bottom:618.480000px;}
.y4b{bottom:625.830000px;}
.y47{bottom:626.370000px;}
.yed{bottom:626.730000px;}
.y89{bottom:631.470000px;}
.yf7{bottom:632.310000px;}
.y85{bottom:633.165000px;}
.y79{bottom:633.420000px;}
.y2d{bottom:634.575000px;}
.y91{bottom:649.155000px;}
.yb3{bottom:649.545000px;}
.y67{bottom:657.540000px;}
.y4a{bottom:658.230000px;}
.y46{bottom:658.770000px;}
.y8e{bottom:659.310000px;}
.y88{bottom:660.315000px;}
.yeb{bottom:663.450000px;}
.yf6{bottom:671.190000px;}
.y1{bottom:674.790000px;}
.ya3{bottom:675.075000px;}
.y7f{bottom:681.810000px;}
.y5f{bottom:683.970000px;}
.y87{bottom:689.115000px;}
.y37{bottom:689.505000px;}
.y49{bottom:690.630000px;}
.y45{bottom:691.170000px;}
.y38{bottom:691.845000px;}
.y2c{bottom:692.925000px;}
.y90{bottom:700.995000px;}
.yb2{bottom:707.145000px;}
.yea{bottom:721.050000px;}
.y5e{bottom:731.850000px;}
.y66{bottom:735.870000px;}
.y5d{bottom:736.485000px;}
.y5c{bottom:736.560000px;}
.y60{bottom:737.355000px;}
.y1d{bottom:740.805000px;}
.y3c{bottom:745.350000px;}
.y5b{bottom:769.530000px;}
.h34{height:47.980898px;}
.h35{height:48.124125px;}
.h27{height:53.709961px;}
.h30{height:53.853187px;}
.h31{height:71.613281px;}
.h32{height:71.756508px;}
.h5{height:83.694240px;}
.h23{height:89.015508px;}
.h21{height:92.626875px;}
.h22{height:92.727422px;}
.h28{height:95.245664px;}
.h29{height:95.388891px;}
.h12{height:96.145920px;}
.h18{height:97.378560px;}
.h17{height:97.501824px;}
.h11{height:102.479344px;}
.h4{height:105.089760px;}
.hd{height:105.215616px;}
.h15{height:110.583984px;}
.h16{height:110.731430px;}
.h1a{height:112.786560px;}
.h1d{height:112.909824px;}
.h1b{height:115.158240px;}
.h1c{height:115.284096px;}
.h2a{height:119.594180px;}
.h2e{height:119.737406px;}
.h9{height:123.264000px;}
.h3{height:125.856000px;}
.h1e{height:125.981856px;}
.h10{height:136.823040px;}
.h2d{height:143.226562px;}
.h36{height:143.369789px;}
.h13{height:143.602560px;}
.h19{height:143.725824px;}
.h6{height:146.622240px;}
.h7{height:146.748096px;}
.h8{height:149.272704px;}
.h24{height:164.557440px;}
.h25{height:164.680704px;}
.h20{height:166.858945px;}
.h1f{height:167.002172px;}
.hc{height:184.896000px;}
.hb{height:185.019264px;}
.h14{height:205.234560px;}
.ha{height:205.357824px;}
.he{height:220.642560px;}
.hf{height:220.765824px;}
.h2{height:277.344000px;}
.h1{height:277.467264px;}
.h2c{height:467.100000px;}
.h26{height:471.960000px;}
.h2b{height:489.960000px;}
.h2f{height:492.840000px;}
.h33{height:508.860000px;}
.h0{height:810.000000px;}
.w5{width:630.000000px;}
.w2{width:678.240000px;}
.w3{width:678.420000px;}
.w4{width:812.880000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x41{left:9.756000px;}
.x37{left:10.799979px;}
.x5d{left:25.848000px;}
.x3c{left:29.160000px;}
.x40{left:32.112000px;}
.xa{left:33.551979px;}
.x51{left:37.365000px;}
.x24{left:47.843979px;}
.x42{left:51.084000px;}
.x2e{left:54.251979px;}
.x1c{left:58.535979px;}
.x5c{left:70.524000px;}
.x54{left:72.540000px;}
.x52{left:73.980000px;}
.x34{left:81.683979px;}
.x18{left:85.751979px;}
.x23{left:87.875979px;}
.x1d{left:91.367979px;}
.x35{left:95.471979px;}
.x1e{left:98.207979px;}
.x46{left:99.900000px;}
.x50{left:110.955000px;}
.x19{left:112.967979px;}
.x43{left:116.640000px;}
.x2c{left:132.803979px;}
.x1{left:136.835979px;}
.x69{left:139.463979px;}
.x5a{left:147.525000px;}
.x3f{left:155.490000px;}
.x3e{left:156.630000px;}
.x5b{left:158.655000px;}
.x4e{left:161.100000px;}
.x1a{left:173.804979px;}
.xd{left:180.389979px;}
.x67{left:184.710000px;}
.x47{left:195.300000px;}
.x4f{left:196.920000px;}
.x1b{left:200.804979px;}
.x44{left:212.655000px;}
.xe{left:214.229979px;}
.xc{left:225.539979px;}
.x32{left:231.809979px;}
.x59{left:236.625000px;}
.x66{left:252.720000px;}
.x56{left:256.395000px;}
.x33{left:258.809979px;}
.x63{left:271.800000px;}
.x61{left:278.850000px;}
.x17{left:286.349979px;}
.x4d{left:307.080000px;}
.x8{left:310.214979px;}
.x64{left:314.025000px;}
.x1f{left:315.719979px;}
.x7{left:317.054979px;}
.x3a{left:320.324979px;}
.x65{left:328.110000px;}
.x58{left:329.760000px;}
.x3d{left:331.485000px;}
.x5{left:345.089979px;}
.x22{left:346.889979px;}
.x62{left:349.200000px;}
.x4{left:367.409979px;}
.x29{left:372.419979px;}
.x60{left:377.355000px;}
.x27{left:383.294979px;}
.x21{left:385.199979px;}
.x53{left:391.859979px;}
.x68{left:419.969979px;}
.x38{left:424.409979px;}
.x48{left:428.189979px;}
.x57{left:432.465000px;}
.x31{left:434.954979px;}
.x28{left:443.054979px;}
.xb{left:462.209979px;}
.x2b{left:464.399979px;}
.x3b{left:466.349979px;}
.x26{left:506.774979px;}
.x6{left:511.949979px;}
.x39{left:526.289979px;}
.x2f{left:531.509979px;}
.x36{left:543.959979px;}
.x11{left:557.204979px;}
.x4a{left:558.900000px;}
.x5f{left:574.380000px;}
.x55{left:579.165000px;}
.x4c{left:580.710000px;}
.x10{left:589.709979px;}
.x12{left:591.044979px;}
.xf{left:593.489979px;}
.x9{left:607.604979px;}
.x20{left:611.129979px;}
.x2a{left:615.629979px;}
.x2d{left:634.349979px;}
.x30{left:730.904979px;}
.x4b{left:738.870000px;}
.x49{left:746.385000px;}
.x5e{left:750.960000px;}
.x45{left:761.580000px;}
.x25{left:782.999979px;}
.x15{left:933.989979px;}
.x16{left:967.829979px;}
.x13{left:970.634979px;}
.x14{left:1001.414979px;}
.x2{left:1084.709979px;}
.x3{left:1297.979979px;}
@media print{
.v1{vertical-align:-15.200000pt;}
.v2{vertical-align:-11.136000pt;}
.v3{vertical-align:-7.040000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.453333pt;}
.v4{vertical-align:7.040000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.300800pt;}
.ls2a{letter-spacing:-0.265067pt;}
.ls21{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.235733pt;}
.ls25{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.074667pt;}
.lsb{letter-spacing:-0.064533pt;}
.ls1a{letter-spacing:-0.064000pt;}
.ls2b{letter-spacing:-0.052480pt;}
.ls1d{letter-spacing:-0.020480pt;}
.ls20{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:-0.010880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000635pt;}
.ls22{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.040960pt;}
.ls10{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.102400pt;}
.ls1c{letter-spacing:0.105600pt;}
.ls2d{letter-spacing:0.107733pt;}
.ls11{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.193280pt;}
.ls1{letter-spacing:0.209067pt;}
.ls18{letter-spacing:0.213376pt;}
.lsc{letter-spacing:0.220267pt;}
.ls27{letter-spacing:0.235200pt;}
.ls19{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.299947pt;}
.ls2c{letter-spacing:0.310933pt;}
.lse{letter-spacing:0.896000pt;}
.ls2{letter-spacing:1.510400pt;}
.ls4{letter-spacing:1.536000pt;}
.ls16{letter-spacing:50.330112pt;}
.ls17{letter-spacing:50.369280pt;}
.ls9{letter-spacing:58.592000pt;}
.ls7{letter-spacing:74.948608pt;}
.ls6{letter-spacing:74.987520pt;}
.ls24{letter-spacing:99.155200pt;}
.ls23{letter-spacing:99.200000pt;}
.ls15{letter-spacing:102.963200pt;}
.ls14{letter-spacing:103.008000pt;}
.lsa{letter-spacing:639.850667pt;}
.ws15{word-spacing:-110.462464pt;}
.ws14{word-spacing:-110.396160pt;}
.wsb{word-spacing:-60.668160pt;}
.ws0{word-spacing:-57.625600pt;}
.ws16{word-spacing:-44.092160pt;}
.wsd{word-spacing:-42.649600pt;}
.ws13{word-spacing:-32.256000pt;}
.ws11{word-spacing:-32.032000pt;}
.wsf{word-spacing:-32.000000pt;}
.ws12{word-spacing:-31.968000pt;}
.ws3{word-spacing:-29.849600pt;}
.ws4{word-spacing:-29.824000pt;}
.ws5{word-spacing:-28.636267pt;}
.ws2e{word-spacing:-25.600000pt;}
.ws2d{word-spacing:-25.472000pt;}
.ws1f{word-spacing:-24.183808pt;}
.ws20{word-spacing:-24.154880pt;}
.wsc{word-spacing:-23.424000pt;}
.ws8{word-spacing:-21.888000pt;}
.wsa{word-spacing:-21.852928pt;}
.ws6{word-spacing:-21.760000pt;}
.ws9{word-spacing:-21.724928pt;}
.ws7{word-spacing:-21.696000pt;}
.ws1{word-spacing:-21.376000pt;}
.ws34{word-spacing:-20.545536pt;}
.ws1b{word-spacing:-19.237120pt;}
.ws17{word-spacing:-17.129600pt;}
.ws18{word-spacing:-17.024000pt;}
.ws19{word-spacing:-17.003520pt;}
.ws24{word-spacing:-14.492928pt;}
.ws23{word-spacing:-14.464000pt;}
.ws3a{word-spacing:-1.862400pt;}
.ws3c{word-spacing:-0.976640pt;}
.ws39{word-spacing:-0.890027pt;}
.ws30{word-spacing:-0.789333pt;}
.ws36{word-spacing:-0.646400pt;}
.ws31{word-spacing:-0.490667pt;}
.ws3b{word-spacing:-0.461120pt;}
.ws35{word-spacing:-0.247040pt;}
.ws2{word-spacing:0.000000pt;}
.ws38{word-spacing:0.325120pt;}
.ws37{word-spacing:0.766080pt;}
.ws32{word-spacing:0.768000pt;}
.ws2f{word-spacing:0.896000pt;}
.ws1a{word-spacing:16.570667pt;}
.ws26{word-spacing:16.896000pt;}
.ws27{word-spacing:27.093333pt;}
.ws1d{word-spacing:28.837333pt;}
.ws33{word-spacing:37.118096pt;}
.ws2c{word-spacing:37.280000pt;}
.ws2b{word-spacing:38.314667pt;}
.ws25{word-spacing:58.016000pt;}
.ws22{word-spacing:70.981333pt;}
.ws29{word-spacing:71.835947pt;}
.ws2a{word-spacing:74.976000pt;}
.ws28{word-spacing:82.862293pt;}
.ws21{word-spacing:83.056000pt;}
.ws1e{word-spacing:144.677333pt;}
.ws1c{word-spacing:164.253227pt;}
.wse{word-spacing:870.058667pt;}
.ws10{word-spacing:1190.570667pt;}
._5{margin-left:-4.448853pt;}
._6{margin-left:-2.251093pt;}
._1{margin-left:-1.322240pt;}
._0{width:1.024000pt;}
._2{width:2.236800pt;}
._3{width:3.409920pt;}
._d{width:4.868864pt;}
._1b{width:19.380651pt;}
._1a{width:20.298581pt;}
._19{width:24.213333pt;}
._18{width:25.866667pt;}
._13{width:39.562667pt;}
._12{width:51.829333pt;}
._7{width:59.894827pt;}
._14{width:64.149333pt;}
._17{width:103.433173pt;}
._16{width:106.117333pt;}
._11{width:123.753387pt;}
._15{width:167.669333pt;}
._10{width:174.649003pt;}
._e{width:196.384000pt;}
._c{width:228.153003pt;}
._9{width:229.101867pt;}
._a{width:271.417003pt;}
._8{width:273.166720pt;}
._b{width:287.936896pt;}
._f{width:596.864043pt;}
._4{width:2043.959467pt;}
.fs21{font-size:42.880000pt;}
.fs22{font-size:43.008000pt;}
.fs1c{font-size:48.000000pt;}
.fs1e{font-size:48.128000pt;}
.fs19{font-size:53.120000pt;}
.fs1f{font-size:64.000000pt;}
.fs20{font-size:64.128000pt;}
.fs18{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs1d{font-size:85.248000pt;}
.fsf{font-size:96.000000pt;}
.fs12{font-size:96.128000pt;}
.fs10{font-size:99.840000pt;}
.fs14{font-size:101.120000pt;}
.fs13{font-size:101.248000pt;}
.fs3{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs15{font-size:117.120000pt;}
.fs16{font-size:117.248000pt;}
.fs2{font-size:128.000000pt;}
.fs17{font-size:128.128000pt;}
.fse{font-size:142.080000pt;}
.fs5{font-size:149.120000pt;}
.fs6{font-size:149.248000pt;}
.fs7{font-size:155.008000pt;}
.fs1a{font-size:170.880000pt;}
.fs1b{font-size:171.008000pt;}
.fsa{font-size:192.000000pt;}
.fs9{font-size:192.128000pt;}
.fs11{font-size:213.120000pt;}
.fs8{font-size:213.248000pt;}
.fsc{font-size:229.120000pt;}
.fsd{font-size:229.248000pt;}
.fs1{font-size:288.000000pt;}
.fs0{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:11.392000pt;}
.ya9{bottom:11.776000pt;}
.yc3{bottom:11.840000pt;}
.yf{bottom:18.304000pt;}
.yb{bottom:18.656000pt;}
.y9b{bottom:20.288000pt;}
.ydd{bottom:44.160000pt;}
.yd2{bottom:45.146667pt;}
.yc4{bottom:45.893333pt;}
.ye7{bottom:46.013333pt;}
.yce{bottom:46.053333pt;}
.yb9{bottom:46.400000pt;}
.yae{bottom:49.373333pt;}
.y93{bottom:60.026667pt;}
.y3a{bottom:63.424000pt;}
.ya5{bottom:66.080000pt;}
.y78{bottom:66.880000pt;}
.yaa{bottom:69.280000pt;}
.yaf{bottom:75.226667pt;}
.yde{bottom:85.120000pt;}
.yc5{bottom:85.146667pt;}
.yba{bottom:85.666667pt;}
.yd3{bottom:86.080000pt;}
.y92{bottom:86.880000pt;}
.yd1{bottom:91.840000pt;}
.ya4{bottom:103.040000pt;}
.y77{bottom:105.280000pt;}
.yb8{bottom:106.080000pt;}
.y95{bottom:106.720000pt;}
.y9d{bottom:109.413333pt;}
.y71{bottom:117.184000pt;}
.y5a{bottom:124.192000pt;}
.yc6{bottom:124.413333pt;}
.ybb{bottom:124.933333pt;}
.ydf{bottom:126.053333pt;}
.yd4{bottom:127.040000pt;}
.y94{bottom:132.773333pt;}
.y7{bottom:133.152000pt;}
.y2a{bottom:134.400000pt;}
.y9c{bottom:135.453333pt;}
.y76{bottom:143.706667pt;}
.ya{bottom:152.573333pt;}
.y59{bottom:152.986667pt;}
.y84{bottom:155.866667pt;}
.ya6{bottom:158.493333pt;}
.y70{bottom:158.813333pt;}
.y1c{bottom:160.866667pt;}
.yab{bottom:161.693333pt;}
.yc7{bottom:163.653333pt;}
.ybc{bottom:164.160000pt;}
.ye0{bottom:166.973333pt;}
.yd5{bottom:167.973333pt;}
.yf5{bottom:173.186667pt;}
.y29{bottom:176.640000pt;}
.y101{bottom:177.186667pt;}
.y9{bottom:181.373333pt;}
.y58{bottom:181.826667pt;}
.y75{bottom:182.106667pt;}
.y25{bottom:183.706667pt;}
.y97{bottom:200.386667pt;}
.y1b{bottom:201.213333pt;}
.y36{bottom:202.533333pt;}
.yc8{bottom:202.906667pt;}
.ybd{bottom:203.426667pt;}
.ye1{bottom:207.906667pt;}
.y9f{bottom:208.386667pt;}
.yd6{bottom:208.893333pt;}
.y57{bottom:210.626667pt;}
.y6{bottom:210.906667pt;}
.yf4{bottom:211.426667pt;}
.y28{bottom:218.906667pt;}
.y74{bottom:220.506667pt;}
.y8{bottom:224.893333pt;}
.y24{bottom:225.946667pt;}
.y6f{bottom:226.333333pt;}
.y96{bottom:226.466667pt;}
.yb1{bottom:229.533333pt;}
.y35{bottom:231.333333pt;}
.y9e{bottom:234.466667pt;}
.y56{bottom:239.426667pt;}
.y1a{bottom:241.533333pt;}
.yc9{bottom:242.173333pt;}
.ybe{bottom:242.693333pt;}
.ye2{bottom:248.866667pt;}
.yd7{bottom:249.826667pt;}
.yb0{bottom:250.106667pt;}
.ya7{bottom:250.906667pt;}
.yac{bottom:254.080000pt;}
.yb7{bottom:254.973333pt;}
.y83{bottom:258.080000pt;}
.y73{bottom:258.906667pt;}
.y34{bottom:260.133333pt;}
.y44{bottom:260.506667pt;}
.y100{bottom:261.346667pt;}
.y65{bottom:262.946667pt;}
.y6e{bottom:267.933333pt;}
.y23{bottom:268.186667pt;}
.y55{bottom:268.226667pt;}
.y7e{bottom:273.506667pt;}
.yca{bottom:281.413333pt;}
.y19{bottom:281.853333pt;}
.ybf{bottom:281.946667pt;}
.y5{bottom:288.706667pt;}
.ye3{bottom:289.786667pt;}
.yff{bottom:290.146667pt;}
.yd8{bottom:290.746667pt;}
.y64{bottom:291.746667pt;}
.y13{bottom:293.053333pt;}
.y99{bottom:294.146667pt;}
.y33{bottom:296.960000pt;}
.y54{bottom:297.026667pt;}
.yb6{bottom:299.773333pt;}
.y43{bottom:300.826667pt;}
.ycf{bottom:306.146667pt;}
.ya1{bottom:307.453333pt;}
.y6d{bottom:309.373333pt;}
.y22{bottom:310.426667pt;}
.yd0{bottom:311.013333pt;}
.y3e{bottom:315.426667pt;}
.ye8{bottom:316.186667pt;}
.y98{bottom:320.186667pt;}
.ycb{bottom:320.666667pt;}
.ye9{bottom:321.053333pt;}
.yc0{bottom:321.186667pt;}
.y18{bottom:322.173333pt;}
.y32{bottom:325.760000pt;}
.y53{bottom:325.853333pt;}
.yf3{bottom:326.653333pt;}
.y7d{bottom:327.106667pt;}
.ye4{bottom:330.720000pt;}
.yd9{bottom:331.706667pt;}
.yfe{bottom:332.413333pt;}
.ya0{bottom:333.506667pt;}
.y12{bottom:337.853333pt;}
.y42{bottom:341.146667pt;}
.ya8{bottom:343.333333pt;}
.yb5{bottom:344.573333pt;}
.yad{bottom:346.493333pt;}
.y21{bottom:352.706667pt;}
.y31{bottom:354.560000pt;}
.y52{bottom:354.653333pt;}
.y8d{bottom:354.880000pt;}
.ycc{bottom:359.933333pt;}
.y82{bottom:360.320000pt;}
.yc1{bottom:360.453333pt;}
.yfd{bottom:361.213333pt;}
.y17{bottom:362.533333pt;}
.yf2{bottom:365.053333pt;}
.y63{bottom:365.186667pt;}
.y4{bottom:366.466667pt;}
.y7c{bottom:367.453333pt;}
.ye5{bottom:371.653333pt;}
.yec{bottom:372.480000pt;}
.yda{bottom:372.640000pt;}
.y3d{bottom:373.026667pt;}
.y2b{bottom:375.360000pt;}
.y6c{bottom:377.093333pt;}
.y11{bottom:382.653333pt;}
.y51{bottom:383.453333pt;}
.y9a{bottom:383.906667pt;}
.y72{bottom:389.120000pt;}
.yb4{bottom:389.373333pt;}
.yfc{bottom:390.013333pt;}
.y20{bottom:394.946667pt;}
.ye{bottom:395.546667pt;}
.ycd{bottom:399.200000pt;}
.yc2{bottom:399.706667pt;}
.ya2{bottom:399.906667pt;}
.y16{bottom:402.853333pt;}
.yf1{bottom:403.453333pt;}
.y62{bottom:405.533333pt;}
.y50{bottom:412.253333pt;}
.ye6{bottom:412.573333pt;}
.ydb{bottom:413.573333pt;}
.y6b{bottom:418.533333pt;}
.y7b{bottom:421.213333pt;}
.y41{bottom:422.626667pt;}
.y10{bottom:427.453333pt;}
.y30{bottom:428.160000pt;}
.yfb{bottom:432.093333pt;}
.yd{bottom:435.906667pt;}
.y1f{bottom:437.186667pt;}
.y81{bottom:440.640000pt;}
.y4f{bottom:441.053333pt;}
.yf0{bottom:441.853333pt;}
.y15{bottom:443.173333pt;}
.y3{bottom:444.253333pt;}
.y2f{bottom:456.986667pt;}
.y6a{bottom:459.973333pt;}
.y8c{bottom:460.666667pt;}
.yfa{bottom:460.933333pt;}
.y8f{bottom:461.146667pt;}
.y7a{bottom:461.533333pt;}
.y40{bottom:462.946667pt;}
.y4e{bottom:469.853333pt;}
.yc{bottom:476.226667pt;}
.yef{bottom:480.253333pt;}
.y3b{bottom:484.026667pt;}
.y2e{bottom:485.786667pt;}
.y61{bottom:486.173333pt;}
.y8b{bottom:488.826667pt;}
.yf9{bottom:489.733333pt;}
.y4d{bottom:498.693333pt;}
.y80{bottom:499.106667pt;}
.y69{bottom:501.600000pt;}
.y86{bottom:505.213333pt;}
.y27{bottom:507.520000pt;}
.y8a{bottom:516.986667pt;}
.yf8{bottom:518.533333pt;}
.yee{bottom:518.693333pt;}
.y2{bottom:522.013333pt;}
.y14{bottom:525.600000pt;}
.y39{bottom:526.426667pt;}
.y4c{bottom:527.493333pt;}
.y48{bottom:527.973333pt;}
.y1e{bottom:528.640000pt;}
.y68{bottom:543.040000pt;}
.y3f{bottom:544.386667pt;}
.y26{bottom:549.760000pt;}
.y4b{bottom:556.293333pt;}
.y47{bottom:556.773333pt;}
.yed{bottom:557.093333pt;}
.y89{bottom:561.306667pt;}
.yf7{bottom:562.053333pt;}
.y85{bottom:562.813333pt;}
.y79{bottom:563.040000pt;}
.y2d{bottom:564.066667pt;}
.y91{bottom:577.026667pt;}
.yb3{bottom:577.373333pt;}
.y67{bottom:584.480000pt;}
.y4a{bottom:585.093333pt;}
.y46{bottom:585.573333pt;}
.y8e{bottom:586.053333pt;}
.y88{bottom:586.946667pt;}
.yeb{bottom:589.733333pt;}
.yf6{bottom:596.613333pt;}
.y1{bottom:599.813333pt;}
.ya3{bottom:600.066667pt;}
.y7f{bottom:606.053333pt;}
.y5f{bottom:607.973333pt;}
.y87{bottom:612.546667pt;}
.y37{bottom:612.893333pt;}
.y49{bottom:613.893333pt;}
.y45{bottom:614.373333pt;}
.y38{bottom:614.973333pt;}
.y2c{bottom:615.933333pt;}
.y90{bottom:623.106667pt;}
.yb2{bottom:628.573333pt;}
.yea{bottom:640.933333pt;}
.y5e{bottom:650.533333pt;}
.y66{bottom:654.106667pt;}
.y5d{bottom:654.653333pt;}
.y5c{bottom:654.720000pt;}
.y60{bottom:655.426667pt;}
.y1d{bottom:658.493333pt;}
.y3c{bottom:662.533333pt;}
.y5b{bottom:684.026667pt;}
.h34{height:42.649687pt;}
.h35{height:42.777000pt;}
.h27{height:47.742188pt;}
.h30{height:47.869500pt;}
.h31{height:63.656250pt;}
.h32{height:63.783562pt;}
.h5{height:74.394880pt;}
.h23{height:79.124896pt;}
.h21{height:82.335000pt;}
.h22{height:82.424375pt;}
.h28{height:84.662813pt;}
.h29{height:84.790125pt;}
.h12{height:85.463040pt;}
.h18{height:86.558720pt;}
.h17{height:86.668288pt;}
.h11{height:91.092750pt;}
.h4{height:93.413120pt;}
.hd{height:93.524992pt;}
.h15{height:98.296875pt;}
.h16{height:98.427937pt;}
.h1a{height:100.254720pt;}
.h1d{height:100.364288pt;}
.h1b{height:102.362880pt;}
.h1c{height:102.474752pt;}
.h2a{height:106.305937pt;}
.h2e{height:106.433250pt;}
.h9{height:109.568000pt;}
.h3{height:111.872000pt;}
.h1e{height:111.983872pt;}
.h10{height:121.620480pt;}
.h2d{height:127.312500pt;}
.h36{height:127.439813pt;}
.h13{height:127.646720pt;}
.h19{height:127.756288pt;}
.h6{height:130.330880pt;}
.h7{height:130.442752pt;}
.h8{height:132.686848pt;}
.h24{height:146.273280pt;}
.h25{height:146.382848pt;}
.h20{height:148.319063pt;}
.h1f{height:148.446375pt;}
.hc{height:164.352000pt;}
.hb{height:164.461568pt;}
.h14{height:182.430720pt;}
.ha{height:182.540288pt;}
.he{height:196.126720pt;}
.hf{height:196.236288pt;}
.h2{height:246.528000pt;}
.h1{height:246.637568pt;}
.h2c{height:415.200000pt;}
.h26{height:419.520000pt;}
.h2b{height:435.520000pt;}
.h2f{height:438.080000pt;}
.h33{height:452.320000pt;}
.h0{height:720.000000pt;}
.w5{width:560.000000pt;}
.w2{width:602.880000pt;}
.w3{width:603.040000pt;}
.w4{width:722.560000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x41{left:8.672000pt;}
.x37{left:9.599981pt;}
.x5d{left:22.976000pt;}
.x3c{left:25.920000pt;}
.x40{left:28.544000pt;}
.xa{left:29.823981pt;}
.x51{left:33.213333pt;}
.x24{left:42.527981pt;}
.x42{left:45.408000pt;}
.x2e{left:48.223981pt;}
.x1c{left:52.031981pt;}
.x5c{left:62.688000pt;}
.x54{left:64.480000pt;}
.x52{left:65.760000pt;}
.x34{left:72.607981pt;}
.x18{left:76.223981pt;}
.x23{left:78.111981pt;}
.x1d{left:81.215981pt;}
.x35{left:84.863981pt;}
.x1e{left:87.295981pt;}
.x46{left:88.800000pt;}
.x50{left:98.626667pt;}
.x19{left:100.415981pt;}
.x43{left:103.680000pt;}
.x2c{left:118.047981pt;}
.x1{left:121.631981pt;}
.x69{left:123.967981pt;}
.x5a{left:131.133333pt;}
.x3f{left:138.213333pt;}
.x3e{left:139.226667pt;}
.x5b{left:141.026667pt;}
.x4e{left:143.200000pt;}
.x1a{left:154.493314pt;}
.xd{left:160.346648pt;}
.x67{left:164.186667pt;}
.x47{left:173.600000pt;}
.x4f{left:175.040000pt;}
.x1b{left:178.493314pt;}
.x44{left:189.026667pt;}
.xe{left:190.426648pt;}
.xc{left:200.479981pt;}
.x32{left:206.053314pt;}
.x59{left:210.333333pt;}
.x66{left:224.640000pt;}
.x56{left:227.906667pt;}
.x33{left:230.053314pt;}
.x63{left:241.600000pt;}
.x61{left:247.866667pt;}
.x17{left:254.533314pt;}
.x4d{left:272.960000pt;}
.x8{left:275.746648pt;}
.x64{left:279.133333pt;}
.x1f{left:280.639981pt;}
.x7{left:281.826648pt;}
.x3a{left:284.733314pt;}
.x65{left:291.653333pt;}
.x58{left:293.120000pt;}
.x3d{left:294.653333pt;}
.x5{left:306.746648pt;}
.x22{left:308.346648pt;}
.x62{left:310.400000pt;}
.x4{left:326.586648pt;}
.x29{left:331.039981pt;}
.x60{left:335.426667pt;}
.x27{left:340.706648pt;}
.x21{left:342.399981pt;}
.x53{left:348.319981pt;}
.x68{left:373.306648pt;}
.x38{left:377.253314pt;}
.x48{left:380.613314pt;}
.x57{left:384.413333pt;}
.x31{left:386.626648pt;}
.x28{left:393.826648pt;}
.xb{left:410.853314pt;}
.x2b{left:412.799981pt;}
.x3b{left:414.533314pt;}
.x26{left:450.466648pt;}
.x6{left:455.066648pt;}
.x39{left:467.813314pt;}
.x2f{left:472.453314pt;}
.x36{left:483.519981pt;}
.x11{left:495.293314pt;}
.x4a{left:496.800000pt;}
.x5f{left:510.560000pt;}
.x55{left:514.813333pt;}
.x4c{left:516.186667pt;}
.x10{left:524.186648pt;}
.x12{left:525.373314pt;}
.xf{left:527.546648pt;}
.x9{left:540.093314pt;}
.x20{left:543.226648pt;}
.x2a{left:547.226648pt;}
.x2d{left:563.866648pt;}
.x30{left:649.693314pt;}
.x4b{left:656.773333pt;}
.x49{left:663.453333pt;}
.x5e{left:667.520000pt;}
.x45{left:676.960000pt;}
.x25{left:695.999981pt;}
.x15{left:830.213314pt;}
.x16{left:860.293314pt;}
.x13{left:862.786648pt;}
.x14{left:890.146648pt;}
.x2{left:964.186648pt;}
.x3{left:1153.759981pt;}
}




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