
    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_500ab98ca85b46ff971c88d2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.962402;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_8f32d52b89460f508df18708.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_9551fac01f34da5d0118c6bc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.950000;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_c993a478eb76210242bdd50f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941406;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_226624a13dda004e03f1fe70.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_51d258e06cd4ac53fa220030.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_9bc1f7b0940bf040a143e0f0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_39e32b7765687c8ffa702b74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.972168;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_54666c6483630450efebf2e3.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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_13dee7c188b76f75d7a037bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.941406;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_a75f86de919b1e852fbff484.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.030273;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_fa74f019c60e97e46fef8b36.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1ce328a1a505f5c397afe741.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.972168;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.040000px;}
.v9{vertical-align:-15.840000px;}
.v2{vertical-align:-13.380000px;}
.v8{vertical-align:-3.480000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:28.800000px;}
.v3{vertical-align:50.400000px;}
.v5{vertical-align:59.340000px;}
.v4{vertical-align:100.800000px;}
.ls3{letter-spacing:-0.432600px;}
.ls4{letter-spacing:-0.335400px;}
.ls9{letter-spacing:-0.310200px;}
.lsa{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.256200px;}
.ls2{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.208200px;}
.lsf{letter-spacing:-0.189600px;}
.ls1f{letter-spacing:-0.171600px;}
.lsb{letter-spacing:-0.058740px;}
.ls6{letter-spacing:-0.042600px;}
.ls12{letter-spacing:-0.021300px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.018720px;}
.ls5{letter-spacing:0.037440px;}
.ls1e{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.341400px;}
.ls13{letter-spacing:0.756000px;}
.ls0{letter-spacing:36.821376px;}
.ls16{letter-spacing:97.509600px;}
.ls15{letter-spacing:97.560000px;}
.ls18{letter-spacing:97.629600px;}
.ls17{letter-spacing:97.680000px;}
.ls19{letter-spacing:101.988000px;}
.lsc{letter-spacing:124.149600px;}
.lsd{letter-spacing:124.200000px;}
.ls1c{letter-spacing:398.278560px;}
.ls8{letter-spacing:401.976000px;}
.ls1a{letter-spacing:432.838560px;}
.ls1d{letter-spacing:442.198560px;}
.ls1b{letter-spacing:501.958560px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(239,246,230),0 0.015em rgb(239,246,230),0.015em 0 rgb(239,246,230),0 -0.015em  rgb(239,246,230);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(239,246,230);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-46.637280px;}
.ws43{word-spacing:-33.707520px;}
.wsb{word-spacing:-33.466752px;}
.wsc{word-spacing:-33.426720px;}
.ws34{word-spacing:-30.024000px;}
.ws1{word-spacing:-29.808000px;}
.ws3e{word-spacing:-29.652480px;}
.ws44{word-spacing:-28.810080px;}
.ws1c{word-spacing:-26.661312px;}
.ws4{word-spacing:-26.621280px;}
.wsd{word-spacing:-24.624000px;}
.wse{word-spacing:-23.418720px;}
.ws47{word-spacing:-23.367168px;}
.ws42{word-spacing:-23.316480px;}
.ws46{word-spacing:-22.654080px;}
.ws40{word-spacing:-22.353408px;}
.ws3f{word-spacing:-22.302720px;}
.ws6{word-spacing:-21.641760px;}
.wsf{word-spacing:-20.056032px;}
.wsa{word-spacing:-20.016000px;}
.ws41{word-spacing:-19.439280px;}
.ws5{word-spacing:-17.814240px;}
.ws7{word-spacing:-16.272000px;}
.ws45{word-spacing:-15.020640px;}
.ws3c{word-spacing:-0.468000px;}
.ws1a{word-spacing:-0.208992px;}
.ws37{word-spacing:-0.144000px;}
.ws38{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
.ws11{word-spacing:0.151920px;}
.ws2f{word-spacing:0.463932px;}
.ws36{word-spacing:0.657216px;}
.ws1b{word-spacing:0.698652px;}
.ws39{word-spacing:0.720000px;}
.ws33{word-spacing:1.008000px;}
.ws3b{word-spacing:1.044000px;}
.ws2e{word-spacing:1.103328px;}
.ws35{word-spacing:1.764000px;}
.ws30{word-spacing:1.867488px;}
.ws0{word-spacing:2.207760px;}
.ws3a{word-spacing:2.291904px;}
.ws31{word-spacing:2.729088px;}
.ws21{word-spacing:3.351840px;}
.ws1e{word-spacing:11.674800px;}
.ws20{word-spacing:11.710800px;}
.ws1d{word-spacing:12.731520px;}
.ws1f{word-spacing:12.941280px;}
.ws2d{word-spacing:34.545600px;}
.ws2b{word-spacing:36.439920px;}
.ws2a{word-spacing:36.511920px;}
.ws2c{word-spacing:36.682560px;}
.ws29{word-spacing:36.932400px;}
.ws18{word-spacing:43.293240px;}
.ws16{word-spacing:43.882560px;}
.ws19{word-spacing:43.900320px;}
.ws17{word-spacing:43.976160px;}
.ws15{word-spacing:44.724480px;}
.ws12{word-spacing:55.610880px;}
.ws13{word-spacing:55.630080px;}
.ws14{word-spacing:55.931520px;}
.ws23{word-spacing:63.322560px;}
.ws22{word-spacing:63.817200px;}
.ws24{word-spacing:63.938160px;}
.ws27{word-spacing:72.166320px;}
.ws25{word-spacing:72.257760px;}
.ws26{word-spacing:72.757440px;}
.ws28{word-spacing:114.829200px;}
.ws9{word-spacing:249.792000px;}
.ws8{word-spacing:302.052000px;}
.ws3d{word-spacing:316.812720px;}
.ws10{word-spacing:1070.186640px;}
._8{margin-left:-2772.492240px;}
._1f{margin-left:-14.078400px;}
._6{margin-left:-11.520000px;}
._13{margin-left:-9.504000px;}
._2a{margin-left:-7.917360px;}
._7{margin-left:-6.798960px;}
._3{margin-left:-5.796000px;}
._4{margin-left:-3.888000px;}
._2{margin-left:-2.039760px;}
._5{margin-left:-1.009008px;}
._1{width:1.368720px;}
._0{width:2.449680px;}
._a{width:3.875760px;}
._16{width:4.962816px;}
._15{width:13.224000px;}
._18{width:28.622592px;}
._1d{width:30.756000px;}
._1c{width:31.811760px;}
._19{width:39.405840px;}
._17{width:83.724768px;}
._1a{width:100.127520px;}
._1b{width:144.290160px;}
._14{width:163.224000px;}
._21{width:290.688000px;}
._20{width:333.726960px;}
._27{width:388.483728px;}
._26{width:402.999600px;}
._23{width:410.803728px;}
._11{width:416.060640px;}
._25{width:419.443728px;}
._e{width:424.830960px;}
._29{width:435.283728px;}
._22{width:437.786688px;}
._d{width:439.634160px;}
._28{width:447.503520px;}
._c{width:470.015520px;}
._10{width:477.569040px;}
._24{width:505.690320px;}
._f{width:506.909040px;}
._12{width:541.773360px;}
._1e{width:885.241008px;}
._b{width:887.907600px;}
._2b{width:2283.870240px;}
._9{width:2656.331760px;}
.fce{color:rgb(239,246,230);}
.fc0{color:rgb(5,56,31);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(112,207,77);}
.fc7{color:rgb(38,38,38);}
.fcc{color:rgb(255,255,255);}
.fc3{color:rgb(253,130,2);}
.fc4{color:rgb(255,0,0);}
.fc9{color:rgb(208,230,222);}
.fc5{color:rgb(0,48,104);}
.fcd{color:transparent;}
.fc8{color:rgb(22,129,89);}
.fca{color:rgb(255,139,61);}
.fcb{color:rgb(6,29,30);}
.fs1a{font-size:43.920000px;}
.fs12{font-size:48.240000px;}
.fsd{font-size:54.000000px;}
.fs14{font-size:59.760000px;}
.fs13{font-size:59.904000px;}
.fs17{font-size:63.360000px;}
.fs18{font-size:63.504000px;}
.fs9{font-size:64.080000px;}
.fs15{font-size:66.240000px;}
.fs19{font-size:66.384000px;}
.fsa{font-size:72.000000px;}
.fs11{font-size:72.144000px;}
.fse{font-size:84.240000px;}
.fsc{font-size:84.384000px;}
.fs8{font-size:95.760000px;}
.fsb{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs10{font-size:120.240000px;}
.fsf{font-size:120.384000px;}
.fs3{font-size:131.904000px;}
.fs6{font-size:144.000000px;}
.fs5{font-size:144.144000px;}
.fs0{font-size:167.760000px;}
.fs16{font-size:167.904000px;}
.fs7{font-size:318.240000px;}
.fs4{font-size:318.384000px;}
.y0{bottom:0.000000px;}
.y6c{bottom:7.236000px;}
.y21{bottom:8.064000px;}
.yad{bottom:13.680000px;}
.y7d{bottom:13.716000px;}
.y13{bottom:16.200000px;}
.y20{bottom:16.668000px;}
.yfc{bottom:21.312000px;}
.y8a{bottom:31.068000px;}
.yc2{bottom:31.716000px;}
.y15{bottom:47.340000px;}
.yc6{bottom:48.780000px;}
.yfb{bottom:53.712000px;}
.ya6{bottom:61.704000px;}
.y7c{bottom:62.460000px;}
.y89{bottom:63.468000px;}
.yec{bottom:66.456000px;}
.y53{bottom:67.176000px;}
.y6f{bottom:70.884000px;}
.y97{bottom:71.424000px;}
.y91{bottom:73.620000px;}
.ye7{bottom:75.420000px;}
.y7b{bottom:84.060000px;}
.ya5{bottom:85.104000px;}
.y95{bottom:85.140000px;}
.yfa{bottom:86.112000px;}
.y1e{bottom:87.732000px;}
.y18{bottom:88.200000px;}
.y6{bottom:89.460000px;}
.yea{bottom:90.324000px;}
.ydd{bottom:91.365000px;}
.yd8{bottom:91.410000px;}
.yd5{bottom:91.470000px;}
.yd3{bottom:91.545000px;}
.yde{bottom:91.725000px;}
.yd9{bottom:91.770000px;}
.yd6{bottom:91.830000px;}
.y6e{bottom:92.484000px;}
.y2b{bottom:92.700000px;}
.y29{bottom:92.730000px;}
.yeb{bottom:95.256000px;}
.y88{bottom:95.904000px;}
.y3d{bottom:96.336000px;}
.ya9{bottom:96.732000px;}
.y52{bottom:99.576000px;}
.y8d{bottom:101.808000px;}
.ybf{bottom:103.392000px;}
.y90{bottom:104.904000px;}
.y24{bottom:105.732000px;}
.y7a{bottom:106.920000px;}
.ya4{bottom:107.604000px;}
.y94{bottom:112.248000px;}
.ye6{bottom:113.040000px;}
.yfd{bottom:114.768000px;}
.y6d{bottom:115.344000px;}
.ye9{bottom:115.524000px;}
.ya8{bottom:125.532000px;}
.ye{bottom:126.540000px;}
.y87{bottom:128.304000px;}
.ya3{bottom:130.104000px;}
.y5{bottom:133.560000px;}
.y8c{bottom:134.964000px;}
.y8f{bottom:136.260000px;}
.ycc{bottom:136.404000px;}
.y19{bottom:137.550000px;}
.y93{bottom:139.320000px;}
.ye8{bottom:140.724000px;}
.y60{bottom:143.244000px;}
.y1d{bottom:145.332000px;}
.yc5{bottom:147.708000px;}
.y3e{bottom:149.472000px;}
.ye5{bottom:150.840000px;}
.ya2{bottom:153.330000px;}
.ya7{bottom:154.335000px;}
.y10{bottom:157.680000px;}
.y86{bottom:160.710000px;}
.y5f{bottom:160.815000px;}
.y23{bottom:163.335000px;}
.yf9{bottom:163.515000px;}
.y8b{bottom:165.165000px;}
.y92{bottom:166.395000px;}
.y8e{bottom:168.735000px;}
.ycb{bottom:176.430000px;}
.ya1{bottom:176.760000px;}
.yf8{bottom:183.315000px;}
.y3f{bottom:186.015000px;}
.y3c{bottom:194.190000px;}
.yca{bottom:196.590000px;}
.yc1{bottom:198.075000px;}
.y96{bottom:200.370000px;}
.y1c{bottom:202.935000px;}
.yf7{bottom:203.145000px;}
.yc8{bottom:203.550000px;}
.y4b{bottom:209.235000px;}
.y17{bottom:211.500000px;}
.yc0{bottom:213.195000px;}
.yd0{bottom:214.710000px;}
.ydf{bottom:215.640000px;}
.yc9{bottom:216.750000px;}
.y22{bottom:220.965000px;}
.yf6{bottom:222.945000px;}
.y40{bottom:230.400000px;}
.y4a{bottom:230.835000px;}
.yc7{bottom:232.350000px;}
.y9{bottom:236.880000px;}
.ycf{bottom:239.910000px;}
.y58{bottom:243.930000px;}
.y49{bottom:252.465000px;}
.y46{bottom:253.950000px;}
.ybd{bottom:258.480000px;}
.ydc{bottom:259.560000px;}
.y1b{bottom:260.565000px;}
.y6b{bottom:261.975000px;}
.y4{bottom:262.470000px;}
.yd{bottom:267.225000px;}
.y16{bottom:267.270000px;}
.y12{bottom:267.330000px;}
.yb{bottom:268.200000px;}
.y3b{bottom:273.165000px;}
.ybc{bottom:273.600000px;}
.y1a{bottom:278.565000px;}
.y36{bottom:279.330000px;}
.y6a{bottom:281.415000px;}
.y48{bottom:283.605000px;}
.y44{bottom:294.045000px;}
.y35{bottom:295.530000px;}
.y80{bottom:297.615000px;}
.y55{bottom:300.210000px;}
.ybe{bottom:302.400000px;}
.yc4{bottom:303.735000px;}
.yda{bottom:304.380000px;}
.y5e{bottom:304.890000px;}
.y14{bottom:305.715000px;}
.yf{bottom:305.790000px;}
.ya{bottom:305.895000px;}
.y3{bottom:307.830000px;}
.y3a{bottom:309.855000px;}
.yc{bottom:310.470000px;}
.y11{bottom:310.530000px;}
.y34{bottom:311.730000px;}
.yc3{bottom:318.855000px;}
.y7f{bottom:319.245000px;}
.ye2{bottom:319.425000px;}
.y54{bottom:322.890000px;}
.y74{bottom:325.650000px;}
.ye4{bottom:327.450000px;}
.y79{bottom:327.525000px;}
.y57{bottom:328.785000px;}
.y69{bottom:332.025000px;}
.y5d{bottom:334.050000px;}
.y7e{bottom:342.105000px;}
.ye1{bottom:342.465000px;}
.yd7{bottom:349.380000px;}
.ye3{bottom:350.490000px;}
.y56{bottom:351.465000px;}
.y1f{bottom:352.980000px;}
.y2{bottom:353.190000px;}
.y73{bottom:354.450000px;}
.y39{bottom:355.110000px;}
.y4e{bottom:355.785000px;}
.y33{bottom:355.830000px;}
.y78{bottom:356.325000px;}
.ye0{bottom:365.505000px;}
.y4d{bottom:375.270000px;}
.y72{bottom:383.295000px;}
.yb5{bottom:384.450000px;}
.y32{bottom:384.660000px;}
.y77{bottom:385.125000px;}
.y68{bottom:390.345000px;}
.y5c{bottom:392.370000px;}
.yd4{bottom:393.120000px;}
.ydb{bottom:395.850000px;}
.y1{bottom:398.595000px;}
.y38{bottom:400.320000px;}
.y4c{bottom:404.250000px;}
.y71{bottom:412.095000px;}
.y37{bottom:412.920000px;}
.y31{bottom:413.460000px;}
.y76{bottom:413.925000px;}
.y2e{bottom:417.780000px;}
.y67{bottom:419.505000px;}
.y5b{bottom:421.530000px;}
.yd2{bottom:436.860000px;}
.y70{bottom:440.895000px;}
.y75{bottom:442.725000px;}
.yac{bottom:457.050000px;}
.y2c{bottom:457.380000px;}
.y45{bottom:458.310000px;}
.ya0{bottom:465.630000px;}
.y9b{bottom:465.990000px;}
.y7{bottom:471.855000px;}
.yb4{bottom:475.665000px;}
.y66{bottom:477.870000px;}
.yf5{bottom:478.440000px;}
.y5a{bottom:479.880000px;}
.yab{bottom:485.850000px;}
.y51{bottom:490.140000px;}
.yaa{bottom:490.830000px;}
.y85{bottom:492.375000px;}
.y9f{bottom:494.430000px;}
.yb3{bottom:495.465000px;}
.y2a{bottom:496.980000px;}
.yf4{bottom:498.240000px;}
.yce{bottom:499.110000px;}
.yf1{bottom:500.505000px;}
.y65{bottom:507.030000px;}
.y59{bottom:509.040000px;}
.y50{bottom:509.580000px;}
.y2f{bottom:510.480000px;}
.y43{bottom:514.650000px;}
.yb2{bottom:515.265000px;}
.y30{bottom:516.165000px;}
.yf3{bottom:518.040000px;}
.ycd{bottom:518.910000px;}
.yf0{bottom:520.350000px;}
.y9e{bottom:523.230000px;}
.y9a{bottom:523.590000px;}
.y84{bottom:524.775000px;}
.yb1{bottom:535.065000px;}
.y64{bottom:536.190000px;}
.y28{bottom:536.580000px;}
.yf2{bottom:537.840000px;}
.y4f{bottom:538.590000px;}
.yef{bottom:540.150000px;}
.y47{bottom:543.780000px;}
.y42{bottom:547.095000px;}
.y2d{bottom:550.080000px;}
.y27{bottom:556.200000px;}
.y83{bottom:557.205000px;}
.ybb{bottom:558.570000px;}
.yb8{bottom:558.900000px;}
.yee{bottom:559.950000px;}
.yb0{bottom:566.925000px;}
.yba{bottom:578.730000px;}
.yb7{bottom:579.060000px;}
.yed{bottom:579.750000px;}
.y9d{bottom:580.860000px;}
.y99{bottom:581.220000px;}
.y26{bottom:588.600000px;}
.y82{bottom:589.605000px;}
.yaf{bottom:592.125000px;}
.y63{bottom:594.510000px;}
.yb9{bottom:598.890000px;}
.yb6{bottom:599.220000px;}
.y9c{bottom:609.660000px;}
.y98{bottom:610.020000px;}
.yae{bottom:617.325000px;}
.y25{bottom:621.000000px;}
.y81{bottom:622.005000px;}
.y62{bottom:623.700000px;}
.yd1{bottom:624.705000px;}
.y61{bottom:624.930000px;}
.y41{bottom:629.670000px;}
.y8{bottom:700.305000px;}
.h2b{height:35.261367px;}
.h32{height:36.274219px;}
.h34{height:39.471680px;}
.h31{height:44.936719px;}
.h30{height:45.045000px;}
.h38{height:48.448125px;}
.h39{height:48.558234px;}
.h35{height:50.650312px;}
.h3e{height:50.760422px;}
.h13{height:52.628906px;}
.h23{height:52.734164px;}
.h26{height:55.054688px;}
.h25{height:55.164797px;}
.h1a{height:55.291992px;}
.h3d{height:61.575820px;}
.h28{height:63.344531px;}
.h24{height:64.413984px;}
.h11{height:69.996445px;}
.h2c{height:70.101703px;}
.h3c{height:70.931602px;}
.h1e{height:71.613281px;}
.h10{height:72.007031px;}
.h14{height:72.115313px;}
.h2d{height:73.222734px;}
.h2e{height:73.332844px;}
.h2f{height:77.798672px;}
.h20{height:78.943359px;}
.h29{height:79.048617px;}
.h3a{height:80.937773px;}
.h2{height:81.210938px;}
.h3{height:81.319219px;}
.h27{height:82.582031px;}
.h19{height:83.930766px;}
.h1d{height:86.255508px;}
.h3b{height:87.890273px;}
.h22{height:90.414844px;}
.h21{height:90.523125px;}
.h33{height:92.051438px;}
.h12{height:94.901250px;}
.h18{height:95.245664px;}
.h17{height:98.051133px;}
.h4{height:99.185625px;}
.h9{height:105.257812px;}
.h8{height:105.363070px;}
.h15{height:107.419922px;}
.h1f{height:110.583984px;}
.h1{height:126.147656px;}
.h1b{height:136.655508px;}
.h36{height:141.793242px;}
.h37{height:141.914953px;}
.h2a{height:149.754844px;}
.h1c{height:187.055508px;}
.h16{height:201.780000px;}
.hb{height:238.361760px;}
.h6{height:238.469616px;}
.hf{height:302.400000px;}
.h7{height:541.800000px;}
.h5{height:573.120000px;}
.he{height:573.660000px;}
.hc{height:604.980000px;}
.hd{height:667.800000px;}
.ha{height:667.980000px;}
.h0{height:810.000000px;}
.wc{width:55.080000px;}
.w6{width:112.320000px;}
.w7{width:130.500000px;}
.w2{width:143.460000px;}
.w8{width:151.560000px;}
.w5{width:211.860000px;}
.wa{width:277.560000px;}
.w9{width:325.620000px;}
.wb{width:392.040000px;}
.w3{width:479.160000px;}
.w4{width:605.700000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x19{left:11.055000px;}
.x4{left:14.550000px;}
.x5a{left:27.251979px;}
.x79{left:42.983979px;}
.x1{left:48.131979px;}
.x93{left:49.967979px;}
.x7a{left:63.863979px;}
.x3e{left:65.339979px;}
.x1f{left:69.120000px;}
.x5c{left:71.675979px;}
.x78{left:73.223979px;}
.x17{left:79.955979px;}
.x6{left:81.683979px;}
.x6f{left:82.979979px;}
.x31{left:84.383979px;}
.x20{left:88.523979px;}
.x3b{left:91.259979px;}
.x6b{left:92.807979px;}
.x42{left:93.887979px;}
.x73{left:96.623979px;}
.x97{left:98.099979px;}
.x1e{left:101.843979px;}
.x5b{left:104.975979px;}
.x50{left:108.251979px;}
.x74{left:109.583979px;}
.x6e{left:112.031979px;}
.x9b{left:123.443979px;}
.x23{left:126.323979px;}
.x9c{left:127.943979px;}
.x2c{left:131.039979px;}
.x9e{left:133.199979px;}
.x96{left:141.695979px;}
.x98{left:152.849979px;}
.x2d{left:163.109979px;}
.x32{left:165.089979px;}
.x24{left:169.709979px;}
.x33{left:175.169979px;}
.xb{left:183.704979px;}
.x22{left:193.829979px;}
.x9{left:196.484979px;}
.xa{left:202.424979px;}
.x39{left:207.689979px;}
.x8{left:212.684979px;}
.x35{left:216.509979px;}
.xaa{left:241.379979px;}
.x21{left:306.360000px;}
.x10{left:325.004979px;}
.x30{left:342.509979px;}
.x69{left:363.989979px;}
.x94{left:369.360000px;}
.x7e{left:372.704979px;}
.x6a{left:374.039979px;}
.x64{left:381.209979px;}
.x65{left:383.369979px;}
.x56{left:384.479979px;}
.x7d{left:385.484979px;}
.x57{left:386.639979px;}
.x9d{left:391.499979px;}
.x63{left:392.759979px;}
.x55{left:395.999979px;}
.x8f{left:397.724979px;}
.x4a{left:401.834979px;}
.x4b{left:403.994979px;}
.x7c{left:410.684979px;}
.x49{left:413.354979px;}
.x2a{left:431.714979px;}
.x29{left:433.694979px;}
.x90{left:440.924979px;}
.x7b{left:484.664979px;}
.x2b{left:486.434979px;}
.x36{left:508.109979px;}
.x25{left:534.674979px;}
.x3f{left:544.064979px;}
.xa0{left:550.289979px;}
.xa2{left:554.069979px;}
.xa3{left:560.774979px;}
.x9f{left:568.514979px;}
.x6d{left:577.184979px;}
.x40{left:584.564979px;}
.xa1{left:593.714979px;}
.x37{left:601.664979px;}
.x75{left:610.349979px;}
.xf{left:615.674979px;}
.x2f{left:633.884979px;}
.x3a{left:639.434979px;}
.x16{left:647.564979px;}
.xd{left:652.784979px;}
.xe{left:659.624979px;}
.xc{left:665.924979px;}
.x67{left:671.144979px;}
.x59{left:674.429979px;}
.x66{left:680.504979px;}
.x58{left:683.789979px;}
.x68{left:688.244979px;}
.x4d{left:691.739979px;}
.x4c{left:701.099979px;}
.x3{left:703.080000px;}
.x4e{left:708.839979px;}
.x91{left:709.919979px;}
.x2{left:714.029979px;}
.x3c{left:718.349979px;}
.x18{left:720.720000px;}
.x71{left:729.719979px;}
.x9a{left:730.904979px;}
.x8e{left:741.494979px;}
.x72{left:747.179979px;}
.x8d{left:757.874979px;}
.xa9{left:760.529979px;}
.xa7{left:765.929979px;}
.x76{left:770.909979px;}
.xa8{left:775.649979px;}
.x95{left:800.099979px;}
.x92{left:806.789979px;}
.x34{left:809.534979px;}
.x7f{left:834.089979px;}
.x5{left:846.360000px;}
.x4f{left:856.184979px;}
.x81{left:860.549979px;}
.x80{left:861.989979px;}
.x26{left:881.174979px;}
.x2e{left:901.334979px;}
.x70{left:915.119979px;}
.x1a{left:932.400000px;}
.x5e{left:952.409979px;}
.x52{left:955.694979px;}
.x5d{left:968.249979px;}
.x5f{left:969.869979px;}
.x51{left:971.534979px;}
.x44{left:973.049979px;}
.x43{left:988.889979px;}
.x45{left:990.509979px;}
.x6c{left:1005.629979px;}
.x38{left:1007.489979px;}
.x85{left:1028.984979px;}
.x1b{left:1044.540000px;}
.x84{left:1053.689979px;}
.x27{left:1055.489979px;}
.x12{left:1060.634979px;}
.xa4{left:1069.049979px;}
.xa6{left:1072.829979px;}
.x11{left:1077.329979px;}
.x14{left:1102.394979px;}
.x8b{left:1104.509979px;}
.xa5{left:1107.029979px;}
.x15{left:1124.894979px;}
.x7{left:1137.704979px;}
.x3d{left:1147.889979px;}
.x83{left:1152.149979px;}
.x8c{left:1166.654979px;}
.x13{left:1168.634979px;}
.x1c{left:1174.860000px;}
.x82{left:1176.839979px;}
.x8a{left:1181.669979px;}
.x1d{left:1197.824979px;}
.x61{left:1207.109979px;}
.x28{left:1211.369979px;}
.x99{left:1215.149979px;}
.x62{left:1218.629979px;}
.x54{left:1221.914979px;}
.x47{left:1227.704979px;}
.x48{left:1239.224979px;}
.x60{left:1247.969979px;}
.x53{left:1251.254979px;}
.x46{left:1268.564979px;}
.x86{left:1294.349979px;}
.x87{left:1303.709979px;}
.x89{left:1305.389979px;}
.x88{left:1315.649979px;}
.x41{left:1366.124979px;}
.x77{left:1376.744979px;}
@media print{
.v1{vertical-align:-20.480000pt;}
.v9{vertical-align:-14.080000pt;}
.v2{vertical-align:-11.893333pt;}
.v8{vertical-align:-3.093333pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:25.600000pt;}
.v3{vertical-align:44.800000pt;}
.v5{vertical-align:52.746667pt;}
.v4{vertical-align:89.600000pt;}
.ls3{letter-spacing:-0.384533pt;}
.ls4{letter-spacing:-0.298133pt;}
.ls9{letter-spacing:-0.275733pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.227733pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.185067pt;}
.lsf{letter-spacing:-0.168533pt;}
.ls1f{letter-spacing:-0.152533pt;}
.lsb{letter-spacing:-0.052213pt;}
.ls6{letter-spacing:-0.037867pt;}
.ls12{letter-spacing:-0.018933pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.016640pt;}
.ls5{letter-spacing:0.033280pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.303467pt;}
.ls13{letter-spacing:0.672000pt;}
.ls0{letter-spacing:32.730112pt;}
.ls16{letter-spacing:86.675200pt;}
.ls15{letter-spacing:86.720000pt;}
.ls18{letter-spacing:86.781867pt;}
.ls17{letter-spacing:86.826667pt;}
.ls19{letter-spacing:90.656000pt;}
.lsc{letter-spacing:110.355200pt;}
.lsd{letter-spacing:110.400000pt;}
.ls1c{letter-spacing:354.025387pt;}
.ls8{letter-spacing:357.312000pt;}
.ls1a{letter-spacing:384.745387pt;}
.ls1d{letter-spacing:393.065387pt;}
.ls1b{letter-spacing:446.185387pt;}
.ws3{word-spacing:-41.455360pt;}
.ws43{word-spacing:-29.962240pt;}
.wsb{word-spacing:-29.748224pt;}
.wsc{word-spacing:-29.712640pt;}
.ws34{word-spacing:-26.688000pt;}
.ws1{word-spacing:-26.496000pt;}
.ws3e{word-spacing:-26.357760pt;}
.ws44{word-spacing:-25.608960pt;}
.ws1c{word-spacing:-23.698944pt;}
.ws4{word-spacing:-23.663360pt;}
.wsd{word-spacing:-21.888000pt;}
.wse{word-spacing:-20.816640pt;}
.ws47{word-spacing:-20.770816pt;}
.ws42{word-spacing:-20.725760pt;}
.ws46{word-spacing:-20.136960pt;}
.ws40{word-spacing:-19.869696pt;}
.ws3f{word-spacing:-19.824640pt;}
.ws6{word-spacing:-19.237120pt;}
.wsf{word-spacing:-17.827584pt;}
.wsa{word-spacing:-17.792000pt;}
.ws41{word-spacing:-17.279360pt;}
.ws5{word-spacing:-15.834880pt;}
.ws7{word-spacing:-14.464000pt;}
.ws45{word-spacing:-13.351680pt;}
.ws3c{word-spacing:-0.416000pt;}
.ws1a{word-spacing:-0.185771pt;}
.ws37{word-spacing:-0.128000pt;}
.ws38{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
.ws11{word-spacing:0.135040pt;}
.ws2f{word-spacing:0.412384pt;}
.ws36{word-spacing:0.584192pt;}
.ws1b{word-spacing:0.621024pt;}
.ws39{word-spacing:0.640000pt;}
.ws33{word-spacing:0.896000pt;}
.ws3b{word-spacing:0.928000pt;}
.ws2e{word-spacing:0.980736pt;}
.ws35{word-spacing:1.568000pt;}
.ws30{word-spacing:1.659989pt;}
.ws0{word-spacing:1.962453pt;}
.ws3a{word-spacing:2.037248pt;}
.ws31{word-spacing:2.425856pt;}
.ws21{word-spacing:2.979413pt;}
.ws1e{word-spacing:10.377600pt;}
.ws20{word-spacing:10.409600pt;}
.ws1d{word-spacing:11.316907pt;}
.ws1f{word-spacing:11.503360pt;}
.ws2d{word-spacing:30.707200pt;}
.ws2b{word-spacing:32.391040pt;}
.ws2a{word-spacing:32.455040pt;}
.ws2c{word-spacing:32.606720pt;}
.ws29{word-spacing:32.828800pt;}
.ws18{word-spacing:38.482880pt;}
.ws16{word-spacing:39.006720pt;}
.ws19{word-spacing:39.022507pt;}
.ws17{word-spacing:39.089920pt;}
.ws15{word-spacing:39.755093pt;}
.ws12{word-spacing:49.431893pt;}
.ws13{word-spacing:49.448960pt;}
.ws14{word-spacing:49.716907pt;}
.ws23{word-spacing:56.286720pt;}
.ws22{word-spacing:56.726400pt;}
.ws24{word-spacing:56.833920pt;}
.ws27{word-spacing:64.147840pt;}
.ws25{word-spacing:64.229120pt;}
.ws26{word-spacing:64.673280pt;}
.ws28{word-spacing:102.070400pt;}
.ws9{word-spacing:222.037333pt;}
.ws8{word-spacing:268.490667pt;}
.ws3d{word-spacing:281.611307pt;}
.ws10{word-spacing:951.277013pt;}
._8{margin-left:-2464.437547pt;}
._1f{margin-left:-12.514133pt;}
._6{margin-left:-10.240000pt;}
._13{margin-left:-8.448000pt;}
._2a{margin-left:-7.037653pt;}
._7{margin-left:-6.043520pt;}
._3{margin-left:-5.152000pt;}
._4{margin-left:-3.456000pt;}
._2{margin-left:-1.813120pt;}
._5{margin-left:-0.896896pt;}
._1{width:1.216640pt;}
._0{width:2.177493pt;}
._a{width:3.445120pt;}
._16{width:4.411392pt;}
._15{width:11.754667pt;}
._18{width:25.442304pt;}
._1d{width:27.338667pt;}
._1c{width:28.277120pt;}
._19{width:35.027413pt;}
._17{width:74.422016pt;}
._1a{width:89.002240pt;}
._1b{width:128.257920pt;}
._14{width:145.088000pt;}
._21{width:258.389333pt;}
._20{width:296.646187pt;}
._27{width:345.318869pt;}
._26{width:358.221867pt;}
._23{width:365.158869pt;}
._11{width:369.831680pt;}
._25{width:372.838869pt;}
._e{width:377.627520pt;}
._29{width:386.918869pt;}
._22{width:389.143723pt;}
._d{width:390.785920pt;}
._28{width:397.780907pt;}
._c{width:417.791573pt;}
._10{width:424.505813pt;}
._24{width:449.502507pt;}
._f{width:450.585813pt;}
._12{width:481.576320pt;}
._1e{width:786.880896pt;}
._b{width:789.251200pt;}
._2b{width:2030.106880pt;}
._9{width:2361.183787pt;}
.fs1a{font-size:39.040000pt;}
.fs12{font-size:42.880000pt;}
.fsd{font-size:48.000000pt;}
.fs14{font-size:53.120000pt;}
.fs13{font-size:53.248000pt;}
.fs17{font-size:56.320000pt;}
.fs18{font-size:56.448000pt;}
.fs9{font-size:56.960000pt;}
.fs15{font-size:58.880000pt;}
.fs19{font-size:59.008000pt;}
.fsa{font-size:64.000000pt;}
.fs11{font-size:64.128000pt;}
.fse{font-size:74.880000pt;}
.fsc{font-size:75.008000pt;}
.fs8{font-size:85.120000pt;}
.fsb{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs10{font-size:106.880000pt;}
.fsf{font-size:107.008000pt;}
.fs3{font-size:117.248000pt;}
.fs6{font-size:128.000000pt;}
.fs5{font-size:128.128000pt;}
.fs0{font-size:149.120000pt;}
.fs16{font-size:149.248000pt;}
.fs7{font-size:282.880000pt;}
.fs4{font-size:283.008000pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:6.432000pt;}
.y21{bottom:7.168000pt;}
.yad{bottom:12.160000pt;}
.y7d{bottom:12.192000pt;}
.y13{bottom:14.400000pt;}
.y20{bottom:14.816000pt;}
.yfc{bottom:18.944000pt;}
.y8a{bottom:27.616000pt;}
.yc2{bottom:28.192000pt;}
.y15{bottom:42.080000pt;}
.yc6{bottom:43.360000pt;}
.yfb{bottom:47.744000pt;}
.ya6{bottom:54.848000pt;}
.y7c{bottom:55.520000pt;}
.y89{bottom:56.416000pt;}
.yec{bottom:59.072000pt;}
.y53{bottom:59.712000pt;}
.y6f{bottom:63.008000pt;}
.y97{bottom:63.488000pt;}
.y91{bottom:65.440000pt;}
.ye7{bottom:67.040000pt;}
.y7b{bottom:74.720000pt;}
.ya5{bottom:75.648000pt;}
.y95{bottom:75.680000pt;}
.yfa{bottom:76.544000pt;}
.y1e{bottom:77.984000pt;}
.y18{bottom:78.400000pt;}
.y6{bottom:79.520000pt;}
.yea{bottom:80.288000pt;}
.ydd{bottom:81.213333pt;}
.yd8{bottom:81.253333pt;}
.yd5{bottom:81.306667pt;}
.yd3{bottom:81.373333pt;}
.yde{bottom:81.533333pt;}
.yd9{bottom:81.573333pt;}
.yd6{bottom:81.626667pt;}
.y6e{bottom:82.208000pt;}
.y2b{bottom:82.400000pt;}
.y29{bottom:82.426667pt;}
.yeb{bottom:84.672000pt;}
.y88{bottom:85.248000pt;}
.y3d{bottom:85.632000pt;}
.ya9{bottom:85.984000pt;}
.y52{bottom:88.512000pt;}
.y8d{bottom:90.496000pt;}
.ybf{bottom:91.904000pt;}
.y90{bottom:93.248000pt;}
.y24{bottom:93.984000pt;}
.y7a{bottom:95.040000pt;}
.ya4{bottom:95.648000pt;}
.y94{bottom:99.776000pt;}
.ye6{bottom:100.480000pt;}
.yfd{bottom:102.016000pt;}
.y6d{bottom:102.528000pt;}
.ye9{bottom:102.688000pt;}
.ya8{bottom:111.584000pt;}
.ye{bottom:112.480000pt;}
.y87{bottom:114.048000pt;}
.ya3{bottom:115.648000pt;}
.y5{bottom:118.720000pt;}
.y8c{bottom:119.968000pt;}
.y8f{bottom:121.120000pt;}
.ycc{bottom:121.248000pt;}
.y19{bottom:122.266667pt;}
.y93{bottom:123.840000pt;}
.ye8{bottom:125.088000pt;}
.y60{bottom:127.328000pt;}
.y1d{bottom:129.184000pt;}
.yc5{bottom:131.296000pt;}
.y3e{bottom:132.864000pt;}
.ye5{bottom:134.080000pt;}
.ya2{bottom:136.293333pt;}
.ya7{bottom:137.186667pt;}
.y10{bottom:140.160000pt;}
.y86{bottom:142.853333pt;}
.y5f{bottom:142.946667pt;}
.y23{bottom:145.186667pt;}
.yf9{bottom:145.346667pt;}
.y8b{bottom:146.813333pt;}
.y92{bottom:147.906667pt;}
.y8e{bottom:149.986667pt;}
.ycb{bottom:156.826667pt;}
.ya1{bottom:157.120000pt;}
.yf8{bottom:162.946667pt;}
.y3f{bottom:165.346667pt;}
.y3c{bottom:172.613333pt;}
.yca{bottom:174.746667pt;}
.yc1{bottom:176.066667pt;}
.y96{bottom:178.106667pt;}
.y1c{bottom:180.386667pt;}
.yf7{bottom:180.573333pt;}
.yc8{bottom:180.933333pt;}
.y4b{bottom:185.986667pt;}
.y17{bottom:188.000000pt;}
.yc0{bottom:189.506667pt;}
.yd0{bottom:190.853333pt;}
.ydf{bottom:191.680000pt;}
.yc9{bottom:192.666667pt;}
.y22{bottom:196.413333pt;}
.yf6{bottom:198.173333pt;}
.y40{bottom:204.800000pt;}
.y4a{bottom:205.186667pt;}
.yc7{bottom:206.533333pt;}
.y9{bottom:210.560000pt;}
.ycf{bottom:213.253333pt;}
.y58{bottom:216.826667pt;}
.y49{bottom:224.413333pt;}
.y46{bottom:225.733333pt;}
.ybd{bottom:229.760000pt;}
.ydc{bottom:230.720000pt;}
.y1b{bottom:231.613333pt;}
.y6b{bottom:232.866667pt;}
.y4{bottom:233.306667pt;}
.yd{bottom:237.533333pt;}
.y16{bottom:237.573333pt;}
.y12{bottom:237.626667pt;}
.yb{bottom:238.400000pt;}
.y3b{bottom:242.813333pt;}
.ybc{bottom:243.200000pt;}
.y1a{bottom:247.613333pt;}
.y36{bottom:248.293333pt;}
.y6a{bottom:250.146667pt;}
.y48{bottom:252.093333pt;}
.y44{bottom:261.373333pt;}
.y35{bottom:262.693333pt;}
.y80{bottom:264.546667pt;}
.y55{bottom:266.853333pt;}
.ybe{bottom:268.800000pt;}
.yc4{bottom:269.986667pt;}
.yda{bottom:270.560000pt;}
.y5e{bottom:271.013333pt;}
.y14{bottom:271.746667pt;}
.yf{bottom:271.813333pt;}
.ya{bottom:271.906667pt;}
.y3{bottom:273.626667pt;}
.y3a{bottom:275.426667pt;}
.yc{bottom:275.973333pt;}
.y11{bottom:276.026667pt;}
.y34{bottom:277.093333pt;}
.yc3{bottom:283.426667pt;}
.y7f{bottom:283.773333pt;}
.ye2{bottom:283.933333pt;}
.y54{bottom:287.013333pt;}
.y74{bottom:289.466667pt;}
.ye4{bottom:291.066667pt;}
.y79{bottom:291.133333pt;}
.y57{bottom:292.253333pt;}
.y69{bottom:295.133333pt;}
.y5d{bottom:296.933333pt;}
.y7e{bottom:304.093333pt;}
.ye1{bottom:304.413333pt;}
.yd7{bottom:310.560000pt;}
.ye3{bottom:311.546667pt;}
.y56{bottom:312.413333pt;}
.y1f{bottom:313.760000pt;}
.y2{bottom:313.946667pt;}
.y73{bottom:315.066667pt;}
.y39{bottom:315.653333pt;}
.y4e{bottom:316.253333pt;}
.y33{bottom:316.293333pt;}
.y78{bottom:316.733333pt;}
.ye0{bottom:324.893333pt;}
.y4d{bottom:333.573333pt;}
.y72{bottom:340.706667pt;}
.yb5{bottom:341.733333pt;}
.y32{bottom:341.920000pt;}
.y77{bottom:342.333333pt;}
.y68{bottom:346.973333pt;}
.y5c{bottom:348.773333pt;}
.yd4{bottom:349.440000pt;}
.ydb{bottom:351.866667pt;}
.y1{bottom:354.306667pt;}
.y38{bottom:355.840000pt;}
.y4c{bottom:359.333333pt;}
.y71{bottom:366.306667pt;}
.y37{bottom:367.040000pt;}
.y31{bottom:367.520000pt;}
.y76{bottom:367.933333pt;}
.y2e{bottom:371.360000pt;}
.y67{bottom:372.893333pt;}
.y5b{bottom:374.693333pt;}
.yd2{bottom:388.320000pt;}
.y70{bottom:391.906667pt;}
.y75{bottom:393.533333pt;}
.yac{bottom:406.266667pt;}
.y2c{bottom:406.560000pt;}
.y45{bottom:407.386667pt;}
.ya0{bottom:413.893333pt;}
.y9b{bottom:414.213333pt;}
.y7{bottom:419.426667pt;}
.yb4{bottom:422.813333pt;}
.y66{bottom:424.773333pt;}
.yf5{bottom:425.280000pt;}
.y5a{bottom:426.560000pt;}
.yab{bottom:431.866667pt;}
.y51{bottom:435.680000pt;}
.yaa{bottom:436.293333pt;}
.y85{bottom:437.666667pt;}
.y9f{bottom:439.493333pt;}
.yb3{bottom:440.413333pt;}
.y2a{bottom:441.760000pt;}
.yf4{bottom:442.880000pt;}
.yce{bottom:443.653333pt;}
.yf1{bottom:444.893333pt;}
.y65{bottom:450.693333pt;}
.y59{bottom:452.480000pt;}
.y50{bottom:452.960000pt;}
.y2f{bottom:453.760000pt;}
.y43{bottom:457.466667pt;}
.yb2{bottom:458.013333pt;}
.y30{bottom:458.813333pt;}
.yf3{bottom:460.480000pt;}
.ycd{bottom:461.253333pt;}
.yf0{bottom:462.533333pt;}
.y9e{bottom:465.093333pt;}
.y9a{bottom:465.413333pt;}
.y84{bottom:466.466667pt;}
.yb1{bottom:475.613333pt;}
.y64{bottom:476.613333pt;}
.y28{bottom:476.960000pt;}
.yf2{bottom:478.080000pt;}
.y4f{bottom:478.746667pt;}
.yef{bottom:480.133333pt;}
.y47{bottom:483.360000pt;}
.y42{bottom:486.306667pt;}
.y2d{bottom:488.960000pt;}
.y27{bottom:494.400000pt;}
.y83{bottom:495.293333pt;}
.ybb{bottom:496.506667pt;}
.yb8{bottom:496.800000pt;}
.yee{bottom:497.733333pt;}
.yb0{bottom:503.933333pt;}
.yba{bottom:514.426667pt;}
.yb7{bottom:514.720000pt;}
.yed{bottom:515.333333pt;}
.y9d{bottom:516.320000pt;}
.y99{bottom:516.640000pt;}
.y26{bottom:523.200000pt;}
.y82{bottom:524.093333pt;}
.yaf{bottom:526.333333pt;}
.y63{bottom:528.453333pt;}
.yb9{bottom:532.346667pt;}
.yb6{bottom:532.640000pt;}
.y9c{bottom:541.920000pt;}
.y98{bottom:542.240000pt;}
.yae{bottom:548.733333pt;}
.y25{bottom:552.000000pt;}
.y81{bottom:552.893333pt;}
.y62{bottom:554.400000pt;}
.yd1{bottom:555.293333pt;}
.y61{bottom:555.493333pt;}
.y41{bottom:559.706667pt;}
.y8{bottom:622.493333pt;}
.h2b{height:31.343437pt;}
.h32{height:32.243750pt;}
.h34{height:35.085938pt;}
.h31{height:39.943750pt;}
.h30{height:40.040000pt;}
.h38{height:43.065000pt;}
.h39{height:43.162875pt;}
.h35{height:45.022500pt;}
.h3e{height:45.120375pt;}
.h13{height:46.781250pt;}
.h23{height:46.874812pt;}
.h26{height:48.937500pt;}
.h25{height:49.035375pt;}
.h1a{height:49.148438pt;}
.h3d{height:54.734062pt;}
.h28{height:56.306250pt;}
.h24{height:57.256875pt;}
.h11{height:62.219062pt;}
.h2c{height:62.312625pt;}
.h3c{height:63.050313pt;}
.h1e{height:63.656250pt;}
.h10{height:64.006250pt;}
.h14{height:64.102500pt;}
.h2d{height:65.086875pt;}
.h2e{height:65.184750pt;}
.h2f{height:69.154375pt;}
.h20{height:70.171875pt;}
.h29{height:70.265437pt;}
.h3a{height:71.944688pt;}
.h2{height:72.187500pt;}
.h3{height:72.283750pt;}
.h27{height:73.406250pt;}
.h19{height:74.605125pt;}
.h1d{height:76.671562pt;}
.h3b{height:78.124687pt;}
.h22{height:80.368750pt;}
.h21{height:80.465000pt;}
.h33{height:81.823500pt;}
.h12{height:84.356667pt;}
.h18{height:84.662813pt;}
.h17{height:87.156562pt;}
.h4{height:88.165000pt;}
.h9{height:93.562500pt;}
.h8{height:93.656062pt;}
.h15{height:95.484375pt;}
.h1f{height:98.296875pt;}
.h1{height:112.131250pt;}
.h1b{height:121.471563pt;}
.h36{height:126.038437pt;}
.h37{height:126.146625pt;}
.h2a{height:133.115417pt;}
.h1c{height:166.271562pt;}
.h16{height:179.360000pt;}
.hb{height:211.877120pt;}
.h6{height:211.972992pt;}
.hf{height:268.800000pt;}
.h7{height:481.600000pt;}
.h5{height:509.440000pt;}
.he{height:509.920000pt;}
.hc{height:537.760000pt;}
.hd{height:593.600000pt;}
.ha{height:593.760000pt;}
.h0{height:720.000000pt;}
.wc{width:48.960000pt;}
.w6{width:99.840000pt;}
.w7{width:116.000000pt;}
.w2{width:127.520000pt;}
.w8{width:134.720000pt;}
.w5{width:188.320000pt;}
.wa{width:246.720000pt;}
.w9{width:289.440000pt;}
.wb{width:348.480000pt;}
.w3{width:425.920000pt;}
.w4{width:538.400000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x19{left:9.826667pt;}
.x4{left:12.933333pt;}
.x5a{left:24.223981pt;}
.x79{left:38.207981pt;}
.x1{left:42.783981pt;}
.x93{left:44.415981pt;}
.x7a{left:56.767981pt;}
.x3e{left:58.079981pt;}
.x1f{left:61.440000pt;}
.x5c{left:63.711981pt;}
.x78{left:65.087981pt;}
.x17{left:71.071981pt;}
.x6{left:72.607981pt;}
.x6f{left:73.759981pt;}
.x31{left:75.007981pt;}
.x20{left:78.687981pt;}
.x3b{left:81.119981pt;}
.x6b{left:82.495981pt;}
.x42{left:83.455981pt;}
.x73{left:85.887981pt;}
.x97{left:87.199981pt;}
.x1e{left:90.527981pt;}
.x5b{left:93.311981pt;}
.x50{left:96.223981pt;}
.x74{left:97.407981pt;}
.x6e{left:99.583981pt;}
.x9b{left:109.727981pt;}
.x23{left:112.287981pt;}
.x9c{left:113.727981pt;}
.x2c{left:116.479981pt;}
.x9e{left:118.399981pt;}
.x96{left:125.951981pt;}
.x98{left:135.866648pt;}
.x2d{left:144.986648pt;}
.x32{left:146.746648pt;}
.x24{left:150.853314pt;}
.x33{left:155.706648pt;}
.xb{left:163.293314pt;}
.x22{left:172.293314pt;}
.x9{left:174.653314pt;}
.xa{left:179.933314pt;}
.x39{left:184.613314pt;}
.x8{left:189.053314pt;}
.x35{left:192.453314pt;}
.xaa{left:214.559981pt;}
.x21{left:272.320000pt;}
.x10{left:288.893314pt;}
.x30{left:304.453314pt;}
.x69{left:323.546648pt;}
.x94{left:328.320000pt;}
.x7e{left:331.293314pt;}
.x6a{left:332.479981pt;}
.x64{left:338.853314pt;}
.x65{left:340.773314pt;}
.x56{left:341.759981pt;}
.x7d{left:342.653314pt;}
.x57{left:343.679981pt;}
.x9d{left:347.999981pt;}
.x63{left:349.119981pt;}
.x55{left:351.999981pt;}
.x8f{left:353.533314pt;}
.x4a{left:357.186648pt;}
.x4b{left:359.106648pt;}
.x7c{left:365.053314pt;}
.x49{left:367.426648pt;}
.x2a{left:383.746648pt;}
.x29{left:385.506648pt;}
.x90{left:391.933314pt;}
.x7b{left:430.813314pt;}
.x2b{left:432.386648pt;}
.x36{left:451.653314pt;}
.x25{left:475.266648pt;}
.x3f{left:483.613314pt;}
.xa0{left:489.146648pt;}
.xa2{left:492.506648pt;}
.xa3{left:498.466648pt;}
.x9f{left:505.346648pt;}
.x6d{left:513.053314pt;}
.x40{left:519.613314pt;}
.xa1{left:527.746648pt;}
.x37{left:534.813314pt;}
.x75{left:542.533314pt;}
.xf{left:547.266648pt;}
.x2f{left:563.453314pt;}
.x3a{left:568.386648pt;}
.x16{left:575.613314pt;}
.xd{left:580.253314pt;}
.xe{left:586.333314pt;}
.xc{left:591.933314pt;}
.x67{left:596.573314pt;}
.x59{left:599.493314pt;}
.x66{left:604.893314pt;}
.x58{left:607.813314pt;}
.x68{left:611.773314pt;}
.x4d{left:614.879981pt;}
.x4c{left:623.199981pt;}
.x3{left:624.960000pt;}
.x4e{left:630.079981pt;}
.x91{left:631.039981pt;}
.x2{left:634.693314pt;}
.x3c{left:638.533314pt;}
.x18{left:640.640000pt;}
.x71{left:648.639981pt;}
.x9a{left:649.693314pt;}
.x8e{left:659.106648pt;}
.x72{left:664.159981pt;}
.x8d{left:673.666648pt;}
.xa9{left:676.026648pt;}
.xa7{left:680.826648pt;}
.x76{left:685.253314pt;}
.xa8{left:689.466648pt;}
.x95{left:711.199981pt;}
.x92{left:717.146648pt;}
.x34{left:719.586648pt;}
.x7f{left:741.413314pt;}
.x5{left:752.320000pt;}
.x4f{left:761.053314pt;}
.x81{left:764.933314pt;}
.x80{left:766.213314pt;}
.x26{left:783.266648pt;}
.x2e{left:801.186648pt;}
.x70{left:813.439981pt;}
.x1a{left:828.800000pt;}
.x5e{left:846.586648pt;}
.x52{left:849.506648pt;}
.x5d{left:860.666648pt;}
.x5f{left:862.106648pt;}
.x51{left:863.586648pt;}
.x44{left:864.933314pt;}
.x43{left:879.013314pt;}
.x45{left:880.453314pt;}
.x6c{left:893.893314pt;}
.x38{left:895.546648pt;}
.x85{left:914.653314pt;}
.x1b{left:928.480000pt;}
.x84{left:936.613314pt;}
.x27{left:938.213314pt;}
.x12{left:942.786648pt;}
.xa4{left:950.266648pt;}
.xa6{left:953.626648pt;}
.x11{left:957.626648pt;}
.x14{left:979.906648pt;}
.x8b{left:981.786648pt;}
.xa5{left:984.026648pt;}
.x15{left:999.906648pt;}
.x7{left:1011.293314pt;}
.x3d{left:1020.346648pt;}
.x83{left:1024.133314pt;}
.x8c{left:1037.026648pt;}
.x13{left:1038.786648pt;}
.x1c{left:1044.320000pt;}
.x82{left:1046.079981pt;}
.x8a{left:1050.373314pt;}
.x1d{left:1064.733314pt;}
.x61{left:1072.986648pt;}
.x28{left:1076.773314pt;}
.x99{left:1080.133314pt;}
.x62{left:1083.226648pt;}
.x54{left:1086.146648pt;}
.x47{left:1091.293314pt;}
.x48{left:1101.533314pt;}
.x60{left:1109.306648pt;}
.x53{left:1112.226648pt;}
.x46{left:1127.613314pt;}
.x86{left:1150.533314pt;}
.x87{left:1158.853314pt;}
.x89{left:1160.346648pt;}
.x88{left:1169.466648pt;}
.x41{left:1214.333314pt;}
.x77{left:1223.773314pt;}
}




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