
    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_9c003730b818442601b5ea9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_9941934434be80e6d7a2ff47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_42e905f238946ea6bf48e389.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_f94543bd364d2c57c1d481ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983887;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_505ac91d70a4cc50335d6c2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_eee4956eb0099acb630eaad0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5ff63f973b4485dc2772d6ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_a5b2c0e81f168a2dda4a686f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.873535;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_d1570ff28ea30f1c867b24f0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921875;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_bde3077949f1b08c52729569.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871094;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_81cc29dd338303193b8db4e9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v9{vertical-align:-23.610000px;}
.v6{vertical-align:-18.810000px;}
.vb{vertical-align:-15.840600px;}
.v3{vertical-align:-12.000000px;}
.va{vertical-align:-1.461959px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.629000px;}
.v2{vertical-align:12.000000px;}
.v7{vertical-align:15.840000px;}
.v8{vertical-align:18.810000px;}
.v5{vertical-align:20.640000px;}
.v4{vertical-align:23.610000px;}
.ls15{letter-spacing:-2.640000px;}
.ls3{letter-spacing:-1.320000px;}
.ls36{letter-spacing:-1.264397px;}
.ls32{letter-spacing:-1.185372px;}
.ls24{letter-spacing:-0.987810px;}
.ls34{letter-spacing:-0.984782px;}
.ls16{letter-spacing:-0.912000px;}
.ls22{letter-spacing:-0.875362px;}
.ls26{letter-spacing:-0.869273px;}
.ls1a{letter-spacing:-0.855000px;}
.ls29{letter-spacing:-0.750736px;}
.ls2a{letter-spacing:-0.735544px;}
.ls37{letter-spacing:-0.711223px;}
.ls28{letter-spacing:-0.671711px;}
.ls20{letter-spacing:-0.632198px;}
.ls33{letter-spacing:-0.620048px;}
.ls2d{letter-spacing:-0.601808px;}
.ls2e{letter-spacing:-0.583574px;}
.ls4{letter-spacing:-0.570000px;}
.ls1b{letter-spacing:-0.495900px;}
.ls9{letter-spacing:-0.480000px;}
.ls30{letter-spacing:-0.434636px;}
.ls2b{letter-spacing:-0.367772px;}
.ls23{letter-spacing:-0.364734px;}
.ls2f{letter-spacing:-0.328261px;}
.ls31{letter-spacing:-0.276587px;}
.ls2c{letter-spacing:-0.267470px;}
.ls25{letter-spacing:-0.197562px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000600px;}
.ls12{letter-spacing:0.001800px;}
.ls10{letter-spacing:0.004560px;}
.lsa{letter-spacing:0.005040px;}
.ls17{letter-spacing:0.006180px;}
.ls6{letter-spacing:0.006780px;}
.ls7{letter-spacing:0.007200px;}
.lse{letter-spacing:0.007380px;}
.lsd{letter-spacing:0.008400px;}
.lsf{letter-spacing:0.009000px;}
.ls1f{letter-spacing:0.340414px;}
.ls21{letter-spacing:0.389045px;}
.ls1d{letter-spacing:0.486306px;}
.ls27{letter-spacing:0.486312px;}
.ls2{letter-spacing:0.576000px;}
.ls35{letter-spacing:0.632198px;}
.ls3a{letter-spacing:1.008000px;}
.ls1{letter-spacing:1.248000px;}
.ls13{letter-spacing:1.922520px;}
.ls38{letter-spacing:4.027800px;}
.ls19{letter-spacing:4.166400px;}
.ls39{letter-spacing:4.711200px;}
.ls1e{letter-spacing:4.899538px;}
.lsb{letter-spacing:5.391600px;}
.ls11{letter-spacing:6.555000px;}
.ls14{letter-spacing:9.744000px;}
.lsc{letter-spacing:10.176000px;}
.ls8{letter-spacing:10.656000px;}
.ls1c{letter-spacing:53.451600px;}
.ls5{letter-spacing:124.656000px;}
.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;}
}
.ws2{word-spacing:-15.846000px;}
.ws9{word-spacing:-15.276000px;}
.ws1{word-spacing:-13.344000px;}
.ws2c{word-spacing:-12.864000px;}
.ws42{word-spacing:-12.432000px;}
.ws73{word-spacing:-11.476822px;}
.ws72{word-spacing:-11.379560px;}
.ws70{word-spacing:-11.330930px;}
.ws41{word-spacing:-10.704000px;}
.ws33{word-spacing:-9.190680px;}
.ws76{word-spacing:-8.929802px;}
.ws75{word-spacing:-8.732240px;}
.ws59{word-spacing:-8.694780px;}
.ws7f{word-spacing:-8.653216px;}
.ws7d{word-spacing:-8.495166px;}
.ws71{word-spacing:-8.297604px;}
.ws84{word-spacing:-8.242988px;}
.ws32{word-spacing:-7.923000px;}
.ws7c{word-spacing:-7.914728px;}
.ws74{word-spacing:-7.878254px;}
.ws80{word-spacing:-7.744430px;}
.ws86{word-spacing:-7.665406px;}
.ws83{word-spacing:-7.659414px;}
.ws78{word-spacing:-7.556039px;}
.ws7b{word-spacing:-7.367627px;}
.ws85{word-spacing:-7.258207px;}
.ws79{word-spacing:-7.188267px;}
.ws82{word-spacing:-6.954230px;}
.ws81{word-spacing:-6.820495px;}
.ws36{word-spacing:-6.555000px;}
.wsa7{word-spacing:-4.902000px;}
.ws39{word-spacing:-4.731000px;}
.wsa0{word-spacing:-4.389000px;}
.ws58{word-spacing:-3.933000px;}
.ws54{word-spacing:-3.762000px;}
.ws5c{word-spacing:-2.964000px;}
.wsae{word-spacing:-2.907000px;}
.ws3{word-spacing:-2.664000px;}
.wsaa{word-spacing:-2.622000px;}
.ws5e{word-spacing:-2.565000px;}
.ws34{word-spacing:-2.052000px;}
.ws6c{word-spacing:-1.881000px;}
.ws56{word-spacing:-1.824000px;}
.ws4e{word-spacing:-1.368000px;}
.ws4{word-spacing:-1.248000px;}
.wsa3{word-spacing:-1.104000px;}
.wsaf{word-spacing:-1.008000px;}
.wsab{word-spacing:-0.969000px;}
.ws98{word-spacing:-0.632198px;}
.ws6{word-spacing:-0.576000px;}
.ws6b{word-spacing:-0.513000px;}
.ws91{word-spacing:-0.486312px;}
.ws99{word-spacing:-0.340414px;}
.ws57{word-spacing:-0.228000px;}
.ws25{word-spacing:-0.171000px;}
.ws44{word-spacing:-0.057000px;}
.ws0{word-spacing:0.000000px;}
.ws87{word-spacing:0.094830px;}
.ws50{word-spacing:0.228000px;}
.ws95{word-spacing:0.267470px;}
.ws90{word-spacing:0.276587px;}
.ws38{word-spacing:0.288000px;}
.ws93{word-spacing:0.434636px;}
.ws23{word-spacing:0.480000px;}
.ws60{word-spacing:0.495900px;}
.ws35{word-spacing:0.513000px;}
.ws8{word-spacing:0.570000px;}
.ws96{word-spacing:0.601808px;}
.ws97{word-spacing:0.620048px;}
.ws8c{word-spacing:0.632198px;}
.ws92{word-spacing:0.671711px;}
.ws5{word-spacing:0.672000px;}
.ws9a{word-spacing:0.711223px;}
.ws94{word-spacing:0.735544px;}
.ws43{word-spacing:0.741000px;}
.ws5f{word-spacing:0.855000px;}
.ws8f{word-spacing:0.869273px;}
.ws8d{word-spacing:0.875362px;}
.ws4c{word-spacing:0.912000px;}
.ws8e{word-spacing:0.987810px;}
.ws1f{word-spacing:1.311000px;}
.ws7{word-spacing:1.320000px;}
.ws2e{word-spacing:1.881000px;}
.ws55{word-spacing:1.938000px;}
.ws46{word-spacing:2.109000px;}
.ws37{word-spacing:2.280000px;}
.wsac{word-spacing:2.451000px;}
.ws4b{word-spacing:2.736000px;}
.ws20{word-spacing:3.021000px;}
.ws3f{word-spacing:3.306000px;}
.ws19{word-spacing:3.363000px;}
.ws26{word-spacing:3.762000px;}
.wsa5{word-spacing:4.047000px;}
.ws9f{word-spacing:4.161000px;}
.ws67{word-spacing:4.389000px;}
.ws52{word-spacing:4.560000px;}
.ws40{word-spacing:4.617000px;}
.ws3a{word-spacing:4.788000px;}
.ws2f{word-spacing:5.415000px;}
.ws69{word-spacing:5.700000px;}
.ws29{word-spacing:5.814000px;}
.wsc{word-spacing:5.928000px;}
.ws28{word-spacing:6.099000px;}
.wsa9{word-spacing:6.327000px;}
.ws6d{word-spacing:6.498000px;}
.ws5b{word-spacing:6.555000px;}
.ws66{word-spacing:6.954000px;}
.ws6f{word-spacing:7.011000px;}
.ws18{word-spacing:7.239000px;}
.ws3e{word-spacing:7.353000px;}
.ws1d{word-spacing:7.467000px;}
.ws61{word-spacing:7.680000px;}
.ws2a{word-spacing:7.752000px;}
.ws1a{word-spacing:7.809000px;}
.ws24{word-spacing:7.923000px;}
.ws3d{word-spacing:8.016000px;}
.ws2b{word-spacing:8.151000px;}
.ws21{word-spacing:8.322000px;}
.wse{word-spacing:8.379000px;}
.ws14{word-spacing:8.664000px;}
.ws63{word-spacing:8.778000px;}
.ws16{word-spacing:9.006000px;}
.ws10{word-spacing:9.291000px;}
.ws1b{word-spacing:9.348000px;}
.ws12{word-spacing:9.690000px;}
.ws65{word-spacing:9.747000px;}
.ws45{word-spacing:9.918000px;}
.ws5a{word-spacing:10.602000px;}
.ws53{word-spacing:11.115000px;}
.ws4d{word-spacing:11.400000px;}
.ws3c{word-spacing:11.457000px;}
.wsa2{word-spacing:11.514000px;}
.wsa4{word-spacing:11.799000px;}
.ws47{word-spacing:11.913000px;}
.wsd{word-spacing:12.027000px;}
.wsf{word-spacing:12.198000px;}
.ws1c{word-spacing:12.369000px;}
.ws51{word-spacing:12.882000px;}
.ws1e{word-spacing:13.338000px;}
.ws11{word-spacing:13.395000px;}
.ws6e{word-spacing:13.509000px;}
.ws13{word-spacing:13.680000px;}
.ws31{word-spacing:13.851000px;}
.ws9e{word-spacing:13.965000px;}
.ws4f{word-spacing:14.079000px;}
.ws68{word-spacing:14.250000px;}
.ws5d{word-spacing:14.763000px;}
.wsa6{word-spacing:14.877000px;}
.ws15{word-spacing:15.219000px;}
.ws22{word-spacing:15.276000px;}
.ws30{word-spacing:15.675000px;}
.wsad{word-spacing:15.732000px;}
.wsa{word-spacing:16.074000px;}
.ws17{word-spacing:16.131000px;}
.wsb{word-spacing:16.473000px;}
.wsa1{word-spacing:17.271000px;}
.ws62{word-spacing:17.613000px;}
.ws8a{word-spacing:18.240000px;}
.ws4a{word-spacing:18.810000px;}
.ws48{word-spacing:19.266000px;}
.ws64{word-spacing:21.090000px;}
.wsa8{word-spacing:21.432000px;}
.ws89{word-spacing:21.945000px;}
.ws3b{word-spacing:23.256000px;}
.ws6a{word-spacing:23.997000px;}
.ws2d{word-spacing:28.329000px;}
.ws8b{word-spacing:35.055000px;}
.ws49{word-spacing:35.682000px;}
.ws27{word-spacing:37.962000px;}
.ws9d{word-spacing:164.160000px;}
.ws9b{word-spacing:166.800000px;}
.ws88{word-spacing:248.580411px;}
.ws9c{word-spacing:276.192000px;}
.ws77{word-spacing:308.007060px;}
.ws7e{word-spacing:343.015047px;}
.ws7a{word-spacing:475.190315px;}
._32{margin-left:-29.286600px;}
._6{margin-left:-15.208800px;}
._19{margin-left:-12.319800px;}
._f{margin-left:-10.425300px;}
._2e{margin-left:-9.080100px;}
._d{margin-left:-7.981200px;}
._b{margin-left:-6.875400px;}
._8{margin-left:-4.923600px;}
._a{margin-left:-3.657600px;}
._4{margin-left:-2.224800px;}
._2{margin-left:-1.087200px;}
._3{width:1.248000px;}
._0{width:2.671200px;}
._9{width:3.690900px;}
._7{width:4.910400px;}
._c{width:6.099000px;}
._e{width:7.740600px;}
._12{width:9.279600px;}
._17{width:10.560900px;}
._13{width:11.616600px;}
._14{width:13.104300px;}
._16{width:14.232900px;}
._27{width:15.472500px;}
._11{width:17.065800px;}
._18{width:18.073200px;}
._1d{width:19.116300px;}
._21{width:20.141400px;}
._2a{width:21.148200px;}
._15{width:22.275600px;}
._20{width:23.535300px;}
._24{width:25.182600px;}
._1c{width:26.961000px;}
._1e{width:28.500000px;}
._10{width:29.759700px;}
._2d{width:31.424100px;}
._2c{width:33.242400px;}
._1b{width:34.656000px;}
._1f{width:36.081000px;}
._2f{width:38.110500px;}
._2b{width:40.840500px;}
._22{width:42.789900px;}
._23{width:44.129400px;}
._30{width:45.582900px;}
._38{width:47.455200px;}
._28{width:49.572900px;}
._29{width:51.305700px;}
._31{width:53.505900px;}
._35{width:58.590300px;}
._25{width:61.060800px;}
._26{width:64.176300px;}
._33{width:72.851700px;}
._36{width:79.093800px;}
._1a{width:89.976000px;}
._3a{width:98.553600px;}
._37{width:103.560000px;}
._39{width:158.880000px;}
._5{width:244.373400px;}
._34{width:384.714389px;}
._1{width:1964.983200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:24.315600px;}
.fsa{font-size:27.840000px;}
.fs9{font-size:33.060000px;}
.fsf{font-size:33.433800px;}
.fsd{font-size:36.473400px;}
.fsc{font-size:39.512400px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsb{font-size:48.630600px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:5.042400px;}
.y13e{bottom:22.173900px;}
.y13d{bottom:22.720650px;}
.y14c{bottom:27.115954px;}
.y14b{bottom:36.953850px;}
.y13c{bottom:41.856450px;}
.y13b{bottom:42.403200px;}
.y14a{bottom:46.064560px;}
.y28{bottom:53.517300px;}
.y149{bottom:56.086342px;}
.y141{bottom:56.803469px;}
.y139{bottom:57.165450px;}
.y148{bottom:65.924238px;}
.y5{bottom:66.525004px;}
.y13a{bottom:67.553700px;}
.y138{bottom:69.195930px;}
.y27{bottom:70.017300px;}
.y140{bottom:72.109950px;}
.y147{bottom:75.034948px;}
.y146{bottom:84.872844px;}
.y137{bottom:85.596600px;}
.y142{bottom:85.778700px;}
.y145{bottom:93.983554px;}
.y4{bottom:97.125005px;}
.y136{bottom:99.265350px;}
.yfb{bottom:99.921300px;}
.yd7{bottom:99.921450px;}
.y72{bottom:99.923100px;}
.y8c{bottom:99.923250px;}
.y144{bottom:103.821450px;}
.y2f{bottom:103.933050px;}
.y109{bottom:109.673100px;}
.y102{bottom:109.673250px;}
.yfa{bottom:116.421300px;}
.yd6{bottom:116.421450px;}
.y8b{bottom:116.423250px;}
.y143{bottom:116.578950px;}
.y71{bottom:119.423100px;}
.ybf{bottom:119.423250px;}
.y2e{bottom:120.433050px;}
.y101{bottom:126.173250px;}
.y1dc{bottom:127.019550px;}
.y108{bottom:129.173100px;}
.yf9{bottom:132.921300px;}
.yd5{bottom:132.921450px;}
.y8a{bottom:132.923250px;}
.y1a1{bottom:138.173100px;}
.y70{bottom:138.923100px;}
.ybe{bottom:138.923250px;}
.y23{bottom:139.264499px;}
.y100{bottom:142.673250px;}
.y135{bottom:142.839460px;}
.y1db{bottom:143.519550px;}
.y107{bottom:148.673100px;}
.yf8{bottom:149.421300px;}
.yd4{bottom:149.421450px;}
.y89{bottom:149.423250px;}
.y134{bottom:152.677356px;}
.y1a0{bottom:154.673100px;}
.y128{bottom:155.215950px;}
.y6f{bottom:158.423100px;}
.ybd{bottom:158.423250px;}
.yff{bottom:159.173250px;}
.y1da{bottom:160.019550px;}
.y133{bottom:162.699138px;}
.yf7{bottom:165.921300px;}
.yd3{bottom:165.921450px;}
.y88{bottom:165.923250px;}
.y12c{bottom:167.244600px;}
.y127{bottom:167.426700px;}
.y12b{bottom:167.973450px;}
.y106{bottom:168.173100px;}
.y19f{bottom:171.173100px;}
.y132{bottom:171.809848px;}
.y17a{bottom:175.673250px;}
.y1d9{bottom:176.519550px;}
.y6e{bottom:177.923100px;}
.ybc{bottom:177.923250px;}
.y131{bottom:181.647744px;}
.yf6{bottom:182.421300px;}
.yd2{bottom:182.421450px;}
.y87{bottom:182.423250px;}
.y12a{bottom:182.735700px;}
.y12d{bottom:184.011600px;}
.y48{bottom:187.673100px;}
.y130{bottom:190.758454px;}
.y179{bottom:192.173250px;}
.y1d8{bottom:193.019550px;}
.y129{bottom:196.585433px;}
.y1a{bottom:196.933500px;}
.y6d{bottom:197.423100px;}
.ybb{bottom:197.423250px;}
.yf5{bottom:198.921300px;}
.yd1{bottom:198.921450px;}
.y86{bottom:198.923250px;}
.y12f{bottom:200.596350px;}
.y19e{bottom:204.173100px;}
.y47{bottom:207.173100px;}
.y178{bottom:208.673250px;}
.y22{bottom:209.518500px;}
.y1d7{bottom:209.519550px;}
.y19{bottom:209.533503px;}
.y12e{bottom:213.353700px;}
.yf4{bottom:215.421300px;}
.yd0{bottom:215.421450px;}
.y85{bottom:215.423250px;}
.y6c{bottom:216.923100px;}
.yba{bottom:216.923250px;}
.y19d{bottom:220.673100px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y177{bottom:225.173250px;}
.y1d6{bottom:226.019550px;}
.y46{bottom:226.673100px;}
.yf3{bottom:231.921300px;}
.ycf{bottom:231.921450px;}
.y84{bottom:231.923250px;}
.y11f{bottom:234.676950px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y6b{bottom:236.423100px;}
.yb9{bottom:236.423250px;}
.y19c{bottom:237.173100px;}
.y176{bottom:241.673250px;}
.y1d5{bottom:242.519550px;}
.y126{bottom:242.523002px;}
.y45{bottom:246.173100px;}
.yf2{bottom:248.421300px;}
.ye6{bottom:248.421450px;}
.y83{bottom:248.423250px;}
.y125{bottom:251.633712px;}
.y11a{bottom:252.355350px;}
.y11d{bottom:252.719700px;}
.y19b{bottom:253.673100px;}
.y6a{bottom:255.923100px;}
.yb8{bottom:255.923250px;}
.y175{bottom:258.173250px;}
.y1d4{bottom:259.019550px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y124{bottom:261.655494px;}
.y119{bottom:264.383700px;}
.yf1{bottom:264.921300px;}
.ye5{bottom:264.921450px;}
.y82{bottom:264.923250px;}
.y11c{bottom:264.930450px;}
.y11e{bottom:265.477200px;}
.y44{bottom:265.673100px;}
.y19a{bottom:270.173100px;}
.y123{bottom:270.766204px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y174{bottom:274.673250px;}
.y69{bottom:275.423100px;}
.yb7{bottom:275.423250px;}
.y1d3{bottom:275.519550px;}
.y11b{bottom:278.601462px;}
.y122{bottom:280.604100px;}
.yf0{bottom:281.421300px;}
.ye4{bottom:281.421450px;}
.y81{bottom:281.423250px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y43{bottom:285.173100px;}
.y199{bottom:286.673100px;}
.y173{bottom:291.173250px;}
.y121{bottom:291.721350px;}
.y1d2{bottom:292.019550px;}
.y120{bottom:293.361450px;}
.y68{bottom:294.923100px;}
.yb6{bottom:294.923250px;}
.yef{bottom:297.921300px;}
.ye3{bottom:297.921450px;}
.y80{bottom:297.923250px;}
.y198{bottom:303.173100px;}
.y42{bottom:304.673100px;}
.y172{bottom:307.673250px;}
.y1d1{bottom:308.519550px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yee{bottom:314.421300px;}
.ye2{bottom:314.421450px;}
.y67{bottom:314.423100px;}
.y7f{bottom:314.423250px;}
.y118{bottom:317.615242px;}
.y197{bottom:319.673100px;}
.y10c{bottom:321.245850px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y41{bottom:324.173100px;}
.y171{bottom:324.173250px;}
.y1d0{bottom:325.019550px;}
.y117{bottom:327.453138px;}
.yed{bottom:330.921300px;}
.ye1{bottom:330.921450px;}
.y7e{bottom:330.923250px;}
.y10f{bottom:332.727450px;}
.y10b{bottom:333.456600px;}
.y66{bottom:333.923100px;}
.yb5{bottom:333.923250px;}
.y196{bottom:336.173100px;}
.y116{bottom:336.563848px;}
.y1cf{bottom:341.519550px;}
.y40{bottom:343.673100px;}
.y115{bottom:346.401744px;}
.yec{bottom:347.421300px;}
.ye0{bottom:347.421450px;}
.y7d{bottom:347.423250px;}
.y11{bottom:348.133500px;}
.y10e{bottom:349.859100px;}
.y110{bottom:351.134700px;}
.y195{bottom:352.673100px;}
.y65{bottom:353.423100px;}
.yb4{bottom:353.423250px;}
.y114{bottom:355.512454px;}
.y1ce{bottom:358.019550px;}
.yce{bottom:363.173100px;}
.y10d{bottom:363.524118px;}
.yeb{bottom:363.921300px;}
.ydf{bottom:363.921450px;}
.y7c{bottom:363.923250px;}
.y113{bottom:365.350350px;}
.y194{bottom:369.173100px;}
.y64{bottom:372.923100px;}
.yb3{bottom:372.923250px;}
.y1cd{bottom:374.519550px;}
.y112{bottom:376.649700px;}
.y111{bottom:378.289950px;}
.yea{bottom:380.421300px;}
.yde{bottom:380.421450px;}
.y7b{bottom:380.423250px;}
.y3f{bottom:382.673100px;}
.y193{bottom:385.673100px;}
.y10{bottom:386.785499px;}
.y1cc{bottom:391.019550px;}
.y63{bottom:392.423100px;}
.yb2{bottom:392.423250px;}
.ye9{bottom:396.921300px;}
.ydd{bottom:396.921450px;}
.y7a{bottom:396.923250px;}
.ycd{bottom:402.173100px;}
.y1cb{bottom:407.519550px;}
.yf{bottom:408.044999px;}
.y62{bottom:411.923100px;}
.yb1{bottom:411.923250px;}
.ye8{bottom:413.421300px;}
.ydc{bottom:413.421450px;}
.y192{bottom:418.673100px;}
.y3e{bottom:421.673100px;}
.y1ca{bottom:424.019550px;}
.ye7{bottom:429.921300px;}
.ydb{bottom:429.921450px;}
.y61{bottom:431.423100px;}
.yb0{bottom:431.423250px;}
.y191{bottom:435.173100px;}
.y1c9{bottom:440.519550px;}
.y3d{bottom:441.173100px;}
.yda{bottom:446.421450px;}
.y60{bottom:450.923100px;}
.yaf{bottom:450.923250px;}
.y190{bottom:451.673100px;}
.y1c8{bottom:457.019550px;}
.y3c{bottom:460.673100px;}
.yd9{bottom:462.921450px;}
.y18f{bottom:468.173100px;}
.y5f{bottom:470.423100px;}
.yae{bottom:470.423250px;}
.y1c7{bottom:473.519550px;}
.yd8{bottom:479.421450px;}
.y3b{bottom:480.173100px;}
.y18e{bottom:484.673100px;}
.ye{bottom:484.864502px;}
.y5e{bottom:489.923100px;}
.yad{bottom:489.923250px;}
.y1c6{bottom:490.019550px;}
.y3a{bottom:499.673100px;}
.y18d{bottom:501.173100px;}
.yd{bottom:502.864502px;}
.y1c5{bottom:506.519550px;}
.y5d{bottom:509.423100px;}
.yac{bottom:509.423250px;}
.y18c{bottom:517.673100px;}
.y39{bottom:519.173100px;}
.yc{bottom:520.864502px;}
.y1c4{bottom:523.019550px;}
.yfe{bottom:525.923100px;}
.y5c{bottom:528.923100px;}
.yab{bottom:528.923250px;}
.y18b{bottom:534.173100px;}
.y38{bottom:538.673100px;}
.yb{bottom:538.864499px;}
.y1c3{bottom:539.519550px;}
.y104{bottom:542.423100px;}
.y5b{bottom:548.423100px;}
.yaa{bottom:548.423250px;}
.y18a{bottom:550.673100px;}
.y1c2{bottom:556.019550px;}
.ya{bottom:556.864499px;}
.y37{bottom:558.173100px;}
.y103{bottom:564.923100px;}
.y189{bottom:567.173100px;}
.y5a{bottom:567.923100px;}
.ya9{bottom:567.923250px;}
.y1c1{bottom:572.519550px;}
.y36{bottom:577.673100px;}
.y188{bottom:583.673100px;}
.y59{bottom:587.423100px;}
.ya8{bottom:587.423250px;}
.y1c0{bottom:589.019550px;}
.y35{bottom:597.173100px;}
.y187{bottom:600.173100px;}
.y1bf{bottom:605.519550px;}
.y58{bottom:606.923100px;}
.ya7{bottom:606.923250px;}
.y168{bottom:607.333350px;}
.y34{bottom:616.673100px;}
.y1be{bottom:622.019550px;}
.y167{bottom:623.833350px;}
.y57{bottom:626.423100px;}
.ya6{bottom:626.423250px;}
.y9{bottom:626.610001px;}
.y186{bottom:633.173100px;}
.y33{bottom:636.173100px;}
.y1bd{bottom:638.519550px;}
.y166{bottom:640.333350px;}
.y8{bottom:645.510000px;}
.y56{bottom:645.923100px;}
.ya5{bottom:645.923250px;}
.y14e{bottom:646.206900px;}
.y185{bottom:649.673100px;}
.y1bc{bottom:655.019550px;}
.y32{bottom:655.673100px;}
.y165{bottom:656.833350px;}
.y14d{bottom:662.706900px;}
.y55{bottom:665.423100px;}
.ya4{bottom:665.423250px;}
.y184{bottom:666.173100px;}
.y7{bottom:666.771000px;}
.y1bb{bottom:671.519550px;}
.y164{bottom:673.333350px;}
.y31{bottom:675.173100px;}
.y183{bottom:682.673100px;}
.y54{bottom:684.923100px;}
.ya3{bottom:684.923250px;}
.y1ba{bottom:688.019550px;}
.y163{bottom:689.833350px;}
.y10a{bottom:692.388000px;}
.y30{bottom:694.673100px;}
.y182{bottom:699.173100px;}
.y53{bottom:704.423100px;}
.ya2{bottom:704.423250px;}
.y1b9{bottom:704.519550px;}
.y162{bottom:706.333350px;}
.y79{bottom:714.173100px;}
.y181{bottom:715.673100px;}
.y1b8{bottom:721.019550px;}
.y161{bottom:722.833350px;}
.y52{bottom:723.923100px;}
.ya1{bottom:723.923250px;}
.y6{bottom:726.298500px;}
.y2d{bottom:727.936800px;}
.y180{bottom:732.173100px;}
.y78{bottom:733.673100px;}
.y1b7{bottom:737.519550px;}
.y160{bottom:739.333350px;}
.y51{bottom:743.423100px;}
.ya0{bottom:743.423250px;}
.y2c{bottom:744.436800px;}
.y17f{bottom:748.673100px;}
.y3{bottom:752.599495px;}
.y77{bottom:753.173100px;}
.y1b6{bottom:754.019550px;}
.y15f{bottom:755.833350px;}
.y50{bottom:762.923100px;}
.y9f{bottom:762.923250px;}
.y17e{bottom:765.173100px;}
.y1b5{bottom:770.519550px;}
.y15e{bottom:772.333350px;}
.y76{bottom:772.673100px;}
.y17d{bottom:781.673100px;}
.y4b{bottom:782.384550px;}
.y4f{bottom:782.423100px;}
.y9e{bottom:782.423250px;}
.y1b4{bottom:787.019550px;}
.y15d{bottom:788.833350px;}
.y75{bottom:792.173100px;}
.y17c{bottom:798.173100px;}
.ycc{bottom:801.923100px;}
.y9d{bottom:801.923250px;}
.y1b3{bottom:803.519550px;}
.y15c{bottom:805.333350px;}
.y74{bottom:811.673100px;}
.y17b{bottom:814.673100px;}
.y1b2{bottom:820.019550px;}
.y4a{bottom:821.384550px;}
.y4e{bottom:821.423100px;}
.y9c{bottom:821.423250px;}
.y15b{bottom:821.833350px;}
.y73{bottom:831.173100px;}
.y1b1{bottom:836.519550px;}
.y15a{bottom:838.333350px;}
.ycb{bottom:840.923100px;}
.y9b{bottom:840.923250px;}
.y4d{bottom:850.673100px;}
.y1b0{bottom:853.019550px;}
.y159{bottom:854.833350px;}
.y49{bottom:860.384550px;}
.yca{bottom:860.423100px;}
.y9a{bottom:860.423250px;}
.y1af{bottom:869.519550px;}
.y170{bottom:870.173100px;}
.y158{bottom:871.333350px;}
.y2{bottom:879.369000px;}
.yc9{bottom:879.923100px;}
.y99{bottom:879.923250px;}
.y1ae{bottom:886.019550px;}
.y157{bottom:887.833350px;}
.y16f{bottom:889.673100px;}
.yc8{bottom:899.423100px;}
.y94{bottom:899.423250px;}
.y1ad{bottom:902.519550px;}
.y156{bottom:904.333350px;}
.y2b{bottom:904.648350px;}
.y16e{bottom:909.173100px;}
.yc7{bottom:918.923100px;}
.y98{bottom:918.923250px;}
.y1ac{bottom:919.019550px;}
.y155{bottom:920.833350px;}
.y16d{bottom:928.673100px;}
.y1ab{bottom:935.519550px;}
.y154{bottom:937.333350px;}
.yc6{bottom:938.423100px;}
.y93{bottom:938.423250px;}
.y2a{bottom:943.648350px;}
.y16c{bottom:948.173100px;}
.yfd{bottom:951.173100px;}
.y1aa{bottom:952.019550px;}
.y153{bottom:953.833350px;}
.yc5{bottom:957.923100px;}
.y92{bottom:957.923250px;}
.y1{bottom:966.726000px;}
.yfc{bottom:967.673100px;}
.y1a9{bottom:968.519550px;}
.y152{bottom:970.333350px;}
.yc4{bottom:977.423100px;}
.y91{bottom:977.423250px;}
.y29{bottom:982.648350px;}
.y1a8{bottom:985.019550px;}
.y16b{bottom:987.173100px;}
.y151{bottom:995.833350px;}
.yc3{bottom:996.923100px;}
.y90{bottom:996.923250px;}
.y1a7{bottom:1001.519550px;}
.y16a{bottom:1006.673100px;}
.y150{bottom:1012.333350px;}
.yc2{bottom:1016.423100px;}
.y8f{bottom:1016.423250px;}
.y1a6{bottom:1018.019550px;}
.y105{bottom:1022.325600px;}
.y1a5{bottom:1034.519550px;}
.yc1{bottom:1035.923100px;}
.y26{bottom:1035.923250px;}
.y169{bottom:1045.673100px;}
.y1a4{bottom:1051.019550px;}
.yc0{bottom:1055.423100px;}
.y8e{bottom:1055.423250px;}
.y14f{bottom:1058.423100px;}
.y1a3{bottom:1067.519550px;}
.y25{bottom:1074.923100px;}
.y8d{bottom:1074.923250px;}
.y1a2{bottom:1084.019550px;}
.y96{bottom:1114.291200px;}
.y97{bottom:1128.706500px;}
.y4c{bottom:1129.153200px;}
.y24{bottom:1130.598450px;}
.y95{bottom:1130.791200px;}
.h1c{height:18.082353px;}
.h1d{height:23.165314px;}
.h1b{height:27.123529px;}
.h1e{height:27.853129px;}
.h1a{height:29.383489px;}
.h16{height:29.637773px;}
.h7{height:32.130000px;}
.h19{height:33.813464px;}
.h1f{height:34.945312px;}
.h14{height:34.968750px;}
.h20{height:37.125000px;}
.h15{height:40.968750px;}
.h11{height:41.497559px;}
.h12{height:41.525391px;}
.ha{height:43.031250px;}
.h17{height:44.085938px;}
.h6{height:45.900000px;}
.hf{height:46.968750px;}
.h3{height:48.195000px;}
.he{height:51.099609px;}
.h13{height:53.247773px;}
.h2{height:55.080000px;}
.hb{height:55.687500px;}
.hc{height:63.082125px;}
.h10{height:69.609375px;}
.h5{height:78.030000px;}
.hd{height:102.093750px;}
.h4{height:119.055004px;}
.h18{height:394.875000px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:621.169500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:13.143450px;}
.x25{left:21.445800px;}
.x1e{left:22.590750px;}
.x16{left:28.210500px;}
.x24{left:38.878650px;}
.x29{left:41.717100px;}
.x15{left:49.253400px;}
.x6{left:76.535400px;}
.x8{left:77.754150px;}
.x7{left:85.607700px;}
.x9{left:93.011850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:119.055150px;}
.x28{left:120.460800px;}
.x2e{left:122.650500px;}
.x21{left:124.234500px;}
.x2c{left:125.611650px;}
.x26{left:140.945755px;}
.x22{left:144.072900px;}
.x2a{left:146.703150px;}
.x20{left:148.200150px;}
.x27{left:155.180400px;}
.x35{left:172.085400px;}
.x19{left:184.106400px;}
.x1f{left:191.657766px;}
.x18{left:195.828150px;}
.x17{left:198.570741px;}
.x23{left:201.145800px;}
.x4{left:203.484001px;}
.x1c{left:207.638700px;}
.x2d{left:232.060800px;}
.x2b{left:255.692550px;}
.x31{left:262.204650px;}
.x5{left:319.926750px;}
.x30{left:327.868950px;}
.x2f{left:346.385550px;}
.x1a{left:350.122350px;}
.xd{left:359.686500px;}
.x13{left:361.307700px;}
.x32{left:366.604650px;}
.xf{left:446.456700px;}
.x33{left:453.543300px;}
.x3{left:454.959000px;}
.xb{left:463.464450px;}
.x10{left:471.968550px;}
.x1d{left:475.698150px;}
.x11{left:488.976300px;}
.xc{left:546.420300px;}
.x12{left:548.041500px;}
.x34{left:575.433000px;}
.xe{left:733.104150px;}
.x14{left:734.725500px;}
@media print{
.v9{vertical-align:-20.986667pt;}
.v6{vertical-align:-16.720000pt;}
.vb{vertical-align:-14.080533pt;}
.v3{vertical-align:-10.666667pt;}
.va{vertical-align:-1.299519pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.448000pt;}
.v2{vertical-align:10.666667pt;}
.v7{vertical-align:14.080000pt;}
.v8{vertical-align:16.720000pt;}
.v5{vertical-align:18.346667pt;}
.v4{vertical-align:20.986667pt;}
.ls15{letter-spacing:-2.346667pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls36{letter-spacing:-1.123908pt;}
.ls32{letter-spacing:-1.053664pt;}
.ls24{letter-spacing:-0.878053pt;}
.ls34{letter-spacing:-0.875362pt;}
.ls16{letter-spacing:-0.810667pt;}
.ls22{letter-spacing:-0.778099pt;}
.ls26{letter-spacing:-0.772687pt;}
.ls1a{letter-spacing:-0.760000pt;}
.ls29{letter-spacing:-0.667321pt;}
.ls2a{letter-spacing:-0.653817pt;}
.ls37{letter-spacing:-0.632198pt;}
.ls28{letter-spacing:-0.597076pt;}
.ls20{letter-spacing:-0.561954pt;}
.ls33{letter-spacing:-0.551154pt;}
.ls2d{letter-spacing:-0.534941pt;}
.ls2e{letter-spacing:-0.518733pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls1b{letter-spacing:-0.440800pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls30{letter-spacing:-0.386343pt;}
.ls2b{letter-spacing:-0.326908pt;}
.ls23{letter-spacing:-0.324208pt;}
.ls2f{letter-spacing:-0.291787pt;}
.ls31{letter-spacing:-0.245855pt;}
.ls2c{letter-spacing:-0.237751pt;}
.ls25{letter-spacing:-0.175611pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000533pt;}
.ls12{letter-spacing:0.001600pt;}
.ls10{letter-spacing:0.004053pt;}
.lsa{letter-spacing:0.004480pt;}
.ls17{letter-spacing:0.005493pt;}
.ls6{letter-spacing:0.006027pt;}
.ls7{letter-spacing:0.006400pt;}
.lse{letter-spacing:0.006560pt;}
.lsd{letter-spacing:0.007467pt;}
.lsf{letter-spacing:0.008000pt;}
.ls1f{letter-spacing:0.302590pt;}
.ls21{letter-spacing:0.345818pt;}
.ls1d{letter-spacing:0.432272pt;}
.ls27{letter-spacing:0.432277pt;}
.ls2{letter-spacing:0.512000pt;}
.ls35{letter-spacing:0.561954pt;}
.ls3a{letter-spacing:0.896000pt;}
.ls1{letter-spacing:1.109333pt;}
.ls13{letter-spacing:1.708907pt;}
.ls38{letter-spacing:3.580267pt;}
.ls19{letter-spacing:3.703467pt;}
.ls39{letter-spacing:4.187733pt;}
.ls1e{letter-spacing:4.355145pt;}
.lsb{letter-spacing:4.792533pt;}
.ls11{letter-spacing:5.826667pt;}
.ls14{letter-spacing:8.661333pt;}
.lsc{letter-spacing:9.045333pt;}
.ls8{letter-spacing:9.472000pt;}
.ls1c{letter-spacing:47.512533pt;}
.ls5{letter-spacing:110.805333pt;}
.ws2{word-spacing:-14.085333pt;}
.ws9{word-spacing:-13.578667pt;}
.ws1{word-spacing:-11.861333pt;}
.ws2c{word-spacing:-11.434667pt;}
.ws42{word-spacing:-11.050667pt;}
.ws73{word-spacing:-10.201619pt;}
.ws72{word-spacing:-10.115165pt;}
.ws70{word-spacing:-10.071938pt;}
.ws41{word-spacing:-9.514667pt;}
.ws33{word-spacing:-8.169493pt;}
.ws76{word-spacing:-7.937602pt;}
.ws75{word-spacing:-7.761991pt;}
.ws59{word-spacing:-7.728693pt;}
.ws7f{word-spacing:-7.691747pt;}
.ws7d{word-spacing:-7.551259pt;}
.ws71{word-spacing:-7.375648pt;}
.ws84{word-spacing:-7.327101pt;}
.ws32{word-spacing:-7.042667pt;}
.ws7c{word-spacing:-7.035314pt;}
.ws74{word-spacing:-7.002893pt;}
.ws80{word-spacing:-6.883938pt;}
.ws86{word-spacing:-6.813694pt;}
.ws83{word-spacing:-6.808368pt;}
.ws78{word-spacing:-6.716479pt;}
.ws7b{word-spacing:-6.549002pt;}
.ws85{word-spacing:-6.451739pt;}
.ws79{word-spacing:-6.389571pt;}
.ws82{word-spacing:-6.181538pt;}
.ws81{word-spacing:-6.062662pt;}
.ws36{word-spacing:-5.826667pt;}
.wsa7{word-spacing:-4.357333pt;}
.ws39{word-spacing:-4.205333pt;}
.wsa0{word-spacing:-3.901333pt;}
.ws58{word-spacing:-3.496000pt;}
.ws54{word-spacing:-3.344000pt;}
.ws5c{word-spacing:-2.634667pt;}
.wsae{word-spacing:-2.584000pt;}
.ws3{word-spacing:-2.368000pt;}
.wsaa{word-spacing:-2.330667pt;}
.ws5e{word-spacing:-2.280000pt;}
.ws34{word-spacing:-1.824000pt;}
.ws6c{word-spacing:-1.672000pt;}
.ws56{word-spacing:-1.621333pt;}
.ws4e{word-spacing:-1.216000pt;}
.ws4{word-spacing:-1.109333pt;}
.wsa3{word-spacing:-0.981333pt;}
.wsaf{word-spacing:-0.896000pt;}
.wsab{word-spacing:-0.861333pt;}
.ws98{word-spacing:-0.561954pt;}
.ws6{word-spacing:-0.512000pt;}
.ws6b{word-spacing:-0.456000pt;}
.ws91{word-spacing:-0.432277pt;}
.ws99{word-spacing:-0.302590pt;}
.ws57{word-spacing:-0.202667pt;}
.ws25{word-spacing:-0.152000pt;}
.ws44{word-spacing:-0.050667pt;}
.ws0{word-spacing:0.000000pt;}
.ws87{word-spacing:0.084293pt;}
.ws50{word-spacing:0.202667pt;}
.ws95{word-spacing:0.237751pt;}
.ws90{word-spacing:0.245855pt;}
.ws38{word-spacing:0.256000pt;}
.ws93{word-spacing:0.386343pt;}
.ws23{word-spacing:0.426667pt;}
.ws60{word-spacing:0.440800pt;}
.ws35{word-spacing:0.456000pt;}
.ws8{word-spacing:0.506667pt;}
.ws96{word-spacing:0.534941pt;}
.ws97{word-spacing:0.551154pt;}
.ws8c{word-spacing:0.561954pt;}
.ws92{word-spacing:0.597076pt;}
.ws5{word-spacing:0.597333pt;}
.ws9a{word-spacing:0.632198pt;}
.ws94{word-spacing:0.653817pt;}
.ws43{word-spacing:0.658667pt;}
.ws5f{word-spacing:0.760000pt;}
.ws8f{word-spacing:0.772687pt;}
.ws8d{word-spacing:0.778099pt;}
.ws4c{word-spacing:0.810667pt;}
.ws8e{word-spacing:0.878053pt;}
.ws1f{word-spacing:1.165333pt;}
.ws7{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.672000pt;}
.ws55{word-spacing:1.722667pt;}
.ws46{word-spacing:1.874667pt;}
.ws37{word-spacing:2.026667pt;}
.wsac{word-spacing:2.178667pt;}
.ws4b{word-spacing:2.432000pt;}
.ws20{word-spacing:2.685333pt;}
.ws3f{word-spacing:2.938667pt;}
.ws19{word-spacing:2.989333pt;}
.ws26{word-spacing:3.344000pt;}
.wsa5{word-spacing:3.597333pt;}
.ws9f{word-spacing:3.698667pt;}
.ws67{word-spacing:3.901333pt;}
.ws52{word-spacing:4.053333pt;}
.ws40{word-spacing:4.104000pt;}
.ws3a{word-spacing:4.256000pt;}
.ws2f{word-spacing:4.813333pt;}
.ws69{word-spacing:5.066667pt;}
.ws29{word-spacing:5.168000pt;}
.wsc{word-spacing:5.269333pt;}
.ws28{word-spacing:5.421333pt;}
.wsa9{word-spacing:5.624000pt;}
.ws6d{word-spacing:5.776000pt;}
.ws5b{word-spacing:5.826667pt;}
.ws66{word-spacing:6.181333pt;}
.ws6f{word-spacing:6.232000pt;}
.ws18{word-spacing:6.434667pt;}
.ws3e{word-spacing:6.536000pt;}
.ws1d{word-spacing:6.637333pt;}
.ws61{word-spacing:6.826667pt;}
.ws2a{word-spacing:6.890667pt;}
.ws1a{word-spacing:6.941333pt;}
.ws24{word-spacing:7.042667pt;}
.ws3d{word-spacing:7.125333pt;}
.ws2b{word-spacing:7.245333pt;}
.ws21{word-spacing:7.397333pt;}
.wse{word-spacing:7.448000pt;}
.ws14{word-spacing:7.701333pt;}
.ws63{word-spacing:7.802667pt;}
.ws16{word-spacing:8.005333pt;}
.ws10{word-spacing:8.258667pt;}
.ws1b{word-spacing:8.309333pt;}
.ws12{word-spacing:8.613333pt;}
.ws65{word-spacing:8.664000pt;}
.ws45{word-spacing:8.816000pt;}
.ws5a{word-spacing:9.424000pt;}
.ws53{word-spacing:9.880000pt;}
.ws4d{word-spacing:10.133333pt;}
.ws3c{word-spacing:10.184000pt;}
.wsa2{word-spacing:10.234667pt;}
.wsa4{word-spacing:10.488000pt;}
.ws47{word-spacing:10.589333pt;}
.wsd{word-spacing:10.690667pt;}
.wsf{word-spacing:10.842667pt;}
.ws1c{word-spacing:10.994667pt;}
.ws51{word-spacing:11.450667pt;}
.ws1e{word-spacing:11.856000pt;}
.ws11{word-spacing:11.906667pt;}
.ws6e{word-spacing:12.008000pt;}
.ws13{word-spacing:12.160000pt;}
.ws31{word-spacing:12.312000pt;}
.ws9e{word-spacing:12.413333pt;}
.ws4f{word-spacing:12.514667pt;}
.ws68{word-spacing:12.666667pt;}
.ws5d{word-spacing:13.122667pt;}
.wsa6{word-spacing:13.224000pt;}
.ws15{word-spacing:13.528000pt;}
.ws22{word-spacing:13.578667pt;}
.ws30{word-spacing:13.933333pt;}
.wsad{word-spacing:13.984000pt;}
.wsa{word-spacing:14.288000pt;}
.ws17{word-spacing:14.338667pt;}
.wsb{word-spacing:14.642667pt;}
.wsa1{word-spacing:15.352000pt;}
.ws62{word-spacing:15.656000pt;}
.ws8a{word-spacing:16.213333pt;}
.ws4a{word-spacing:16.720000pt;}
.ws48{word-spacing:17.125333pt;}
.ws64{word-spacing:18.746667pt;}
.wsa8{word-spacing:19.050667pt;}
.ws89{word-spacing:19.506667pt;}
.ws3b{word-spacing:20.672000pt;}
.ws6a{word-spacing:21.330667pt;}
.ws2d{word-spacing:25.181333pt;}
.ws8b{word-spacing:31.160000pt;}
.ws49{word-spacing:31.717333pt;}
.ws27{word-spacing:33.744000pt;}
.ws9d{word-spacing:145.920000pt;}
.ws9b{word-spacing:148.266667pt;}
.ws88{word-spacing:220.960365pt;}
.ws9c{word-spacing:245.504000pt;}
.ws77{word-spacing:273.784054pt;}
.ws7e{word-spacing:304.902264pt;}
.ws7a{word-spacing:422.391391pt;}
._32{margin-left:-26.032533pt;}
._6{margin-left:-13.518933pt;}
._19{margin-left:-10.950933pt;}
._f{margin-left:-9.266933pt;}
._2e{margin-left:-8.071200pt;}
._d{margin-left:-7.094400pt;}
._b{margin-left:-6.111467pt;}
._8{margin-left:-4.376533pt;}
._a{margin-left:-3.251200pt;}
._4{margin-left:-1.977600pt;}
._2{margin-left:-0.966400pt;}
._3{width:1.109333pt;}
._0{width:2.374400pt;}
._9{width:3.280800pt;}
._7{width:4.364800pt;}
._c{width:5.421333pt;}
._e{width:6.880533pt;}
._12{width:8.248533pt;}
._17{width:9.387467pt;}
._13{width:10.325867pt;}
._14{width:11.648267pt;}
._16{width:12.651467pt;}
._27{width:13.753333pt;}
._11{width:15.169600pt;}
._18{width:16.065067pt;}
._1d{width:16.992267pt;}
._21{width:17.903467pt;}
._2a{width:18.798400pt;}
._15{width:19.800533pt;}
._20{width:20.920267pt;}
._24{width:22.384533pt;}
._1c{width:23.965333pt;}
._1e{width:25.333333pt;}
._10{width:26.453067pt;}
._2d{width:27.932533pt;}
._2c{width:29.548800pt;}
._1b{width:30.805333pt;}
._1f{width:32.072000pt;}
._2f{width:33.876000pt;}
._2b{width:36.302667pt;}
._22{width:38.035467pt;}
._23{width:39.226133pt;}
._30{width:40.518133pt;}
._38{width:42.182400pt;}
._28{width:44.064800pt;}
._29{width:45.605067pt;}
._31{width:47.560800pt;}
._35{width:52.080267pt;}
._25{width:54.276267pt;}
._26{width:57.045600pt;}
._33{width:64.757067pt;}
._36{width:70.305600pt;}
._1a{width:79.978667pt;}
._3a{width:87.603200pt;}
._37{width:92.053333pt;}
._39{width:141.226667pt;}
._5{width:217.220800pt;}
._34{width:341.968346pt;}
._1{width:1746.651733pt;}
.fse{font-size:21.613867pt;}
.fsa{font-size:24.746667pt;}
.fs9{font-size:29.386667pt;}
.fsf{font-size:29.718933pt;}
.fsd{font-size:32.420800pt;}
.fsc{font-size:35.122133pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsb{font-size:43.227200pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:4.482133pt;}
.y13e{bottom:19.710133pt;}
.y13d{bottom:20.196133pt;}
.y14c{bottom:24.103071pt;}
.y14b{bottom:32.847867pt;}
.y13c{bottom:37.205733pt;}
.y13b{bottom:37.691733pt;}
.y14a{bottom:40.946276pt;}
.y28{bottom:47.570933pt;}
.y149{bottom:49.854526pt;}
.y141{bottom:50.491972pt;}
.y139{bottom:50.813733pt;}
.y148{bottom:58.599322pt;}
.y5{bottom:59.133337pt;}
.y13a{bottom:60.047733pt;}
.y138{bottom:61.507493pt;}
.y27{bottom:62.237600pt;}
.y140{bottom:64.097733pt;}
.y147{bottom:66.697732pt;}
.y146{bottom:75.442528pt;}
.y137{bottom:76.085867pt;}
.y142{bottom:76.247733pt;}
.y145{bottom:83.540937pt;}
.y4{bottom:86.333337pt;}
.y136{bottom:88.235867pt;}
.yfb{bottom:88.818933pt;}
.yd7{bottom:88.819067pt;}
.y72{bottom:88.820533pt;}
.y8c{bottom:88.820667pt;}
.y144{bottom:92.285733pt;}
.y2f{bottom:92.384933pt;}
.y109{bottom:97.487200pt;}
.y102{bottom:97.487333pt;}
.yfa{bottom:103.485600pt;}
.yd6{bottom:103.485733pt;}
.y8b{bottom:103.487333pt;}
.y143{bottom:103.625733pt;}
.y71{bottom:106.153867pt;}
.ybf{bottom:106.154000pt;}
.y2e{bottom:107.051600pt;}
.y101{bottom:112.154000pt;}
.y1dc{bottom:112.906267pt;}
.y108{bottom:114.820533pt;}
.yf9{bottom:118.152267pt;}
.yd5{bottom:118.152400pt;}
.y8a{bottom:118.154000pt;}
.y1a1{bottom:122.820533pt;}
.y70{bottom:123.487200pt;}
.ybe{bottom:123.487333pt;}
.y23{bottom:123.790666pt;}
.y100{bottom:126.820667pt;}
.y135{bottom:126.968409pt;}
.y1db{bottom:127.572933pt;}
.y107{bottom:132.153867pt;}
.yf8{bottom:132.818933pt;}
.yd4{bottom:132.819067pt;}
.y89{bottom:132.820667pt;}
.y134{bottom:135.713205pt;}
.y1a0{bottom:137.487200pt;}
.y128{bottom:137.969733pt;}
.y6f{bottom:140.820533pt;}
.ybd{bottom:140.820667pt;}
.yff{bottom:141.487333pt;}
.y1da{bottom:142.239600pt;}
.y133{bottom:144.621456pt;}
.yf7{bottom:147.485600pt;}
.yd3{bottom:147.485733pt;}
.y88{bottom:147.487333pt;}
.y12c{bottom:148.661867pt;}
.y127{bottom:148.823733pt;}
.y12b{bottom:149.309733pt;}
.y106{bottom:149.487200pt;}
.y19f{bottom:152.153867pt;}
.y132{bottom:152.719865pt;}
.y17a{bottom:156.154000pt;}
.y1d9{bottom:156.906267pt;}
.y6e{bottom:158.153867pt;}
.ybc{bottom:158.154000pt;}
.y131{bottom:161.464661pt;}
.yf6{bottom:162.152267pt;}
.yd2{bottom:162.152400pt;}
.y87{bottom:162.154000pt;}
.y12a{bottom:162.431733pt;}
.y12d{bottom:163.565867pt;}
.y48{bottom:166.820533pt;}
.y130{bottom:169.563071pt;}
.y179{bottom:170.820667pt;}
.y1d8{bottom:171.572933pt;}
.y129{bottom:174.742607pt;}
.y1a{bottom:175.052000pt;}
.y6d{bottom:175.487200pt;}
.ybb{bottom:175.487333pt;}
.yf5{bottom:176.818933pt;}
.yd1{bottom:176.819067pt;}
.y86{bottom:176.820667pt;}
.y12f{bottom:178.307867pt;}
.y19e{bottom:181.487200pt;}
.y47{bottom:184.153867pt;}
.y178{bottom:185.487333pt;}
.y22{bottom:186.238666pt;}
.y1d7{bottom:186.239600pt;}
.y19{bottom:186.252002pt;}
.y12e{bottom:189.647733pt;}
.yf4{bottom:191.485600pt;}
.yd0{bottom:191.485733pt;}
.y85{bottom:191.487333pt;}
.y6c{bottom:192.820533pt;}
.yba{bottom:192.820667pt;}
.y19d{bottom:196.153867pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y177{bottom:200.154000pt;}
.y1d6{bottom:200.906267pt;}
.y46{bottom:201.487200pt;}
.yf3{bottom:206.152267pt;}
.ycf{bottom:206.152400pt;}
.y84{bottom:206.154000pt;}
.y11f{bottom:208.601733pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y6b{bottom:210.153867pt;}
.yb9{bottom:210.154000pt;}
.y19c{bottom:210.820533pt;}
.y176{bottom:214.820667pt;}
.y1d5{bottom:215.572933pt;}
.y126{bottom:215.576002pt;}
.y45{bottom:218.820533pt;}
.yf2{bottom:220.818933pt;}
.ye6{bottom:220.819067pt;}
.y83{bottom:220.820667pt;}
.y125{bottom:223.674411pt;}
.y11a{bottom:224.315867pt;}
.y11d{bottom:224.639733pt;}
.y19b{bottom:225.487200pt;}
.y6a{bottom:227.487200pt;}
.yb8{bottom:227.487333pt;}
.y175{bottom:229.487333pt;}
.y1d4{bottom:230.239600pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y124{bottom:232.582661pt;}
.y119{bottom:235.007733pt;}
.yf1{bottom:235.485600pt;}
.ye5{bottom:235.485733pt;}
.y82{bottom:235.487333pt;}
.y11c{bottom:235.493733pt;}
.y11e{bottom:235.979733pt;}
.y44{bottom:236.153867pt;}
.y19a{bottom:240.153867pt;}
.y123{bottom:240.681071pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y174{bottom:244.154000pt;}
.y69{bottom:244.820533pt;}
.yb7{bottom:244.820667pt;}
.y1d3{bottom:244.906267pt;}
.y11b{bottom:247.645744pt;}
.y122{bottom:249.425867pt;}
.yf0{bottom:250.152267pt;}
.ye4{bottom:250.152400pt;}
.y81{bottom:250.154000pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y43{bottom:253.487200pt;}
.y199{bottom:254.820533pt;}
.y173{bottom:258.820667pt;}
.y121{bottom:259.307867pt;}
.y1d2{bottom:259.572933pt;}
.y120{bottom:260.765733pt;}
.y68{bottom:262.153867pt;}
.yb6{bottom:262.154000pt;}
.yef{bottom:264.818933pt;}
.ye3{bottom:264.819067pt;}
.y80{bottom:264.820667pt;}
.y198{bottom:269.487200pt;}
.y42{bottom:270.820533pt;}
.y172{bottom:273.487333pt;}
.y1d1{bottom:274.239600pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yee{bottom:279.485600pt;}
.ye2{bottom:279.485733pt;}
.y67{bottom:279.487200pt;}
.y7f{bottom:279.487333pt;}
.y118{bottom:282.324660pt;}
.y197{bottom:284.153867pt;}
.y10c{bottom:285.551867pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y41{bottom:288.153867pt;}
.y171{bottom:288.154000pt;}
.y1d0{bottom:288.906267pt;}
.y117{bottom:291.069456pt;}
.yed{bottom:294.152267pt;}
.ye1{bottom:294.152400pt;}
.y7e{bottom:294.154000pt;}
.y10f{bottom:295.757733pt;}
.y10b{bottom:296.405867pt;}
.y66{bottom:296.820533pt;}
.yb5{bottom:296.820667pt;}
.y196{bottom:298.820533pt;}
.y116{bottom:299.167865pt;}
.y1cf{bottom:303.572933pt;}
.y40{bottom:305.487200pt;}
.y115{bottom:307.912661pt;}
.yec{bottom:308.818933pt;}
.ye0{bottom:308.819067pt;}
.y7d{bottom:308.820667pt;}
.y11{bottom:309.452000pt;}
.y10e{bottom:310.985867pt;}
.y110{bottom:312.119733pt;}
.y195{bottom:313.487200pt;}
.y65{bottom:314.153867pt;}
.yb4{bottom:314.154000pt;}
.y114{bottom:316.011071pt;}
.y1ce{bottom:318.239600pt;}
.yce{bottom:322.820533pt;}
.y10d{bottom:323.132549pt;}
.yeb{bottom:323.485600pt;}
.ydf{bottom:323.485733pt;}
.y7c{bottom:323.487333pt;}
.y113{bottom:324.755867pt;}
.y194{bottom:328.153867pt;}
.y64{bottom:331.487200pt;}
.yb3{bottom:331.487333pt;}
.y1cd{bottom:332.906267pt;}
.y112{bottom:334.799733pt;}
.y111{bottom:336.257733pt;}
.yea{bottom:338.152267pt;}
.yde{bottom:338.152400pt;}
.y7b{bottom:338.154000pt;}
.y3f{bottom:340.153867pt;}
.y193{bottom:342.820533pt;}
.y10{bottom:343.809333pt;}
.y1cc{bottom:347.572933pt;}
.y63{bottom:348.820533pt;}
.yb2{bottom:348.820667pt;}
.ye9{bottom:352.818933pt;}
.ydd{bottom:352.819067pt;}
.y7a{bottom:352.820667pt;}
.ycd{bottom:357.487200pt;}
.y1cb{bottom:362.239600pt;}
.yf{bottom:362.706666pt;}
.y62{bottom:366.153867pt;}
.yb1{bottom:366.154000pt;}
.ye8{bottom:367.485600pt;}
.ydc{bottom:367.485733pt;}
.y192{bottom:372.153867pt;}
.y3e{bottom:374.820533pt;}
.y1ca{bottom:376.906267pt;}
.ye7{bottom:382.152267pt;}
.ydb{bottom:382.152400pt;}
.y61{bottom:383.487200pt;}
.yb0{bottom:383.487333pt;}
.y191{bottom:386.820533pt;}
.y1c9{bottom:391.572933pt;}
.y3d{bottom:392.153867pt;}
.yda{bottom:396.819067pt;}
.y60{bottom:400.820533pt;}
.yaf{bottom:400.820667pt;}
.y190{bottom:401.487200pt;}
.y1c8{bottom:406.239600pt;}
.y3c{bottom:409.487200pt;}
.yd9{bottom:411.485733pt;}
.y18f{bottom:416.153867pt;}
.y5f{bottom:418.153867pt;}
.yae{bottom:418.154000pt;}
.y1c7{bottom:420.906267pt;}
.yd8{bottom:426.152400pt;}
.y3b{bottom:426.820533pt;}
.y18e{bottom:430.820533pt;}
.ye{bottom:430.990669pt;}
.y5e{bottom:435.487200pt;}
.yad{bottom:435.487333pt;}
.y1c6{bottom:435.572933pt;}
.y3a{bottom:444.153867pt;}
.y18d{bottom:445.487200pt;}
.yd{bottom:446.990669pt;}
.y1c5{bottom:450.239600pt;}
.y5d{bottom:452.820533pt;}
.yac{bottom:452.820667pt;}
.y18c{bottom:460.153867pt;}
.y39{bottom:461.487200pt;}
.yc{bottom:462.990669pt;}
.y1c4{bottom:464.906267pt;}
.yfe{bottom:467.487200pt;}
.y5c{bottom:470.153867pt;}
.yab{bottom:470.154000pt;}
.y18b{bottom:474.820533pt;}
.y38{bottom:478.820533pt;}
.yb{bottom:478.990666pt;}
.y1c3{bottom:479.572933pt;}
.y104{bottom:482.153867pt;}
.y5b{bottom:487.487200pt;}
.yaa{bottom:487.487333pt;}
.y18a{bottom:489.487200pt;}
.y1c2{bottom:494.239600pt;}
.ya{bottom:494.990666pt;}
.y37{bottom:496.153867pt;}
.y103{bottom:502.153867pt;}
.y189{bottom:504.153867pt;}
.y5a{bottom:504.820533pt;}
.ya9{bottom:504.820667pt;}
.y1c1{bottom:508.906267pt;}
.y36{bottom:513.487200pt;}
.y188{bottom:518.820533pt;}
.y59{bottom:522.153867pt;}
.ya8{bottom:522.154000pt;}
.y1c0{bottom:523.572933pt;}
.y35{bottom:530.820533pt;}
.y187{bottom:533.487200pt;}
.y1bf{bottom:538.239600pt;}
.y58{bottom:539.487200pt;}
.ya7{bottom:539.487333pt;}
.y168{bottom:539.851867pt;}
.y34{bottom:548.153867pt;}
.y1be{bottom:552.906267pt;}
.y167{bottom:554.518533pt;}
.y57{bottom:556.820533pt;}
.ya6{bottom:556.820667pt;}
.y9{bottom:556.986668pt;}
.y186{bottom:562.820533pt;}
.y33{bottom:565.487200pt;}
.y1bd{bottom:567.572933pt;}
.y166{bottom:569.185200pt;}
.y8{bottom:573.786667pt;}
.y56{bottom:574.153867pt;}
.ya5{bottom:574.154000pt;}
.y14e{bottom:574.406133pt;}
.y185{bottom:577.487200pt;}
.y1bc{bottom:582.239600pt;}
.y32{bottom:582.820533pt;}
.y165{bottom:583.851867pt;}
.y14d{bottom:589.072800pt;}
.y55{bottom:591.487200pt;}
.ya4{bottom:591.487333pt;}
.y184{bottom:592.153867pt;}
.y7{bottom:592.685334pt;}
.y1bb{bottom:596.906267pt;}
.y164{bottom:598.518533pt;}
.y31{bottom:600.153867pt;}
.y183{bottom:606.820533pt;}
.y54{bottom:608.820533pt;}
.ya3{bottom:608.820667pt;}
.y1ba{bottom:611.572933pt;}
.y163{bottom:613.185200pt;}
.y10a{bottom:615.456000pt;}
.y30{bottom:617.487200pt;}
.y182{bottom:621.487200pt;}
.y53{bottom:626.153867pt;}
.ya2{bottom:626.154000pt;}
.y1b9{bottom:626.239600pt;}
.y162{bottom:627.851867pt;}
.y79{bottom:634.820533pt;}
.y181{bottom:636.153867pt;}
.y1b8{bottom:640.906267pt;}
.y161{bottom:642.518533pt;}
.y52{bottom:643.487200pt;}
.ya1{bottom:643.487333pt;}
.y6{bottom:645.598667pt;}
.y2d{bottom:647.054933pt;}
.y180{bottom:650.820533pt;}
.y78{bottom:652.153867pt;}
.y1b7{bottom:655.572933pt;}
.y160{bottom:657.185200pt;}
.y51{bottom:660.820533pt;}
.ya0{bottom:660.820667pt;}
.y2c{bottom:661.721600pt;}
.y17f{bottom:665.487200pt;}
.y3{bottom:668.977329pt;}
.y77{bottom:669.487200pt;}
.y1b6{bottom:670.239600pt;}
.y15f{bottom:671.851867pt;}
.y50{bottom:678.153867pt;}
.y9f{bottom:678.154000pt;}
.y17e{bottom:680.153867pt;}
.y1b5{bottom:684.906267pt;}
.y15e{bottom:686.518533pt;}
.y76{bottom:686.820533pt;}
.y17d{bottom:694.820533pt;}
.y4b{bottom:695.452933pt;}
.y4f{bottom:695.487200pt;}
.y9e{bottom:695.487333pt;}
.y1b4{bottom:699.572933pt;}
.y15d{bottom:701.185200pt;}
.y75{bottom:704.153867pt;}
.y17c{bottom:709.487200pt;}
.ycc{bottom:712.820533pt;}
.y9d{bottom:712.820667pt;}
.y1b3{bottom:714.239600pt;}
.y15c{bottom:715.851867pt;}
.y74{bottom:721.487200pt;}
.y17b{bottom:724.153867pt;}
.y1b2{bottom:728.906267pt;}
.y4a{bottom:730.119600pt;}
.y4e{bottom:730.153867pt;}
.y9c{bottom:730.154000pt;}
.y15b{bottom:730.518533pt;}
.y73{bottom:738.820533pt;}
.y1b1{bottom:743.572933pt;}
.y15a{bottom:745.185200pt;}
.ycb{bottom:747.487200pt;}
.y9b{bottom:747.487333pt;}
.y4d{bottom:756.153867pt;}
.y1b0{bottom:758.239600pt;}
.y159{bottom:759.851867pt;}
.y49{bottom:764.786267pt;}
.yca{bottom:764.820533pt;}
.y9a{bottom:764.820667pt;}
.y1af{bottom:772.906267pt;}
.y170{bottom:773.487200pt;}
.y158{bottom:774.518533pt;}
.y2{bottom:781.661334pt;}
.yc9{bottom:782.153867pt;}
.y99{bottom:782.154000pt;}
.y1ae{bottom:787.572933pt;}
.y157{bottom:789.185200pt;}
.y16f{bottom:790.820533pt;}
.yc8{bottom:799.487200pt;}
.y94{bottom:799.487333pt;}
.y1ad{bottom:802.239600pt;}
.y156{bottom:803.851867pt;}
.y2b{bottom:804.131867pt;}
.y16e{bottom:808.153867pt;}
.yc7{bottom:816.820533pt;}
.y98{bottom:816.820667pt;}
.y1ac{bottom:816.906267pt;}
.y155{bottom:818.518533pt;}
.y16d{bottom:825.487200pt;}
.y1ab{bottom:831.572933pt;}
.y154{bottom:833.185200pt;}
.yc6{bottom:834.153867pt;}
.y93{bottom:834.154000pt;}
.y2a{bottom:838.798533pt;}
.y16c{bottom:842.820533pt;}
.yfd{bottom:845.487200pt;}
.y1aa{bottom:846.239600pt;}
.y153{bottom:847.851867pt;}
.yc5{bottom:851.487200pt;}
.y92{bottom:851.487333pt;}
.y1{bottom:859.312000pt;}
.yfc{bottom:860.153867pt;}
.y1a9{bottom:860.906267pt;}
.y152{bottom:862.518533pt;}
.yc4{bottom:868.820533pt;}
.y91{bottom:868.820667pt;}
.y29{bottom:873.465200pt;}
.y1a8{bottom:875.572933pt;}
.y16b{bottom:877.487200pt;}
.y151{bottom:885.185200pt;}
.yc3{bottom:886.153867pt;}
.y90{bottom:886.154000pt;}
.y1a7{bottom:890.239600pt;}
.y16a{bottom:894.820533pt;}
.y150{bottom:899.851867pt;}
.yc2{bottom:903.487200pt;}
.y8f{bottom:903.487333pt;}
.y1a6{bottom:904.906267pt;}
.y105{bottom:908.733867pt;}
.y1a5{bottom:919.572933pt;}
.yc1{bottom:920.820533pt;}
.y26{bottom:920.820667pt;}
.y169{bottom:929.487200pt;}
.y1a4{bottom:934.239600pt;}
.yc0{bottom:938.153867pt;}
.y8e{bottom:938.154000pt;}
.y14f{bottom:940.820533pt;}
.y1a3{bottom:948.906267pt;}
.y25{bottom:955.487200pt;}
.y8d{bottom:955.487333pt;}
.y1a2{bottom:963.572933pt;}
.y96{bottom:990.481067pt;}
.y97{bottom:1003.294667pt;}
.y4c{bottom:1003.691733pt;}
.y24{bottom:1004.976400pt;}
.y95{bottom:1005.147733pt;}
.h1c{height:16.073203pt;}
.h1d{height:20.591390pt;}
.h1b{height:24.109804pt;}
.h1e{height:24.758337pt;}
.h1a{height:26.118657pt;}
.h16{height:26.344687pt;}
.h7{height:28.560000pt;}
.h19{height:30.056413pt;}
.h1f{height:31.062500pt;}
.h14{height:31.083333pt;}
.h20{height:33.000000pt;}
.h15{height:36.416667pt;}
.h11{height:36.886719pt;}
.h12{height:36.911458pt;}
.ha{height:38.250000pt;}
.h17{height:39.187500pt;}
.h6{height:40.800000pt;}
.hf{height:41.750000pt;}
.h3{height:42.840000pt;}
.he{height:45.421875pt;}
.h13{height:47.331354pt;}
.h2{height:48.960000pt;}
.hb{height:49.500000pt;}
.hc{height:56.073000pt;}
.h10{height:61.875000pt;}
.h5{height:69.360000pt;}
.hd{height:90.750000pt;}
.h4{height:105.826671pt;}
.h18{height:351.000000pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:552.150667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:11.683067pt;}
.x25{left:19.062933pt;}
.x1e{left:20.080667pt;}
.x16{left:25.076000pt;}
.x24{left:34.558800pt;}
.x29{left:37.081867pt;}
.x15{left:43.780800pt;}
.x6{left:68.031467pt;}
.x8{left:69.114800pt;}
.x7{left:76.095733pt;}
.x9{left:82.677200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:105.826800pt;}
.x28{left:107.076267pt;}
.x2e{left:109.022667pt;}
.x21{left:110.430667pt;}
.x2c{left:111.654800pt;}
.x26{left:125.285115pt;}
.x22{left:128.064800pt;}
.x2a{left:130.402800pt;}
.x20{left:131.733467pt;}
.x27{left:137.938133pt;}
.x35{left:152.964800pt;}
.x19{left:163.650133pt;}
.x1f{left:170.362458pt;}
.x18{left:174.069467pt;}
.x17{left:176.507325pt;}
.x23{left:178.796267pt;}
.x4{left:180.874667pt;}
.x1c{left:184.567733pt;}
.x2d{left:206.276267pt;}
.x2b{left:227.282267pt;}
.x31{left:233.070800pt;}
.x5{left:284.379333pt;}
.x30{left:291.439067pt;}
.x2f{left:307.898267pt;}
.x1a{left:311.219867pt;}
.xd{left:319.721333pt;}
.x13{left:321.162400pt;}
.x32{left:325.870800pt;}
.xf{left:396.850400pt;}
.x33{left:403.149600pt;}
.x3{left:404.408000pt;}
.xb{left:411.968400pt;}
.x10{left:419.527600pt;}
.x1d{left:422.842800pt;}
.x11{left:434.645600pt;}
.xc{left:485.706933pt;}
.x12{left:487.148000pt;}
.x34{left:511.496000pt;}
.xe{left:651.648133pt;}
.x14{left:653.089333pt;}
}




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